summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/Instruction.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add methodChris Lattner2004-11-301-2/+27
| | | | llvm-svn: 18368
* Add support for undef and unreachableChris Lattner2004-10-161-0/+1
| | | | llvm-svn: 17041
* Implement remove/eraseFromParent methodsChris Lattner2004-10-111-0/+7
| | | | llvm-svn: 16922
* Changes For Bug 352Reid Spencer2004-09-011-1/+1
| | | | | | | | Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. llvm-svn: 16137
* Fold iType into Value::VTyChris Lattner2004-06-271-6/+6
| | | | llvm-svn: 14435
* Refactor common initialization code in private init() functions.Alkis Evlogimenos2004-05-261-6/+22
| | | | | | | This is a first step in supplying append to basic block constructors for all instruction types. llvm-svn: 13793
* Know the opcode name of the select instructionChris Lattner2004-03-121-0/+1
| | | | llvm-svn: 12324
* If changing a parent, don't add then remove the object from the leak detectorChris Lattner2004-02-041-5/+5
| | | | llvm-svn: 11106
* Implement new Instruction::isRelational methodChris Lattner2004-01-121-0/+16
| | | | llvm-svn: 10810
* * Finegrainify namespacificationChris Lattner2003-11-201-4/+1
| | | | | | | | | * Add new constructors to allow insertion of terminator instructions at the end of basic blocks. * Move a ReturnInst method out-of-line, so that the vtable and type info don't need to be emitted to every translation unit that uses the class. llvm-svn: 10107
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+4
| | | | llvm-svn: 9903
* Added LLVM project notice to the top of every C++ source file.John Criswell2003-10-201-0/+7
| | | | | | Header files will be on the way. llvm-svn: 9298
* Change the Opcode enum for PHI nodes from "Instruction::PHINode" to ↵Chris Lattner2003-10-191-1/+1
| | | | | | "Instruction::PHI" to be more consistent with the other instructions. llvm-svn: 9269
* Add support for the new varargs intrinsics and instructionsChris Lattner2003-10-181-1/+2
| | | | llvm-svn: 9226
* Regularize header file commentsChris Lattner2003-10-131-1/+1
| | | | llvm-svn: 9071
* Fix spelling/grammar.Misha Brukman2003-10-101-1/+1
| | | | llvm-svn: 9023
* Add support for unwindChris Lattner2003-09-081-0/+1
| | | | llvm-svn: 8407
* *** empty log message ***Tanya Lattner2003-07-311-1/+1
| | | | llvm-svn: 7447
* Added function to determine if an Instruction may trap.Tanya Lattner2003-07-311-0/+17
| | | | llvm-svn: 7442
* Add support for the new va_arg instructionChris Lattner2003-05-081-1/+2
| | | | llvm-svn: 6029
* - Eliminated the deferred symbol table stuff in Module & Function, it reallyChris Lattner2002-11-201-3/+3
| | | | | | wasn't an optimization and it was causing lots of bugs. llvm-svn: 4779
* New isAssociative/isCommutative inspection methods, graciously contributed byChris Lattner2002-10-311-0/+39
| | | | | | Casey Carter. llvm-svn: 4459
* Add capability to insert an instruction into a basic block immediately afterChris Lattner2002-09-101-1/+9
| | | | | | | | it is created, as part of the ctor call. Eliminate the GenericBinaryInst class llvm-svn: 3653
* Enable "garbage detection" of LLVM objects. Now users should be obnoxiousChris Lattner2002-09-081-0/+10
| | | | | | warnings. If they accidentally leak LLVM Value's. llvm-svn: 3620
* Move code out of header files into .cpp files to make future changes easierChris Lattner2002-09-061-0/+4
| | | | llvm-svn: 3605
* Remove support for NOT instructionChris Lattner2002-08-141-5/+2
| | | | llvm-svn: 3323
* Create a static version of Instruction::getOpcodeName(opCode) thatVikram S. Adve2002-07-141-0/+53
| | | | | | | can be invoked with only an opcode (i.e., without an instruction). Move all opCode->opCodeName translations there. llvm-svn: 2900
* MEGAPATCH checkin.Chris Lattner2002-06-251-2/+1
| | | | | | For details, See: docs/2002-06-25-MegaPatchInfo.txt llvm-svn: 2779
* Change references to the Method class to be references to the FunctionChris Lattner2002-04-071-2/+2
| | | | | | | class. The Method class is obsolete (renamed) and all references to it are being converted over to Function. llvm-svn: 2144
* Method.h no longer includes BasicBlock.hChris Lattner2002-02-121-0/+1
| | | | | | | Method::inst_* is now in llvm/Support/InstIterator.h GraphTraits specializations for BasicBlock and Methods are now in llvm/Support/CFG.h llvm-svn: 1746
* Switch from MachineCodeForVMInstr model that is built into the VMCore ↵Chris Lattner2002-02-031-28/+1
| | | | | | | | library to an annotation based MAchineCodeForInstruction model Instruction.cpp now has 0 lines of code generation related code in it. llvm-svn: 1658
* Remove extraneous #includesChris Lattner2002-01-261-1/+0
| | | | llvm-svn: 1588
* Changes to build successfully with GCC 3.02Chris Lattner2002-01-201-3/+3
| | | | llvm-svn: 1503
* * Support new setname interfaceChris Lattner2001-09-071-1/+4
| | | | | | * Add assertion for sanity checking llvm-svn: 461
* Renamed include/llvm/Codegen to include/llvm/CodeGenChris Lattner2001-07-211-1/+1
| | | | llvm-svn: 253
* Fix code to be in a consistent styleChris Lattner2001-07-211-11/+5
| | | | llvm-svn: 252
* Remove getTempValuesForMachineCode from the Instruction interfaceChris Lattner2001-07-211-0/+2
| | | | | | to remove dependency on <vector> llvm-svn: 250
* Added a representation of the machine instructions generatedVikram S. Adve2001-07-201-2/+29
| | | | | | for a VM instruction. llvm-svn: 220
* Moved UnaryOperator::create to InstrTypes.cpp until there is an iUnaryOps.cppChris Lattner2001-06-251-33/+0
| | | | | | | Moved BinaryOperator::create to iBinaryOperators.cpp Add getUniqueName to SymbolTable llvm-svn: 76
* Moved getBinaryOperator to the BinaryOperator class and the getUnaryOperatorChris Lattner2001-06-081-2/+3
| | | | | | to the UnaryOperator class (from the Instruction class). llvm-svn: 21
* Initial revisionChris Lattner2001-06-061-0/+61
llvm-svn: 2
OpenPOWER on IntegriCloud