summaryrefslogtreecommitdiffstats
path: root/lib/Bitcode/Writer/BitcodeWriter.cpp
Commit message (Expand)AuthorAgeFilesLines
* Revise previous patch per review comments.Dale Johannesen2007-09-121-5/+2
* Add APInt interfaces to APFloat (allows directlyDale Johannesen2007-09-111-6/+13
* Revert previous change to IR.Dale Johannesen2007-09-071-4/+3
* Next round of APFloat changes.Dale Johannesen2007-09-061-2/+3
* Patch 10 for long double. Doing constants right needs expanding ConstantFPDale Johannesen2007-08-091-3/+9
* Long double, part 1 of N. Support in IR.Dale Johannesen2007-08-031-0/+3
* remove a dead caseChris Lattner2007-07-051-1/+0
* allow partially materialized modules to be written out, which just strips outChris Lattner2007-05-111-0/+1
* Make a preemptive bitcode format change to support PR1146. This lets us doChris Lattner2007-05-081-4/+23
* Flush the file after writing bitcode so that clients who don't close theirChris Lattner2007-05-061-0/+3
* Unbreak VC++.Jeff Cohen2007-05-061-1/+1
* add abbrevs for binops and casts. This shrinks a testcase from 725132->682500Chris Lattner2007-05-061-3/+29
* implement reading/writing of inlineasm objectsChris Lattner2007-05-061-6/+16
* add some abbrevs for ret and unreachable, shrinking kc++ from 2717360->2705388Chris Lattner2007-05-061-3/+31
* add a denser encoding for null terminated strings, add a 6-bit abbrev asChris Lattner2007-05-061-8/+36
* add an abbreviation for the string constants opzn, shrinking the constnatsChris Lattner2007-05-061-5/+16
* implement the 'string constant' optimization. This shrinks kc.bit fromChris Lattner2007-05-061-0/+6
* further reduce the redundancy of types in the instruction encoding. ThisChris Lattner2007-05-061-20/+12
* stop encoding type/value pairs when the type is implied by the value.Chris Lattner2007-05-061-35/+48
* add an abbrev for loads. This shrinks the function block about 50K, from:Chris Lattner2007-05-051-1/+22
* add abbrevs for the constants tables. This shrinks it from 4.49755e6 bitsChris Lattner2007-05-051-61/+123
* Add abbreviations to the TYPE_BLOCK for pointers, functions, structs and arrays.Chris Lattner2007-05-051-3/+40
* add a char6 abbrev for bbnames and value names. This represents each characterChris Lattner2007-05-051-12/+30
* add an abbreviation for the type symtab, this shrinks the TST from 175197 bitsChris Lattner2007-05-051-8/+16
* Implement support for globally associating abbrevs with block IDs, whichChris Lattner2007-05-051-42/+33
* allow the 8-bit abbrev to be used for either bb or other valuesChris Lattner2007-05-041-6/+6
* shave another 150K off of kc++, by using a 7-bit encoding for BB namesChris Lattner2007-05-041-1/+12
* where possible, encode symtab names with 7 bits per char instead of 8. ThisChris Lattner2007-05-041-11/+45
* Encode all value symtab strings as arrays of 8-bit fixed width integers,Chris Lattner2007-05-041-15/+15
* eliminate internal length fields from record. Records already know theirChris Lattner2007-05-041-11/+12
* stub out creation of BLOCKINFO_BLOCKChris Lattner2007-05-041-0/+25
* fix encoding of invoke instructions. kc++ now round tripsChris Lattner2007-05-041-1/+0
* encode and read param attrs along with function type. WE can now roundtrip O...Chris Lattner2007-05-041-2/+2
* fix a bug encoding param attrsChris Lattner2007-05-041-1/+1
* add writer support for param attrsChris Lattner2007-05-041-1/+15
* trivial scaffolding for param attrsChris Lattner2007-05-041-0/+12
* Encoding calling conv info in call/invoke instrs, tree add now round trips co...Chris Lattner2007-05-031-2/+3
* don't bother encoding # varargsChris Lattner2007-05-031-1/+0
* fix encoding of BB names in the symtabChris Lattner2007-05-031-4/+10
* add reader logic for terminator instrs.Chris Lattner2007-05-021-2/+0
* use the correct code for binop instrsChris Lattner2007-05-021-1/+1
* fix build with non-buggy compilersChris Lattner2007-05-011-10/+11
* write the symbol table for function bodiesChris Lattner2007-05-011-30/+33
* encode all of the instructions.Chris Lattner2007-05-011-3/+166
* Implement visibility checking during linking. Also implement protectedAnton Korobeynikov2007-04-291-2/+3
* Fix this to use the right block IDChris Lattner2007-04-291-3/+1
* moved Writer.cpp -> BitcodeWriter.cpp to make it more unique in the tree.Chris Lattner2007-04-291-1/+1
* start code for writing out instructions. Separate BB#s from normal valueChris Lattner2007-04-261-1/+66
* add support for incorporating and purging functions to the value enumeratorChris Lattner2007-04-261-1/+3
* improve a commentChris Lattner2007-04-261-3/+5