Git Product home page Git Product logo

Comments (5)

kyx0r avatar kyx0r commented on August 28, 2024

It does have a license it's just not made obvious. Not a big fan of sticking licenses into people's faces like some projects do. If you read the top comment in vi.c the writing is of ISC open source license.

from nextvi.

Arkaeriit avatar Arkaeriit commented on August 28, 2024

Thank you very much.

from nextvi.

kyx0r avatar kyx0r commented on August 28, 2024

By the way @Arkaeriit last commit ironically did not end there. Well I always find something off. Anyway pls update cause regex may have (very rare bug). Apparently while checking all that stuff, I found another performance improvement, placing https://github.com/kyx0r/nextvi/blob/master/regex.c#L387 above the goto label causes the compiler to enable extra set of optimizations removing redundant memory reads. Now it can flow everything through eax register, this cuts down the cost by another ~8-10 million Irefs depending on the hardware. Pretty good.

from nextvi.

kyx0r avatar kyx0r commented on August 28, 2024

Though clang is pretty terrible optimizing this code, it does too many memory reloads, it's trying to be too smart. Gcc seems to be a lot more context aware. So yeah wouldn't reccomend clang for best performance. It feels like I've always gotta fight compiler cause it always finds a way to generate some crap, don't know who are those people saying that handmade assembly code is very hard to beat compiler, I look compiler explorer and it's a joke. It's definitely better than 5 years ago, but it might be at the peak of it's evolution now. I think part of the problem stems from grinding the compilers to optimize bad code more than try to optimize better already optimized C code. Like for example it is not smart enough to align some VLAs from int sized down to char* thus removing the need for instructions like "mov ebx, dword ptr [r10 + 4*rdi]" down to "mov ebx, dword ptr [r10+rdi]" which seems like might be better as it saves entire multiplication, should be easier to compute and branch predict. Though in modern hardware that may not always be the case.

from nextvi.

Arkaeriit avatar Arkaeriit commented on August 28, 2024

Thanks for the update, I will rebase my commits on them. Nice work optimizing the code for performance. Not a lot of peoples do it nowadays.

from nextvi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.