summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bitcode/Reader
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement visibility checking during linking. Also implement protectedAnton Korobeynikov2007-04-291-0/+1
| | | | | | visibility support for bitcode. llvm-svn: 36577
* Switch the bitcode reader interface to take a MemoryBuffer instead of knowingChris Lattner2007-04-293-108/+62
| | | | | | | | | | | | | | anything about disk I/O itself. This greatly simplifies its interface - eliminating the need for the ReaderWrappers.cpp file. This adds a new option to llvm-dis (-bitcode) which instructs it to read the input file as bitcode. Until/unless the bytecode reader is taught to read from MemoryBuffer, there is no way to handle stdin reading without it. I don't plan to switch the bytecode reader over, I'd rather delete it :), so the option will stay around temporarily. llvm-svn: 36554
* This is not "FIXME" anymoreAnton Korobeynikov2007-04-281-3/+1
| | | | llvm-svn: 36541
* move some code around, fix a bug in the reader reading globalinits (whichChris Lattner2007-04-262-3/+16
| | | | | | | I just introduced), stub out function reading, purge aggregate values from the value table before reading functions. llvm-svn: 36463
* add bitcode alias supportChris Lattner2007-04-262-17/+59
| | | | llvm-svn: 36461
* ensure that every error return sets a message (and goes through Error, forChris Lattner2007-04-243-19/+37
| | | | | | | | | easy breakpointing). Fix bugs reading constantexpr geps. We now can disassemble kc++ global initializers. llvm-svn: 36398
* fix memory leakChris Lattner2007-04-241-3/+4
| | | | llvm-svn: 36397
* implement reading and writing of constant exprs.Chris Lattner2007-04-241-6/+133
| | | | llvm-svn: 36394
* implement support for reading aggregate constants, including handling forwardChris Lattner2007-04-242-5/+108
| | | | | | constant references, etc. llvm-svn: 36391
* add supprot for FP constants, wide integers, and fix the encoding of MININTChris Lattner2007-04-241-8/+40
| | | | llvm-svn: 36390
* read basic constants: null, undef, integers <= 64bitsChris Lattner2007-04-242-2/+80
| | | | llvm-svn: 36389
* move check to the right place :)Chris Lattner2007-04-241-3/+4
| | | | llvm-svn: 36386
* track global initsChris Lattner2007-04-242-3/+9
| | | | llvm-svn: 36385
* Read global symtabChris Lattner2007-04-232-3/+59
| | | | llvm-svn: 36378
* implement reading of abbrevs, and writing of abbreviated global varrs.Chris Lattner2007-04-231-3/+6
| | | | llvm-svn: 36367
* first part of implementation of abbrevs. The writer isn't fully there yet ↵Chris Lattner2007-04-231-6/+8
| | | | | | | | and the reader doesn't handle them at all yet. llvm-svn: 36363
* promote LLVMBitCodes to be a public headerChris Lattner2007-04-231-1/+1
| | | | llvm-svn: 36358
* Fix build problem with Gentoo 4.1.1-r3.Jeff Cohen2007-04-221-1/+1
| | | | llvm-svn: 36348
* Initial support for reading bitcode files. They currently only read types,Chris Lattner2007-04-224-0/+633
the type symtab, and global/function protos, and are missing the important size optimization, but it is a place to start. llvm-svn: 36330
OpenPOWER on IntegriCloud