aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-06-27IR: Add COMDATs to the IRDavid Majnemer1-0/+10
2014-06-17Convert a few loops to use ranges.Rafael Espindola1-18/+15
2014-03-09[C++11] Add range based accessors for the Use-Def chain of a Value.Chandler Carruth1-5/+4
2014-03-01Now that we have C++11, turn simple functors into lambdas and remove a ton of...Benjamin Kramer1-19/+9
2013-09-16Implement function prefix data as an IR feature.Peter Collingbourne1-0/+5
2013-04-01Whitespace cleanupJoe Abbey1-1/+1
2013-02-12Use the AttributeSet as the 'key' to the map instead of the 'raw' pointer.Bill Wendling1-2/+3
2013-02-11Rename AttributeSets to AttributeGroups so that it's more meaningful.Bill Wendling1-3/+3
2013-02-10Add support for attribute groups in the value enumerator.Bill Wendling1-0/+10
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-5/+5
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling1-2/+2
2012-12-07s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling1-1/+1
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-3/+3
2012-11-25Code Custodian:Joe Abbey1-10/+10
2012-11-13Relax the restrictions on vector of pointer types, and vector getelementptr.Duncan Sands1-5/+6
2012-02-05reapply the patches reverted in r149470 that reenable ConstantDataArray,Chris Lattner1-4/+0
2012-02-01Revert Chris' commits up to r149348 that started causing VMCoreTests unit tes...Argyrios Kyrtzidis1-0/+4
2012-01-31with recent changes, ConstantArray is never a "string". Remove the associatedChris Lattner1-4/+0
2011-12-07ValueEnumerator - debug dump().Chad Rosier1-1/+39
2011-08-12switch to use the new api for structtypes.Chris Lattner1-1/+1
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner1-2/+2
2011-07-09Land the long talked about "type system rewrite" patch. ThisChris Lattner1-86/+28
2011-06-03Revert name change from r132533. Lower case naming was intended per style gu...Chad Rosier1-2/+2
2011-06-03Whitespace and other cleanup. Functionallity unchanged.Chad Rosier1-3/+2
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner1-1/+1
2011-04-11Fix or remove code which seemed to think that the operand of a ConstantJay Foad1-1/+1
2011-04-06Do a topological sort of the types before writing them out.Rafael Espindola1-26/+68
2010-08-25Clear FunctionLocalMDs in purgeFunction along with the rest of theDan Gohman1-1/+1
2010-08-25Fix whitespace.Dan Gohman1-1/+1
2010-08-25Eliminate an unnecessary cast.Dan Gohman1-1/+1
2010-08-24Add braces to fix dangling else.Dan Gohman1-2/+2
2010-08-24Extend function-local metadata to be usable as attachments.Dan Gohman1-20/+77
2010-08-24When we know we have an MDValue or MDString, call EnumerateMetadataDan Gohman1-1/+1
2010-08-24Simplify this code. NamedMDNode operands are MDNodes.Dan Gohman1-2/+1
2010-07-21Make NamedMDNode not be a subclass of Value, and simplify the interfaceDan Gohman1-22/+7
2010-07-16Fix whitespace.Dan Gohman1-2/+2
2010-06-19Tidy.Bob Wilson1-1/+1
2010-06-02Speedup bitcode writer. Do not walk all values for all functions to emit func...Devang Patel1-4/+7
2010-04-03Add special case bitcode support for DebugLoc. This avoidsChris Lattner1-1/+8
2010-02-25Make the side-numbering of instructions used by metadata (which is needed toNick Lewycky1-2/+1
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands1-1/+1
2010-02-06Function-local metadata whose operands had been optimized to no longer refer ...Victor Hernandez1-2/+2
2010-02-04Fix (and test) function-local metadata that occurs before the instruction tha...Victor Hernandez1-4/+8
2010-01-23Respect operator precedence (and silence a gcc 4.3 warning).Benjamin Kramer1-1/+1
2010-01-22Remove MetadataBase class because it is not adding significant value.Devang Patel1-4/+5
2010-01-14Simplify code that chooses when to enumerate function-local metadata operandsVictor Hernandez1-26/+28
2010-01-14Clean up unnecessary return and bracketsVictor Hernandez1-3/+1
2010-01-13Enumerate function-local metadata (and its types and operands) only during fu...Victor Hernandez1-17/+31
2010-01-09NamedMDNode is never used so there is no need to enumerate it here.Devang Patel1-1/+1
2010-01-09Derive NamedMDNode from Value.Devang Patel1-10/+22