mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
12eb282f10
Summary: On Windows, Posix integer file descriptors are a compatibility layer over native file handles provided by the C runtime. There is a hard limit on the maximum number of file descriptors that a process can open, and the limit is 8192. LLD typically doesn't run into this limit because it opens input files, maps them into memory, and then immediately closes the file descriptor. This prevents it from running out of FDs. For various reasons, I'd like to open handles to every input file and keep them open during linking. That requires migrating MemoryBuffer over to taking open native file handles instead of integer FDs. Reviewers: aganea, Bigcheese Reviewed By: aganea Subscribers: smeenai, silvas, mehdi_amini, hiraditya, steven_wu, dexonsmith, dang, llvm-commits, zturner Tags: #llvm Differential Revision: https://reviews.llvm.org/D63453 llvm-svn: 365588 |
||
---|---|---|
.. | ||
BlockIndexer.cpp | ||
BlockPrinter.cpp | ||
BlockVerifier.cpp | ||
CMakeLists.txt | ||
FDRRecordProducer.cpp | ||
FDRRecords.cpp | ||
FDRTraceExpander.cpp | ||
FDRTraceWriter.cpp | ||
FileHeaderReader.cpp | ||
InstrumentationMap.cpp | ||
LLVMBuild.txt | ||
LogBuilderConsumer.cpp | ||
Profile.cpp | ||
RecordInitializer.cpp | ||
RecordPrinter.cpp | ||
Trace.cpp |