Code Monkey home page Code Monkey logo

Comments (8)

BurntSushi avatar BurntSushi commented on September 18, 2024

@huonw I'm not sure this issue actually belongs on this repo, unless there is something about the regex! implementation that is abusing code generation?

from regex.

huonw avatar huonw commented on September 18, 2024

I don't know the specifics of regex!, so it may very well be better suited to being returned to rust-lang/rust. (I assume the migration was mechanical.)

from regex.

BurntSushi avatar BurntSushi commented on September 18, 2024

(Yup, was mechanical.) OK, I re-opened the issue on rust-lang/regex, but I'm also keeping this open because it would be nice to reduce the amount of code generated by regex! (which I think is one way of attacking the original problem).

from regex.

huonw avatar huonw commented on September 18, 2024

I wonder if const fn allows for abstracting some of the code away. (That said, const fn can't do much computation so I guess it can't.)

from regex.

BurntSushi avatar BurntSushi commented on September 18, 2024

Yeah, I doubt const fn would help (I read the original RFC long ago, not sure if it got more powerful since then). I think the real key to this will be two-fold:

  1. Do more analysis on the regex and generate cleverer code (like Ragel does and like OP's example).
  2. Stop embedding full NFA and fall back to the dynamic implementation. (There is not much difference between them now after recent perf improvements in the dynamic impl. regex! used to be better because it allocated less, but it no longer has that advantage!)

from regex.

arielb1 avatar arielb1 commented on September 18, 2024

What is the code generated?

from regex.

BurntSushi avatar BurntSushi commented on September 18, 2024

@arielb1 Right now, it's a full NFA simulation. The generator requires calling the regex parser and compiler before hand.

from regex.

BurntSushi avatar BurntSushi commented on September 18, 2024

Closing in favor of #26.

from regex.

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.