Varun Erigila

Results 12 comments of Varun Erigila

I would like to look work on this issue. I'm new to LLVM (gone through kaleidoscope tutorials and building JIT). Any advice on how to begin? thanks!

The color tags for `frame info` are set from `CoreProperties.td `. It has python code, that defines a format string to add color to `frame info`. I could not figure...

The image lookup command is defined in: https://github.com/llvm/llvm-project/blob/b13f7f9c06604110709a968a2fece4b8d5192708/lldb/source/Commands/CommandObjectTarget.cpp#L3875 regular expression matching is done in function `LookupSymbolInModule` https://github.com/llvm/llvm-project/blob/b13f7f9c06604110709a968a2fece4b8d5192708/lldb/source/Commands/CommandObjectTarget.cpp#L1527 which calls ` RegularExpression` match via `Symtab::AppendSymbolIndexesMatchingRegExAndType` https://github.com/llvm/llvm-project/blob/f793597f6d5d8eb86388263ce16365ceb10fee23/lldb/source/Utility/RegularExpression.cpp#L28 which further calls,` llvm's Regex...

The implementation is similar to pythons re.search, where it searches the entire string for the `first match` and not `all the matches`. ``` Ex: input string = "This string foo...

thanks! Can I first submit the patch for review and then add the test case later? I'm expecting there will be lot of changes during review.

Thanks. I have added you as a reviewer.

I would like to look work on this issue. I'm new to LLVM (gone through kaleidoscope tutorials and building JIT). Any advice on how to begin? thanks!