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