You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Support] Use mmap for stdin when possible in getSTDIN
Enable memory-mapping (mmap) for stdin when input is redirected (e.g.,
./prog < file). This can improve performance when processing large
files, as tools like llvm-strings iterate over the entire input buffer.
Also refactored LLLexer::getNextChar to avoid relying on MemoryBuffer
for null termination checks, which ensures relevant test cases continue
to pass.
0 commit comments