summaryrefslogtreecommitdiff
path: root/lib/VMCore/Instruction.cpp
Commit message (Expand)AuthorAge
* Instruction::isAssociative() returns true for fmul/fadd if they are tagged "u...Shuxin Yang2012-11-29
* Fast-math interfaces for InstructionsMichael Ilseman2012-11-27
* Remove trailing whitespaceMichael Ilseman2012-11-15
* Refactor operation equivalence checking in BBVectorize by extending Instructi...Hal Finkel2012-06-28
* Now that Reassociate's LinearizeExprTree can look through arbitrary expressionDuncan Sands2012-06-12
* Fix a problem with incomplete equality testing of PHINodes in Joel Jones2012-05-10
* [unwind removal] Remove all of the code for the dead 'unwind' instruction. ThereBill Wendling2012-02-06
* Remove unreachable code. (replace with llvm_unreachable to help GCC where nec...David Blaikie2012-01-17
* Move Instruction::isSafeToSpeculativelyExecute out of VMCore andDan Gohman2011-12-14
* Make isSafeToSpeculativelyExecute() return the right answer for some new inst...Eli Friedman2011-09-01
* Revert r137655. There is some question about whether the 'landingpad'Bill Wendling2011-08-17
* The resume instruction may throw. Return 'true' in this case.Bill Wendling2011-08-16
* Duncan pointed out that the LandingPadInst might read memory. (It might alsoBill Wendling2011-08-15
* Fix predicates methods on Instruction to handle atomic load/store correctly.Eli Friedman2011-08-15
* Initial commit of the 'landingpad' instruction.Bill Wendling2011-08-12
* Add the 'resume' instruction for the new EH rewrite.Bill Wendling2011-07-31
* Revert r136253, r136263, r136269, r136313, r136325, r136326, r136329, r136338,Bill Wendling2011-07-30
* Misc optimizer+codegen work for 'cmpxchg' and 'atomicrmw'. They appear to beEli Friedman2011-07-29
* LangRef and basic memory-representation/reading/writing for 'cmpxchg' andEli Friedman2011-07-28
* Merge the contents from exception-handling-rewrite to the mainline.Bill Wendling2011-07-27
* Misc mid-level changes for new 'fence' instruction.Eli Friedman2011-07-27
* Initial implementation of 'fence' instruction, the new C++0x-style replacemen...Eli Friedman2011-07-25
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* manually copy debugloc over to a new instruction in clone() insteadChris Lattner2011-07-14
* Convert InsertValueInst and ExtractValueInst APIs to use ArrayRef.Jay Foad2011-07-13
* AttrListPtr has an overloaded operator== which does this for us, we should useNick Lewycky2011-01-26
* There is no need for isAssociative to take the type as an argument anymore.Duncan Sands2010-12-20
* Factor out Instruction::isSafeToSpeculativelyExecute's code forDan Gohman2010-11-11
* Rename removeAllMetadata to clearMetadataHashEntries and simplifyDan Gohman2010-07-20
* cache dereferenced iteratorsGabor Greif2010-07-12
* If it's safe to speculatively execute load(alloca) the it's safe to executeNick Lewycky2010-07-11
* IndirectBr is not safe to speculatively execute (!)Dan Gohman2010-07-02
* Switch the representation of the location in instruction fromChris Lattner2010-04-01
* Fix a major source of compile-time slowness at -O0 -g by optimizingChris Lattner2010-03-30
* rename use_const_iterator to const_use_iterator for consistency's sakeGabor Greif2010-03-25
* Add a comment.Dan Gohman2010-01-04
* it isn't safe to speculative load from a malloc, it might haveChris Lattner2010-01-03
* remove some unneeded Metadata interfaces.Chris Lattner2009-12-29
* sink the Instruction::HasMetadata bit into SubclassData.Chris Lattner2009-12-29
* This is a major cleanup of the instruction metadata interfaces thatChris Lattner2009-12-28
* Changes requested (avoid getFunction(), avoid Type creation via isVoidTy(), a...Victor Hernandez2009-11-03
* rename indbr -> indirectbr to appease the residents of #llvm.Chris Lattner2009-10-28
* Factor out redundancy from clone() implementations.Devang Patel2009-10-27
* Rename MallocFreeHelper as MemoryBuiltinsVictor Hernandez2009-10-27
* add enough support for indirect branch for the feature test to passChris Lattner2009-10-27
* Rename MallocHelper as MallocFreeHelper, since it now also identifies calls t...Victor Hernandez2009-10-26
* Remove FreeInst.Victor Hernandez2009-10-26
* Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su...Victor Hernandez2009-10-23
* Remove MallocInst from LLVM Instructions.Victor Hernandez2009-10-17
* Move parent assertion check before metadata deletion.Devang Patel2009-09-24