summaryrefslogtreecommitdiff
path: root/include/llvm/Operator.h
Commit message (Expand)AuthorAge
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Resort the #include lines in include/... and lib/... with theChandler Carruth2013-01-02
* Holding my nose and moving the accumulation routine to GEPOperatorChandler Carruth2012-12-11
* Reorganize FastMathFlags to be a wrapper around unsigned, and streamline some...Michael Ilseman2012-12-09
* Fast-math comments and convenience methodMichael Ilseman2012-11-28
* Fast-math flags added to FPMathOperator.Michael Ilseman2012-11-27
* Remove trailing whitespaceMichael Ilseman2012-11-15
* Make ~Operator() protected so subclasses can inherit it and not haveKaelyn Uhrain2012-10-24
* Fix ODR violations: a virtual function must be defined, even if it's neverRichard Smith2012-10-24
* Remove LLVM_DELETED_FUNCTION from destructors that override non-deleted base ...Craig Topper2012-10-17
* Remove unnecessary classof()'sSean Silva2012-10-11
* Add in some interfaces that will allow easier access to the pointer address s...Micah Villmow2012-10-09
* Remove more LLVM_DELETED_FUNCTIONs from destructors to fix -std=c++11 build o...Craig Topper2012-09-29
* Remove a LLVM_DELETED_FUNCTION from destructor to fix -std=c++11 build on gcc...Craig Topper2012-09-28
* Mark constructors, destructors, and operator new commented as 'do not impleme...Craig Topper2012-09-18
* Remove support for the special 'fast' value for fpmath accuracy for the moment.Duncan Sands2012-04-16
* Make it possible to indicate relaxed floating point requirements at the IR levelDuncan Sands2012-04-16
* There is no need for setIsExact to be public. Make it private.Duncan Sands2012-04-14
* Add support for vectors of pointers.Nadav Rotem2011-12-05
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Revert r133373. I was going to use this to teach the Verifier to verify constantNick Lewycky2011-06-19
* Add the remaining instructions/constant expressions as Operators so that codeNick Lewycky2011-06-19
* PR9869: Add explicit destructor declarations to Operator subclasses, to allowEli Friedman2011-05-08
* implement .ll and .bc support for nsw/nuw on shl and exact on lshr/ashr.Chris Lattner2011-02-07
* Add IRBuilder methods for creating an exact udiv, like for exact sdiv.Duncan Sands2011-02-07
* enhance vmcore to know that udiv's can be exact, and add a trivialChris Lattner2011-02-06
* Avoid warnings about implicit conversions to `bool' in MSVC. This timeOscar Fuentes2010-09-25
* Avoid warnings about conversions to `bool' in MS compilers.Oscar Fuentes2010-09-23
* Remove a bunch of unused arguments from functions, silencing aEric Christopher2009-10-14
* add a helper method.Chris Lattner2009-09-21
* Reappy r80998, now that the GlobalOpt bug that it exposed on MiniSAT is fixed.Dan Gohman2009-09-07
* Revert "Include optional subclass flags, such as inbounds, nsw, etc., ...", thisDaniel Dunbar2009-09-06
* Include optional subclass flags, such as inbounds, nsw, etc., in theDan Gohman2009-09-04
* Rename hasNoUnsignedOverflow and hasNoSignedOverflow to hasNoUnsignedWrapDan Gohman2009-08-20
* Add unimplemented destructor declarations to hopefully addressDan Gohman2009-08-13
* Avoid implicitly depending on Instructions.h.Dan Gohman2009-08-11
* Add a new keyword 'inbounds' for use with getelementptr. See theDan Gohman2009-07-27
* Order unsigned before signed, for consistency.Dan Gohman2009-07-27
* Add specific classes for Add, Sub, and Mul, for convenience.Dan Gohman2009-07-24
* Clarify that OverflowingBinaryOperator is not used for SDiv, even thoughDan Gohman2009-07-20
* Drop UDivOperator and introduce SDivOperator. Thanks to ChrisDan Gohman2009-07-20
* Revert the addition of hasNoPointerOverflow to GEPOperator.Dan Gohman2009-07-20
* Convert more code to use Operator instead of explicitly handling bothDan Gohman2009-07-17
* Add a GEPOperator class, and move the hasNoPointerOverflowDan Gohman2009-07-17
* Add a new Operator class, for handling Instructions and ConstantExprsDan Gohman2009-07-17