search for: isdatasym

Displaying 4 results from an estimated 4 matches for "isdatasym".

Did you mean: isdatasync
2012 Oct 23
1
[LLVMdev] LLD archive library design
...hiveLibrary c) COFFArchiveLibrary 3) ReaderArchive has two functions a) parseFile that returns a vector of file objects, if the force load option is set b) parseFile (overloaded) that returns the ArchiveLibraryFile 4) The ArchiveLibrary object has functions: find(symbolName, isDataSym) and returns a file object if the file contains a definition for that symbolName. Now to how the model fits in the current design. 1) Files are read one at a time, and a list of atoms are produced from it 2) if the File is an archive then, the linker has to invoke the appropriate Reader that h...
2012 Oct 19
0
[LLVMdev] LLD archive library design
On Oct 19, 2012, at 3:41 PM, Shankar Easwaran wrote: > Hi, > > I have started to work on support for Reading archive libraries in lld and thought of using the llvm/lib/ArchiveReader for this. > > The ArchiveReader doesnot fully support GNU archive libraries (thin archives), do you think we should continue using llvm/lib/ArchiveReader ? > > I was chatting with Michael and
2012 Oct 23
0
[LLVMdev] LLD archive library design
...OFFArchiveLibrary > 3) ReaderArchive has two functions > a) parseFile that returns a vector of file objects, if the force load option is set > b) parseFile (overloaded) that returns the ArchiveLibraryFile > 4) The ArchiveLibrary object has functions: > find(symbolName, isDataSym) and returns a file object if the file contains a definition for that symbolName. > > Now to how the model fits in the current design. > > 1) Files are read one at a time, and a list of atoms are produced from it > 2) if the File is an archive then, the linker has to invoke the a...
2012 Oct 19
2
[LLVMdev] LLD archive library design
Hi, I have started to work on support for Reading archive libraries in lld and thought of using the llvm/lib/ArchiveReader for this. The ArchiveReader doesnot fully support GNU archive libraries (thin archives), do you think we should continue using llvm/lib/ArchiveReader ? I was chatting with Michael and looks like there have been discussions and small sketches done on reading archive