In the example above, the LLVM builder class is starting to show its value.
-LLVMBuilder knows where to insert the newly created instruction, all you have to
+IRBuilder knows where to insert the newly created instruction, all you have to
do is specify what instruction to create (e.g. with CreateAdd), which
operands to use (L and R here) and optionally provide a name
for the generated instruction.
@@ -680,7 +680,7 @@ our makefile/command line about which options to use:
#include "llvm/DerivedTypes.h"
#include "llvm/Module.h"
#include "llvm/Analysis/Verifier.h"
-#include "llvm/Support/LLVMBuilder.h"
+#include "llvm/Support/IRBuilder.h"
#include <cstdio>
#include <string>
#include <map>
@@ -1023,7 +1023,7 @@ static PrototypeAST *ParseExtern() {
//===----------------------------------------------------------------------===//
static Module *TheModule;
-static LLVMBuilder Builder;
+static IRBuilder Builder;
static std::map<std::string, Value*> NamedValues;
Value *ErrorV(const char *Str) { Error(Str); return 0; }
diff --git a/docs/tutorial/LangImpl4.html b/docs/tutorial/LangImpl4.html
index 4b9b8c55bd0..41b58c76e03 100644
--- a/docs/tutorial/LangImpl4.html
+++ b/docs/tutorial/LangImpl4.html
@@ -56,8 +56,8 @@ Folding
Our demonstration for Chapter 3 is elegant and easy to extend. Unfortunately,
-it does not produce wonderful code. For example, when compiling simple code,
-we don't get obvious optimizations:
+it does not produce wonderful code. The IRBuilder, however, does give us
+obvious optimizations when compiling simple code:
This code is a very, very literal transcription of the AST built by parsing
-the input. As such, this transcription lacks optimizations like constant folding (we'd like to get "add x, 3.0" in the example above) as well as other more important
-optimizations. Constant folding, in particular, is a very common and very
-important optimization: so much so that many language implementors implement
-constant folding support in their AST representation.
-
-With LLVM, you don't need this support in the AST. Since all calls to build LLVM IR go through
-the LLVM builder, it would be nice if the builder itself checked to see if there
-was a constant folding opportunity when you call it. If so, it could just do
-the constant fold and return the constant instead of creating an instruction.
-This is exactly what the LLVMFoldingBuilder class does. Lets make one
-change:
-
-
This code is not a literal transcription of the AST built by parsing the
+input. That would be:
With LLVM, you don't need this support in the AST. Since all calls to build
+LLVM IR go through the LLVM IR builder, the builder itself checked to see if
+there was a constant folding opportunity when you call it. If so, it just does
+the constant fold and return the constant instead of creating an instruction.
+
Well, that was easy :). In practice, we recommend always using
-LLVMFoldingBuilder when generating code like this. It has no
+IRBuilder when generating code like this. It has no
"syntactic overhead" for its use (you don't have to uglify your compiler with
constant checks everywhere) and it can dramatically reduce the amount of
LLVM IR that is generated in some cases (particular for languages with a macro
preprocessor or that use a lot of constants).
-Once the blocks are created, we can emit the conditional branch that chooses
between them. Note that creating new blocks does not implicitly affect the
-LLVMBuilder, so it is still inserting into the block that the condition
+IRBuilder, so it is still inserting into the block that the condition
went into. Also note that it is creating a branch to the "then" block and the
"else" block, even though the "else" block isn't inserted into the function yet.
This is all ok: it is the standard way that LLVM supports forward
@@ -907,7 +907,7 @@ if/then/else and for expressions.. To build this example, use:
#include "llvm/Analysis/Verifier.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Transforms/Scalar.h"
-#include "llvm/Support/LLVMBuilder.h"
+#include "llvm/Support/IRBuilder.h"
#include <cstdio>
#include <string>
#include <map>
@@ -1352,7 +1352,7 @@ static PrototypeAST *ParseExtern() {
//===----------------------------------------------------------------------===//
static Module *TheModule;
-static LLVMFoldingBuilder Builder;
+static IRBuilder Builder;
static std::map<std::string, Value*> NamedValues;
static FunctionPassManager *TheFPM;
diff --git a/docs/tutorial/LangImpl6.html b/docs/tutorial/LangImpl6.html
index 62ce43e33f4..1f159e0b56d 100644
--- a/docs/tutorial/LangImpl6.html
+++ b/docs/tutorial/LangImpl6.html
@@ -827,7 +827,7 @@ if/then/else and for expressions.. To build this example, use:
#include "llvm/Analysis/Verifier.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Transforms/Scalar.h"
-#include "llvm/Support/LLVMBuilder.h"
+#include "llvm/Support/IRBuilder.h"
#include <cstdio>
#include <string>
#include <map>
@@ -1357,7 +1357,7 @@ static PrototypeAST *ParseExtern() {
//===----------------------------------------------------------------------===//
static Module *TheModule;
-static LLVMFoldingBuilder Builder;
+static IRBuilder Builder;
static std::map<std::string, Value*> NamedValues;
static FunctionPassManager *TheFPM;
diff --git a/docs/tutorial/LangImpl7.html b/docs/tutorial/LangImpl7.html
index 7138cbdcdf8..6d82fa9dbdc 100644
--- a/docs/tutorial/LangImpl7.html
+++ b/docs/tutorial/LangImpl7.html
@@ -422,14 +422,14 @@ function:
/// the function. This is used for mutable variables etc.
static AllocaInst *CreateEntryBlockAlloca(Function *TheFunction,
const std::string &VarName) {
- LLVMBuilder TmpB(&TheFunction->getEntryBlock(),
- TheFunction->getEntryBlock().begin());
+ IRBuilder TmpB(&TheFunction->getEntryBlock(),
+ TheFunction->getEntryBlock().begin());
return TmpB.CreateAlloca(Type::DoubleTy, 0, VarName.c_str());
}
-This funny looking code creates an IRBuilder object that is pointing at
the first instruction (.begin()) of the entry block. It then creates an alloca
with the expected name and returns it. Because all values in Kaleidoscope are
doubles, there is no need to pass in a type to use.
@@ -1009,7 +1009,7 @@ variables and var/in support. To build this example, use:
#include "llvm/Analysis/Verifier.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Transforms/Scalar.h"
-#include "llvm/Support/LLVMBuilder.h"
+#include "llvm/Support/IRBuilder.h"
#include <cstdio>
#include <string>
#include <map>
@@ -1605,7 +1605,7 @@ static PrototypeAST *ParseExtern() {
//===----------------------------------------------------------------------===//
static Module *TheModule;
-static LLVMFoldingBuilder Builder;
+static IRBuilder Builder;
static std::map<std::string, AllocaInst*> NamedValues;
static FunctionPassManager *TheFPM;
@@ -1615,8 +1615,8 @@ Value *ErrorV(const char *Str) { Error(Str); return 0; }
/// the function. This is used for mutable variables etc.
static AllocaInst *CreateEntryBlockAlloca(Function *TheFunction,
const std::string &VarName) {
- LLVMBuilder TmpB(&TheFunction->getEntryBlock(),
- TheFunction->getEntryBlock().begin());
+ IRBuilder TmpB(&TheFunction->getEntryBlock(),
+ TheFunction->getEntryBlock().begin());
return TmpB.CreateAlloca(Type::DoubleTy, 0, VarName.c_str());
}
diff --git a/docs/tutorial/OCamlLangImpl3.html b/docs/tutorial/OCamlLangImpl3.html
index 079ab1c2b49..b396ef07ae5 100644
--- a/docs/tutorial/OCamlLangImpl3.html
+++ b/docs/tutorial/OCamlLangImpl3.html
@@ -108,7 +108,7 @@ top-level structure that the LLVM IR uses to contain code.
In the example above, the LLVM builder class is starting to show its value.
-LLVMBuilder knows where to insert the newly created instruction, all you have to
+IRBuilder knows where to insert the newly created instruction, all you have to
do is specify what instruction to create (e.g. with Llvm.create_add),
which operands to use (lhs and rhs here) and optionally
provide a name for the generated instruction.
diff --git a/docs/tutorial/OCamlLangImpl4.html b/docs/tutorial/OCamlLangImpl4.html
index 4e267b80f57..ffa85d51dfb 100644
--- a/docs/tutorial/OCamlLangImpl4.html
+++ b/docs/tutorial/OCamlLangImpl4.html
@@ -58,7 +58,8 @@ Folding
-
Note: the ocaml bindings already use LLVMFoldingBuilder.
+
Note: the default IRBuilder now always includes the constant
+folding optimisations below.
Our demonstration for Chapter 3 is elegant and easy to extend. Unfortunately,
diff --git a/docs/tutorial/OCamlLangImpl5.html b/docs/tutorial/OCamlLangImpl5.html
index ba8c2f791db..594a77d1648 100644
--- a/docs/tutorial/OCamlLangImpl5.html
+++ b/docs/tutorial/OCamlLangImpl5.html
@@ -455,7 +455,7 @@ to create the PHI node and set up the block/value pairs for the PHI.
Once the blocks are created, we can emit the conditional branch that chooses
between them. Note that creating new blocks does not implicitly affect the
-LLVMBuilder, so it is still inserting into the block that the condition
+IRBuilder, so it is still inserting into the block that the condition
went into. This is why we needed to save the "start" block.
diff --git a/examples/BrainF/BrainF.cpp b/examples/BrainF/BrainF.cpp
index 3717ee70362..bd6d5f2e56c 100644
--- a/examples/BrainF/BrainF.cpp
+++ b/examples/BrainF/BrainF.cpp
@@ -71,7 +71,7 @@ void BrainF::header() {
brainf_func = cast(module->
getOrInsertFunction("brainf", Type::VoidTy, NULL));
- builder = new LLVMBuilder(BasicBlock::Create(label, brainf_func));
+ builder = new IRBuilder(BasicBlock::Create(label, brainf_func));
//%arr = malloc i8, i32 %d
ConstantInt *val_mem = ConstantInt::get(APInt(32, memtotal));
@@ -193,7 +193,7 @@ void BrainF::readloop(PHINode *phi, BasicBlock *oldbb, BasicBlock *testbb) {
Value *tape_0 = getchar_call;
//%tape.%d = trunc i32 %tape.%d to i8
- TruncInst *tape_1 = builder->
+ Value *tape_1 = builder->
CreateTrunc(tape_0, IntegerType::Int8Ty, tapereg);
//store i8 %tape.%d, i8 *%head.%d
@@ -207,7 +207,7 @@ void BrainF::readloop(PHINode *phi, BasicBlock *oldbb, BasicBlock *testbb) {
LoadInst *tape_0 = builder->CreateLoad(curhead, tapereg);
//%tape.%d = sext i8 %tape.%d to i32
- SExtInst *tape_1 = builder->
+ Value *tape_1 = builder->
CreateSExt(tape_0, IntegerType::Int32Ty, tapereg);
//call i32 @putchar(i32 %tape.%d)
@@ -232,15 +232,15 @@ void BrainF::readloop(PHINode *phi, BasicBlock *oldbb, BasicBlock *testbb) {
if (comflag & flag_arraybounds)
{
//%test.%d = icmp uge i8 *%head.%d, %arrmax
- ICmpInst *test_0 = builder->
+ Value *test_0 = builder->
CreateICmpUGE(curhead, ptr_arrmax, testreg);
//%test.%d = icmp ult i8 *%head.%d, %arr
- ICmpInst *test_1 = builder->
+ Value *test_1 = builder->
CreateICmpULT(curhead, ptr_arr, testreg);
//%test.%d = or i1 %test.%d, %test.%d
- BinaryOperator *test_2 = builder->
+ Value *test_2 = builder->
CreateOr(test_0, test_1, testreg);
//br i1 %test.%d, label %main.%d, label %main.%d
@@ -259,7 +259,7 @@ void BrainF::readloop(PHINode *phi, BasicBlock *oldbb, BasicBlock *testbb) {
LoadInst *tape_0 = builder->CreateLoad(curhead, tapereg);
//%tape.%d = add i8 %tape.%d, %d
- BinaryOperator *tape_1 = builder->
+ Value *tape_1 = builder->
CreateAdd(tape_0, ConstantInt::get(APInt(8, curvalue)), tapereg);
//store i8 %tape.%d, i8 *%head.%d\n"
diff --git a/examples/BrainF/BrainF.h b/examples/BrainF/BrainF.h
index 715fa317f87..e6aef82095d 100644
--- a/examples/BrainF/BrainF.h
+++ b/examples/BrainF/BrainF.h
@@ -16,7 +16,7 @@
#define BRAINF_H
#include "llvm/Module.h"
-#include "llvm/Support/LLVMBuilder.h"
+#include "llvm/Support/IRBuilder.h"
using namespace llvm;
@@ -84,7 +84,7 @@ class BrainF {
BasicBlock *aberrorbb;
/// Variables
- LLVMBuilder *builder;
+ IRBuilder *builder;
Value *curhead;
};
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index ef1e2f6ce2f..4ecf81cac50 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -38,7 +38,7 @@
/* Need these includes to support the LLVM 'cast' template for the C++ 'wrap'
and 'unwrap' conversion functions. */
#include "llvm/Module.h"
-#include "llvm/Support/LLVMBuilder.h"
+#include "llvm/Support/IRBuilder.h"
extern "C" {
#endif
@@ -689,7 +689,7 @@ namespace llvm {
DEFINE_ISA_CONVERSION_FUNCTIONS (Value, LLVMValueRef )
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(Module, LLVMModuleRef )
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(BasicBlock, LLVMBasicBlockRef )
- DEFINE_SIMPLE_CONVERSION_FUNCTIONS(LLVMFoldingBuilder, LLVMBuilderRef )
+ DEFINE_SIMPLE_CONVERSION_FUNCTIONS(IRBuilder, LLVMBuilderRef )
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(PATypeHolder, LLVMTypeHandleRef )
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ModuleProvider, LLVMModuleProviderRef)
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(MemoryBuffer, LLVMMemoryBufferRef )
diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h
new file mode 100644
index 00000000000..4dfc14b89a7
--- /dev/null
+++ b/include/llvm/Support/IRBuilder.h
@@ -0,0 +1,527 @@
+//===---- llvm/Support/IRBuilder.h - Builder for LLVM Instrs ----*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines the IRBuilder class, which is used as a convenient way
+// to create LLVM instructions with a consistent and simplified interface.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_SUPPORT_IRBUILDER_H
+#define LLVM_SUPPORT_IRBUILDER_H
+
+#include "llvm/BasicBlock.h"
+#include "llvm/Instructions.h"
+#include "llvm/Constants.h"
+
+namespace llvm {
+
+/// IRBuilder - This provides a uniform API for creating instructions and
+/// inserting them into a basic block: either at the end of a BasicBlock, or
+/// at a specific iterator location in a block.
+///
+/// Note that the builder does not expose the full generality of LLVM
+/// instructions. For example, it cannot be used to create instructions with
+/// arbitrary names (specifically, names with nul characters in them) - It only
+/// supports nul-terminated C strings. For fully generic names, use
+/// I->setName(). For access to extra instruction properties, use the mutators
+/// (e.g. setVolatile) on the instructions after they have been created.
+class IRBuilder {
+ BasicBlock *BB;
+ BasicBlock::iterator InsertPt;
+public:
+ IRBuilder() { ClearInsertionPoint(); }
+ explicit IRBuilder(BasicBlock *TheBB) { SetInsertPoint(TheBB); }
+ IRBuilder(BasicBlock *TheBB, BasicBlock::iterator IP) {
+ SetInsertPoint(TheBB, IP);
+ }
+
+ //===--------------------------------------------------------------------===//
+ // Builder configuration methods
+ //===--------------------------------------------------------------------===//
+
+ /// ClearInsertionPoint - Clear the insertion point: created instructions will
+ /// not be inserted into a block.
+ void ClearInsertionPoint() {
+ BB = 0;
+ }
+
+ BasicBlock *GetInsertBlock() const { return BB; }
+
+ /// SetInsertPoint - This specifies that created instructions should be
+ /// appended to the end of the specified block.
+ void SetInsertPoint(BasicBlock *TheBB) {
+ BB = TheBB;
+ InsertPt = BB->end();
+ }
+
+ /// SetInsertPoint - This specifies that created instructions should be
+ /// inserted at the specified point.
+ void SetInsertPoint(BasicBlock *TheBB, BasicBlock::iterator IP) {
+ BB = TheBB;
+ InsertPt = IP;
+ }
+
+ /// Insert - Insert and return the specified instruction.
+ template
+ InstTy *Insert(InstTy *I) const {
+ InsertHelper(I);
+ return I;
+ }
+
+ /// InsertHelper - Insert the specified instruction at the specified insertion
+ /// point. This is split out of Insert so that it isn't duplicated for every
+ /// template instantiation.
+ void InsertHelper(Instruction *I) const {
+ if (BB) BB->getInstList().insert(InsertPt, I);
+ }
+
+ //===--------------------------------------------------------------------===//
+ // Instruction creation methods: Terminators
+ //===--------------------------------------------------------------------===//
+
+ /// CreateRetVoid - Create a 'ret void' instruction.
+ ReturnInst *CreateRetVoid() {
+ return Insert(ReturnInst::Create());
+ }
+
+ /// @verbatim
+ /// CreateRet - Create a 'ret ' instruction.
+ /// @endverbatim
+ ReturnInst *CreateRet(Value *V) {
+ return Insert(ReturnInst::Create(V));
+ }
+
+ ReturnInst *CreateRet(Value * const* retVals, unsigned N) {
+ return Insert(ReturnInst::Create(retVals, N));
+ }
+
+ GetResultInst *CreateGetResult(Value *V, unsigned Index,
+ const char *Name = "") {
+ return Insert(new GetResultInst(V, Index, Name));
+ }
+
+ /// CreateBr - Create an unconditional 'br label X' instruction.
+ BranchInst *CreateBr(BasicBlock *Dest) {
+ return Insert(BranchInst::Create(Dest));
+ }
+
+ /// CreateCondBr - Create a conditional 'br Cond, TrueDest, FalseDest'
+ /// instruction.
+ BranchInst *CreateCondBr(Value *Cond, BasicBlock *True, BasicBlock *False) {
+ return Insert(BranchInst::Create(True, False, Cond));
+ }
+
+ /// CreateSwitch - Create a switch instruction with the specified value,
+ /// default dest, and with a hint for the number of cases that will be added
+ /// (for efficient allocation).
+ SwitchInst *CreateSwitch(Value *V, BasicBlock *Dest, unsigned NumCases = 10) {
+ return Insert(SwitchInst::Create(V, Dest, NumCases));
+ }
+
+ /// CreateInvoke - Create an invoke instruction.
+ template
+ InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
+ BasicBlock *UnwindDest, InputIterator ArgBegin,
+ InputIterator ArgEnd, const char *Name = "") {
+ return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest,
+ ArgBegin, ArgEnd, Name));
+ }
+
+ UnwindInst *CreateUnwind() {
+ return Insert(new UnwindInst());
+ }
+
+ UnreachableInst *CreateUnreachable() {
+ return Insert(new UnreachableInst());
+ }
+
+ //===--------------------------------------------------------------------===//
+ // Instruction creation methods: Binary Operators
+ //===--------------------------------------------------------------------===//
+
+ Value *CreateAdd(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getAdd(LC, RC);
+ return Insert(BinaryOperator::createAdd(LHS, RHS, Name));
+ }
+ Value *CreateSub(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getSub(LC, RC);
+ return Insert(BinaryOperator::createSub(LHS, RHS, Name));
+ }
+ Value *CreateMul(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getMul(LC, RC);
+ return Insert(BinaryOperator::createMul(LHS, RHS, Name));
+ }
+ Value *CreateUDiv(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getUDiv(LC, RC);
+ return Insert(BinaryOperator::createUDiv(LHS, RHS, Name));
+ }
+ Value *CreateSDiv(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getSDiv(LC, RC);
+ return Insert(BinaryOperator::createSDiv(LHS, RHS, Name));
+ }
+ Value *CreateFDiv(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getFDiv(LC, RC);
+ return Insert(BinaryOperator::createFDiv(LHS, RHS, Name));
+ }
+ Value *CreateURem(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getURem(LC, RC);
+ return Insert(BinaryOperator::createURem(LHS, RHS, Name));
+ }
+ Value *CreateSRem(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getSRem(LC, RC);
+ return Insert(BinaryOperator::createSRem(LHS, RHS, Name));
+ }
+ Value *CreateFRem(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getFRem(LC, RC);
+ return Insert(BinaryOperator::createFRem(LHS, RHS, Name));
+ }
+ Value *CreateShl(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getShl(LC, RC);
+ return Insert(BinaryOperator::createShl(LHS, RHS, Name));
+ }
+ Value *CreateLShr(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getLShr(LC, RC);
+ return Insert(BinaryOperator::createLShr(LHS, RHS, Name));
+ }
+ Value *CreateAShr(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getAShr(LC, RC);
+ return Insert(BinaryOperator::createAShr(LHS, RHS, Name));
+ }
+ Value *CreateAnd(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getAnd(LC, RC);
+ return Insert(BinaryOperator::createAnd(LHS, RHS, Name));
+ }
+ Value *CreateOr(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getOr(LC, RC);
+ return Insert(BinaryOperator::createOr(LHS, RHS, Name));
+ }
+ Value *CreateXor(Value *LHS, Value *RHS, const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getXor(LC, RC);
+ return Insert(BinaryOperator::createXor(LHS, RHS, Name));
+ }
+
+ BinaryOperator *CreateBinOp(Instruction::BinaryOps Opc,
+ Value *LHS, Value *RHS, const char *Name = "") {
+ return Insert(BinaryOperator::create(Opc, LHS, RHS, Name));
+ }
+
+ BinaryOperator *CreateNeg(Value *V, const char *Name = "") {
+ return Insert(BinaryOperator::createNeg(V, Name));
+ }
+ BinaryOperator *CreateNot(Value *V, const char *Name = "") {
+ return Insert(BinaryOperator::createNot(V, Name));
+ }
+
+ //===--------------------------------------------------------------------===//
+ // Instruction creation methods: Memory Instructions
+ //===--------------------------------------------------------------------===//
+
+ MallocInst *CreateMalloc(const Type *Ty, Value *ArraySize = 0,
+ const char *Name = "") {
+ return Insert(new MallocInst(Ty, ArraySize, Name));
+ }
+ AllocaInst *CreateAlloca(const Type *Ty, Value *ArraySize = 0,
+ const char *Name = "") {
+ return Insert(new AllocaInst(Ty, ArraySize, Name));
+ }
+ FreeInst *CreateFree(Value *Ptr) {
+ return Insert(new FreeInst(Ptr));
+ }
+ LoadInst *CreateLoad(Value *Ptr, const char *Name = 0) {
+ return Insert(new LoadInst(Ptr, Name));
+ }
+ LoadInst *CreateLoad(Value *Ptr, bool isVolatile, const char *Name = 0) {
+ return Insert(new LoadInst(Ptr, Name, isVolatile));
+ }
+ StoreInst *CreateStore(Value *Val, Value *Ptr, bool isVolatile = false) {
+ return Insert(new StoreInst(Val, Ptr, isVolatile));
+ }
+ template
+ Value *CreateGEP(Value *Ptr, InputIterator IdxBegin,
+ InputIterator IdxEnd, const char *Name = "") {
+
+ if (Constant *PC = dyn_cast(Ptr)) {
+ // Every index must be constant.
+ InputIterator i;
+ for (i = IdxBegin; i < IdxEnd; ++i) {
+ if (!dyn_cast(*i))
+ break;
+ }
+ if (i == IdxEnd)
+ return ConstantExpr::getGetElementPtr(PC, &IdxBegin[0], IdxEnd - IdxBegin);
+ }
+ return(Insert(GetElementPtrInst::Create(Ptr, IdxBegin, IdxEnd, Name)));
+ }
+ Value *CreateGEP(Value *Ptr, Value *Idx, const char *Name = "") {
+ if (Constant *PC = dyn_cast(Ptr))
+ if (Constant *IC = dyn_cast(Idx))
+ return ConstantExpr::getGetElementPtr(PC, &IC, 1);
+ return Insert(GetElementPtrInst::Create(Ptr, Idx, Name));
+ }
+ Value *CreateStructGEP(Value *Ptr, unsigned Idx, const char *Name = "") {
+ llvm::Value *Idxs[] = {
+ ConstantInt::get(llvm::Type::Int32Ty, 0),
+ ConstantInt::get(llvm::Type::Int32Ty, Idx)
+ };
+
+ if (Constant *PC = dyn_cast(Ptr))
+ return ConstantExpr::getGetElementPtr(PC, Idxs, 2);
+
+ return Insert(GetElementPtrInst::Create(Ptr, Idxs, Idxs+2, Name));
+ }
+
+ //===--------------------------------------------------------------------===//
+ // Instruction creation methods: Cast/Conversion Operators
+ //===--------------------------------------------------------------------===//
+
+ Value *CreateTrunc(Value *V, const Type *DestTy, const char *Name = "") {
+ return CreateCast(Instruction::Trunc, V, DestTy, Name);
+ }
+ Value *CreateZExt(Value *V, const Type *DestTy, const char *Name = "") {
+ return CreateCast(Instruction::ZExt, V, DestTy, Name);
+ }
+ Value *CreateSExt(Value *V, const Type *DestTy, const char *Name = "") {
+ return CreateCast(Instruction::SExt, V, DestTy, Name);
+ }
+ Value *CreateFPToUI(Value *V, const Type *DestTy, const char *Name = ""){
+ return CreateCast(Instruction::FPToUI, V, DestTy, Name);
+ }
+ Value *CreateFPToSI(Value *V, const Type *DestTy, const char *Name = ""){
+ return CreateCast(Instruction::FPToSI, V, DestTy, Name);
+ }
+ Value *CreateUIToFP(Value *V, const Type *DestTy, const char *Name = ""){
+ return CreateCast(Instruction::UIToFP, V, DestTy, Name);
+ }
+ Value *CreateSIToFP(Value *V, const Type *DestTy, const char *Name = ""){
+ return CreateCast(Instruction::SIToFP, V, DestTy, Name);
+ }
+ Value *CreateFPTrunc(Value *V, const Type *DestTy,
+ const char *Name = "") {
+ return CreateCast(Instruction::FPTrunc, V, DestTy, Name);
+ }
+ Value *CreateFPExt(Value *V, const Type *DestTy, const char *Name = "") {
+ return CreateCast(Instruction::FPExt, V, DestTy, Name);
+ }
+ Value *CreatePtrToInt(Value *V, const Type *DestTy,
+ const char *Name = "") {
+ return CreateCast(Instruction::PtrToInt, V, DestTy, Name);
+ }
+ Value *CreateIntToPtr(Value *V, const Type *DestTy,
+ const char *Name = "") {
+ return CreateCast(Instruction::IntToPtr, V, DestTy, Name);
+ }
+ Value *CreateBitCast(Value *V, const Type *DestTy,
+ const char *Name = "") {
+ return CreateCast(Instruction::BitCast, V, DestTy, Name);
+ }
+
+ Value *CreateCast(Instruction::CastOps Op, Value *V, const Type *DestTy,
+ const char *Name = "") {
+ if (V->getType() == DestTy)
+ return V;
+ if (Constant *VC = dyn_cast(V))
+ return ConstantExpr::getCast(Op, VC, DestTy);
+ return Insert(CastInst::create(Op, V, DestTy, Name));
+ }
+ Value *CreateIntCast(Value *V, const Type *DestTy, bool isSigned,
+ const char *Name = "") {
+ if (V->getType() == DestTy)
+ return V;
+ if (Constant *VC = dyn_cast(V))
+ return ConstantExpr::getIntegerCast(VC, DestTy, isSigned);
+ return Insert(CastInst::createIntegerCast(V, DestTy, isSigned, Name));
+ }
+
+ //===--------------------------------------------------------------------===//
+ // Instruction creation methods: Compare Instructions
+ //===--------------------------------------------------------------------===//
+
+ Value *CreateICmpEQ(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_EQ, LHS, RHS, Name);
+ }
+ Value *CreateICmpNE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_NE, LHS, RHS, Name);
+ }
+ Value *CreateICmpUGT(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_UGT, LHS, RHS, Name);
+ }
+ Value *CreateICmpUGE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_UGE, LHS, RHS, Name);
+ }
+ Value *CreateICmpULT(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_ULT, LHS, RHS, Name);
+ }
+ Value *CreateICmpULE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_ULE, LHS, RHS, Name);
+ }
+ Value *CreateICmpSGT(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_SGT, LHS, RHS, Name);
+ }
+ Value *CreateICmpSGE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_SGE, LHS, RHS, Name);
+ }
+ Value *CreateICmpSLT(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_SLT, LHS, RHS, Name);
+ }
+ Value *CreateICmpSLE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateICmp(ICmpInst::ICMP_SLE, LHS, RHS, Name);
+ }
+
+ Value *CreateFCmpOEQ(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_OEQ, LHS, RHS, Name);
+ }
+ Value *CreateFCmpOGT(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_OGT, LHS, RHS, Name);
+ }
+ Value *CreateFCmpOGE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_OGE, LHS, RHS, Name);
+ }
+ Value *CreateFCmpOLT(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_OLT, LHS, RHS, Name);
+ }
+ Value *CreateFCmpOLE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_OLE, LHS, RHS, Name);
+ }
+ Value *CreateFCmpONE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_ONE, LHS, RHS, Name);
+ }
+ Value *CreateFCmpORD(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_ORD, LHS, RHS, Name);
+ }
+ Value *CreateFCmpUNO(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_UNO, LHS, RHS, Name);
+ }
+ Value *CreateFCmpUEQ(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_UEQ, LHS, RHS, Name);
+ }
+ Value *CreateFCmpUGT(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_UGT, LHS, RHS, Name);
+ }
+ Value *CreateFCmpUGE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_UGE, LHS, RHS, Name);
+ }
+ Value *CreateFCmpULT(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_ULT, LHS, RHS, Name);
+ }
+ Value *CreateFCmpULE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_ULE, LHS, RHS, Name);
+ }
+ Value *CreateFCmpUNE(Value *LHS, Value *RHS, const char *Name = "") {
+ return CreateFCmp(FCmpInst::FCMP_UNE, LHS, RHS, Name);
+ }
+
+ Value *CreateICmp(ICmpInst::Predicate P, Value *LHS, Value *RHS,
+ const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getCompare(P, LC, RC);
+ return Insert(new ICmpInst(P, LHS, RHS, Name));
+ }
+ Value *CreateFCmp(FCmpInst::Predicate P, Value *LHS, Value *RHS,
+ const char *Name = "") {
+ if (Constant *LC = dyn_cast(LHS))
+ if (Constant *RC = dyn_cast(RHS))
+ return ConstantExpr::getCompare(P, LC, RC);
+ return Insert(new FCmpInst(P, LHS, RHS, Name));
+ }
+
+ //===--------------------------------------------------------------------===//
+ // Instruction creation methods: Other Instructions
+ //===--------------------------------------------------------------------===//
+
+ PHINode *CreatePHI(const Type *Ty, const char *Name = "") {
+ return Insert(PHINode::Create(Ty, Name));
+ }
+
+ CallInst *CreateCall(Value *Callee, const char *Name = "") {
+ return Insert(CallInst::Create(Callee, Name));
+ }
+ CallInst *CreateCall(Value *Callee, Value *Arg, const char *Name = "") {
+ return Insert(CallInst::Create(Callee, Arg, Name));
+ }
+
+ template
+ CallInst *CreateCall(Value *Callee, InputIterator ArgBegin,
+ InputIterator ArgEnd, const char *Name = "") {
+ return Insert(CallInst::Create(Callee, ArgBegin, ArgEnd, Name));
+ }
+
+ Value *CreateSelect(Value *C, Value *True, Value *False,
+ const char *Name = "") {
+ if (Constant *CC = dyn_cast(C))
+ if (Constant *TC = dyn_cast(True))
+ if (Constant *FC = dyn_cast(False))
+ return ConstantExpr::getSelect(CC, TC, FC);
+ return Insert(SelectInst::Create(C, True, False, Name));
+ }
+
+ VAArgInst *CreateVAArg(Value *List, const Type *Ty, const char *Name = "") {
+ return Insert(new VAArgInst(List, Ty, Name));
+ }
+
+ Value *CreateExtractElement(Value *Vec, Value *Idx,
+ const char *Name = "") {
+ if (Constant *VC = dyn_cast(Vec))
+ if (Constant *IC = dyn_cast(Idx))
+ return ConstantExpr::getExtractElement(VC, IC);
+ return Insert(new ExtractElementInst(Vec, Idx, Name));
+ }
+
+ Value *CreateInsertElement(Value *Vec, Value *NewElt, Value *Idx,
+ const char *Name = "") {
+ if (Constant *VC = dyn_cast(Vec))
+ if (Constant *NC = dyn_cast(NewElt))
+ if (Constant *IC = dyn_cast(Idx))
+ return ConstantExpr::getInsertElement(VC, NC, IC);
+ return Insert(InsertElementInst::Create(Vec, NewElt, Idx, Name));
+ }
+
+ Value *CreateShuffleVector(Value *V1, Value *V2, Value *Mask,
+ const char *Name = "") {
+ if (Constant *V1C = dyn_cast(V1))
+ if (Constant *V2C = dyn_cast(V2))
+ if (Constant *MC = dyn_cast(Mask))
+ return ConstantExpr::getShuffleVector(V1C, V2C, MC);
+ return Insert(new ShuffleVectorInst(V1, V2, Mask, Name));
+ }
+};
+
+}
+
+#endif
diff --git a/include/llvm/Support/LLVMBuilder.h b/include/llvm/Support/LLVMBuilder.h
deleted file mode 100644
index 2df552e5f92..00000000000
--- a/include/llvm/Support/LLVMBuilder.h
+++ /dev/null
@@ -1,780 +0,0 @@
-//===-- llvm/Support/LLVMBuilder.h - Builder for LLVM Instrs ----*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file defines the LLVMBuilder class, which is used as a convenient way
-// to create LLVM instructions with a consistent and simplified interface.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_SUPPORT_LLVMBUILDER_H
-#define LLVM_SUPPORT_LLVMBUILDER_H
-
-#include "llvm/BasicBlock.h"
-#include "llvm/Instructions.h"
-#include "llvm/Constants.h"
-
-namespace llvm {
-
-/// LLVMBuilder - This provides a uniform API for creating instructions and
-/// inserting them into a basic block: either at the end of a BasicBlock, or
-/// at a specific iterator location in a block.
-///
-/// Note that the builder does not expose the full generality of LLVM
-/// instructions. For example, it cannot be used to create instructions with
-/// arbitrary names (specifically, names with nul characters in them) - It only
-/// supports nul-terminated C strings. For fully generic names, use
-/// I->setName(). For access to extra instruction properties, use the mutators
-/// (e.g. setVolatile) on the instructions after they have been created.
-class LLVMBuilder {
- BasicBlock *BB;
- BasicBlock::iterator InsertPt;
-public:
- LLVMBuilder() { ClearInsertionPoint(); }
- explicit LLVMBuilder(BasicBlock *TheBB) { SetInsertPoint(TheBB); }
- LLVMBuilder(BasicBlock *TheBB, BasicBlock::iterator IP) {
- SetInsertPoint(TheBB, IP);
- }
-
- //===--------------------------------------------------------------------===//
- // Builder configuration methods
- //===--------------------------------------------------------------------===//
-
- /// ClearInsertionPoint - Clear the insertion point: created instructions will
- /// not be inserted into a block.
- void ClearInsertionPoint() {
- BB = 0;
- }
-
- BasicBlock *GetInsertBlock() const { return BB; }
-
- /// SetInsertPoint - This specifies that created instructions should be
- /// appended to the end of the specified block.
- void SetInsertPoint(BasicBlock *TheBB) {
- BB = TheBB;
- InsertPt = BB->end();
- }
-
- /// SetInsertPoint - This specifies that created instructions should be
- /// inserted at the specified point.
- void SetInsertPoint(BasicBlock *TheBB, BasicBlock::iterator IP) {
- BB = TheBB;
- InsertPt = IP;
- }
-
- /// Insert - Insert and return the specified instruction.
- template
- InstTy *Insert(InstTy *I) const {
- InsertHelper(I);
- return I;
- }
-
- /// InsertHelper - Insert the specified instruction at the specified insertion
- /// point. This is split out of Insert so that it isn't duplicated for every
- /// template instantiation.
- void InsertHelper(Instruction *I) const {
- if (BB) BB->getInstList().insert(InsertPt, I);
- }
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Terminators
- //===--------------------------------------------------------------------===//
-
- /// CreateRetVoid - Create a 'ret void' instruction.
- ReturnInst *CreateRetVoid() {
- return Insert(ReturnInst::Create());
- }
-
- /// @verbatim
- /// CreateRet - Create a 'ret ' instruction.
- /// @endverbatim
- ReturnInst *CreateRet(Value *V) {
- return Insert(ReturnInst::Create(V));
- }
-
- ReturnInst *CreateRet(Value * const* retVals, unsigned N) {
- return Insert(ReturnInst::Create(retVals, N));
- }
-
- GetResultInst *CreateGetResult(Value *V, unsigned Index, const char *Name = "") {
- return Insert(new GetResultInst(V, Index, Name));
- }
-
- /// CreateBr - Create an unconditional 'br label X' instruction.
- BranchInst *CreateBr(BasicBlock *Dest) {
- return Insert(BranchInst::Create(Dest));
- }
-
- /// CreateCondBr - Create a conditional 'br Cond, TrueDest, FalseDest'
- /// instruction.
- BranchInst *CreateCondBr(Value *Cond, BasicBlock *True, BasicBlock *False) {
- return Insert(BranchInst::Create(True, False, Cond));
- }
-
- /// CreateSwitch - Create a switch instruction with the specified value,
- /// default dest, and with a hint for the number of cases that will be added
- /// (for efficient allocation).
- SwitchInst *CreateSwitch(Value *V, BasicBlock *Dest, unsigned NumCases = 10) {
- return Insert(SwitchInst::Create(V, Dest, NumCases));
- }
-
- /// CreateInvoke - Create an invoke instruction.
- template
- InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
- BasicBlock *UnwindDest, InputIterator ArgBegin,
- InputIterator ArgEnd, const char *Name = "") {
- return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest,
- ArgBegin, ArgEnd, Name));
- }
-
- UnwindInst *CreateUnwind() {
- return Insert(new UnwindInst());
- }
-
- UnreachableInst *CreateUnreachable() {
- return Insert(new UnreachableInst());
- }
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Binary Operators
- //===--------------------------------------------------------------------===//
-
- BinaryOperator *CreateAdd(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createAdd(LHS, RHS, Name));
- }
- BinaryOperator *CreateSub(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createSub(LHS, RHS, Name));
- }
- BinaryOperator *CreateMul(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createMul(LHS, RHS, Name));
- }
- BinaryOperator *CreateUDiv(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createUDiv(LHS, RHS, Name));
- }
- BinaryOperator *CreateSDiv(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createSDiv(LHS, RHS, Name));
- }
- BinaryOperator *CreateFDiv(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createFDiv(LHS, RHS, Name));
- }
- BinaryOperator *CreateURem(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createURem(LHS, RHS, Name));
- }
- BinaryOperator *CreateSRem(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createSRem(LHS, RHS, Name));
- }
- BinaryOperator *CreateFRem(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createFRem(LHS, RHS, Name));
- }
- BinaryOperator *CreateShl(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createShl(LHS, RHS, Name));
- }
- BinaryOperator *CreateLShr(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createLShr(LHS, RHS, Name));
- }
- BinaryOperator *CreateAShr(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createAShr(LHS, RHS, Name));
- }
- BinaryOperator *CreateAnd(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createAnd(LHS, RHS, Name));
- }
- BinaryOperator *CreateOr(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createOr(LHS, RHS, Name));
- }
- BinaryOperator *CreateXor(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::createXor(LHS, RHS, Name));
- }
-
- BinaryOperator *CreateBinOp(Instruction::BinaryOps Opc,
- Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(BinaryOperator::create(Opc, LHS, RHS, Name));
- }
-
- BinaryOperator *CreateNeg(Value *V, const char *Name = "") {
- return Insert(BinaryOperator::createNeg(V, Name));
- }
- BinaryOperator *CreateNot(Value *V, const char *Name = "") {
- return Insert(BinaryOperator::createNot(V, Name));
- }
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Memory Instructions
- //===--------------------------------------------------------------------===//
-
- MallocInst *CreateMalloc(const Type *Ty, Value *ArraySize = 0,
- const char *Name = "") {
- return Insert(new MallocInst(Ty, ArraySize, Name));
- }
- AllocaInst *CreateAlloca(const Type *Ty, Value *ArraySize = 0,
- const char *Name = "") {
- return Insert(new AllocaInst(Ty, ArraySize, Name));
- }
- FreeInst *CreateFree(Value *Ptr) {
- return Insert(new FreeInst(Ptr));
- }
- LoadInst *CreateLoad(Value *Ptr, const char *Name = 0) {
- return Insert(new LoadInst(Ptr, Name));
- }
- LoadInst *CreateLoad(Value *Ptr, bool isVolatile, const char *Name = 0) {
- return Insert(new LoadInst(Ptr, Name, isVolatile));
- }
- StoreInst *CreateStore(Value *Val, Value *Ptr, bool isVolatile = false) {
- return Insert(new StoreInst(Val, Ptr, isVolatile));
- }
- template
- GetElementPtrInst *CreateGEP(Value *Ptr, InputIterator IdxBegin,
- InputIterator IdxEnd, const char *Name = "") {
- return(Insert(GetElementPtrInst::Create(Ptr, IdxBegin, IdxEnd, Name)));
- }
- GetElementPtrInst *CreateGEP(Value *Ptr, Value *Idx, const char *Name = "") {
- return Insert(GetElementPtrInst::Create(Ptr, Idx, Name));
- }
- GetElementPtrInst *CreateStructGEP(Value *Ptr, unsigned Idx,
- const char *Name = "") {
- llvm::Value *Idxs[] = {
- ConstantInt::get(llvm::Type::Int32Ty, 0),
- ConstantInt::get(llvm::Type::Int32Ty, Idx)
- };
- return Insert(GetElementPtrInst::Create(Ptr, Idxs, Idxs+2, Name));
- }
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Cast/Conversion Operators
- //===--------------------------------------------------------------------===//
-
- TruncInst *CreateTrunc(Value *V, const Type *DestTy, const char *Name = "") {
- return Insert(new TruncInst(V, DestTy, Name));
- }
- ZExtInst *CreateZExt(Value *V, const Type *DestTy, const char *Name = "") {
- return Insert(new ZExtInst(V, DestTy, Name));
- }
- SExtInst *CreateSExt(Value *V, const Type *DestTy, const char *Name = "") {
- return Insert(new SExtInst(V, DestTy, Name));
- }
- FPToUIInst *CreateFPToUI(Value *V, const Type *DestTy, const char *Name = ""){
- return Insert(new FPToUIInst(V, DestTy, Name));
- }
- FPToSIInst *CreateFPToSI(Value *V, const Type *DestTy, const char *Name = ""){
- return Insert(new FPToSIInst(V, DestTy, Name));
- }
- UIToFPInst *CreateUIToFP(Value *V, const Type *DestTy, const char *Name = ""){
- return Insert(new UIToFPInst(V, DestTy, Name));
- }
- SIToFPInst *CreateSIToFP(Value *V, const Type *DestTy, const char *Name = ""){
- return Insert(new SIToFPInst(V, DestTy, Name));
- }
- FPTruncInst *CreateFPTrunc(Value *V, const Type *DestTy,
- const char *Name = "") {
- return Insert(new FPTruncInst(V, DestTy, Name));
- }
- FPExtInst *CreateFPExt(Value *V, const Type *DestTy, const char *Name = "") {
- return Insert(new FPExtInst(V, DestTy, Name));
- }
- PtrToIntInst *CreatePtrToInt(Value *V, const Type *DestTy,
- const char *Name = "") {
- return Insert(new PtrToIntInst(V, DestTy, Name));
- }
- IntToPtrInst *CreateIntToPtr(Value *V, const Type *DestTy,
- const char *Name = "") {
- return Insert(new IntToPtrInst(V, DestTy, Name));
- }
- BitCastInst *CreateBitCast(Value *V, const Type *DestTy,
- const char *Name = "") {
- return Insert(new BitCastInst(V, DestTy, Name));
- }
-
- CastInst *CreateCast(Instruction::CastOps Op, Value *V, const Type *DestTy,
- const char *Name = "") {
- return Insert(CastInst::create(Op, V, DestTy, Name));
- }
- CastInst *CreateIntCast(Value *V, const Type *DestTy, bool isSigned,
- const char *Name = "") {
- return Insert(CastInst::createIntegerCast(V, DestTy, isSigned, Name));
- }
-
-
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Compare Instructions
- //===--------------------------------------------------------------------===//
-
- ICmpInst *CreateICmpEQ(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_EQ, LHS, RHS, Name));
- }
- ICmpInst *CreateICmpNE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_NE, LHS, RHS, Name));
- }
- ICmpInst *CreateICmpUGT(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_UGT, LHS, RHS, Name));
- }
- ICmpInst *CreateICmpUGE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_UGE, LHS, RHS, Name));
- }
- ICmpInst *CreateICmpULT(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_ULT, LHS, RHS, Name));
- }
- ICmpInst *CreateICmpULE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_ULE, LHS, RHS, Name));
- }
- ICmpInst *CreateICmpSGT(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_SGT, LHS, RHS, Name));
- }
- ICmpInst *CreateICmpSGE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_SGE, LHS, RHS, Name));
- }
- ICmpInst *CreateICmpSLT(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_SLT, LHS, RHS, Name));
- }
- ICmpInst *CreateICmpSLE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new ICmpInst(ICmpInst::ICMP_SLE, LHS, RHS, Name));
- }
-
- FCmpInst *CreateFCmpOEQ(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_OEQ, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpOGT(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_OGT, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpOGE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_OGE, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpOLT(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_OLT, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpOLE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_OLE, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpONE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_ONE, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpORD(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_ORD, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpUNO(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_UNO, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpUEQ(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_UEQ, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpUGT(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_UGT, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpUGE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_UGE, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpULT(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_ULT, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpULE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_ULE, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmpUNE(Value *LHS, Value *RHS, const char *Name = "") {
- return Insert(new FCmpInst(FCmpInst::FCMP_UNE, LHS, RHS, Name));
- }
-
-
- ICmpInst *CreateICmp(ICmpInst::Predicate P, Value *LHS, Value *RHS,
- const char *Name = "") {
- return Insert(new ICmpInst(P, LHS, RHS, Name));
- }
- FCmpInst *CreateFCmp(FCmpInst::Predicate P, Value *LHS, Value *RHS,
- const char *Name = "") {
- return Insert(new FCmpInst(P, LHS, RHS, Name));
- }
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Other Instructions
- //===--------------------------------------------------------------------===//
-
- PHINode *CreatePHI(const Type *Ty, const char *Name = "") {
- return Insert(PHINode::Create(Ty, Name));
- }
-
- CallInst *CreateCall(Value *Callee, const char *Name = "") {
- return Insert(CallInst::Create(Callee, Name));
- }
- CallInst *CreateCall(Value *Callee, Value *Arg, const char *Name = "") {
- return Insert(CallInst::Create(Callee, Arg, Name));
- }
-
- template
- CallInst *CreateCall(Value *Callee, InputIterator ArgBegin,
- InputIterator ArgEnd, const char *Name = "") {
- return Insert(CallInst::Create(Callee, ArgBegin, ArgEnd, Name));
- }
-
- SelectInst *CreateSelect(Value *C, Value *True, Value *False,
- const char *Name = "") {
- return Insert(SelectInst::Create(C, True, False, Name));
- }
-
- VAArgInst *CreateVAArg(Value *List, const Type *Ty, const char *Name = "") {
- return Insert(new VAArgInst(List, Ty, Name));
- }
-
- ExtractElementInst *CreateExtractElement(Value *Vec, Value *Idx,
- const char *Name = "") {
- return Insert(new ExtractElementInst(Vec, Idx, Name));
- }
-
- InsertElementInst *CreateInsertElement(Value *Vec, Value *NewElt, Value *Idx,
- const char *Name = "") {
- return Insert(InsertElementInst::Create(Vec, NewElt, Idx, Name));
- }
-
- ShuffleVectorInst *CreateShuffleVector(Value *V1, Value *V2, Value *Mask,
- const char *Name = "") {
- return Insert(new ShuffleVectorInst(V1, V2, Mask, Name));
- }
-};
-
-/// LLVMFoldingBuilder - A version of LLVMBuilder that constant folds operands
-/// as they come in.
-class LLVMFoldingBuilder : public LLVMBuilder {
-
-public:
- LLVMFoldingBuilder() {}
- explicit LLVMFoldingBuilder(BasicBlock *TheBB)
- : LLVMBuilder(TheBB) {}
- LLVMFoldingBuilder(BasicBlock *TheBB, BasicBlock::iterator IP)
- : LLVMBuilder(TheBB, IP) {}
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Binary Operators
- //===--------------------------------------------------------------------===//
-
- Value *CreateAdd(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getAdd(LC, RC);
- return LLVMBuilder::CreateAdd(LHS, RHS, Name);
- }
-
- Value *CreateSub(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getSub(LC, RC);
- return LLVMBuilder::CreateSub(LHS, RHS, Name);
- }
-
- Value *CreateMul(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getMul(LC, RC);
- return LLVMBuilder::CreateMul(LHS, RHS, Name);
- }
-
- Value *CreateUDiv(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getUDiv(LC, RC);
- return LLVMBuilder::CreateUDiv(LHS, RHS, Name);
- }
-
- Value *CreateSDiv(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getSDiv(LC, RC);
- return LLVMBuilder::CreateSDiv(LHS, RHS, Name);
- }
-
- Value *CreateFDiv(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getFDiv(LC, RC);
- return LLVMBuilder::CreateFDiv(LHS, RHS, Name);
- }
-
- Value *CreateURem(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getURem(LC, RC);
- return LLVMBuilder::CreateURem(LHS, RHS, Name);
- }
-
- Value *CreateSRem(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getSRem(LC, RC);
- return LLVMBuilder::CreateSRem(LHS, RHS, Name);
- }
-
- Value *CreateFRem(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getFRem(LC, RC);
- return LLVMBuilder::CreateFRem(LHS, RHS, Name);
- }
-
- Value *CreateAnd(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getAnd(LC, RC);
- return LLVMBuilder::CreateAnd(LHS, RHS, Name);
- }
-
- Value *CreateOr(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getOr(LC, RC);
- return LLVMBuilder::CreateOr(LHS, RHS, Name);
- }
-
- Value *CreateXor(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getXor(LC, RC);
- return LLVMBuilder::CreateXor(LHS, RHS, Name);
- }
-
- Value *CreateShl(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getShl(LC, RC);
- return LLVMBuilder::CreateShl(LHS, RHS, Name);
- }
-
- Value *CreateLShr(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getLShr(LC, RC);
- return LLVMBuilder::CreateLShr(LHS, RHS, Name);
- }
-
- Value *CreateAShr(Value *LHS, Value *RHS, const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getAShr(LC, RC);
- return LLVMBuilder::CreateAShr(LHS, RHS, Name);
- }
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Memory Instructions
- //===--------------------------------------------------------------------===//
-
- template
- Value *CreateGEP(Value *Ptr, InputIterator IdxBegin,
- InputIterator IdxEnd, const char *Name = "") {
-
- if (Constant *PC = dyn_cast(Ptr)) {
- // Every index must be constant.
- InputIterator i;
- for (i = IdxBegin; i < IdxEnd; ++i)
- if (!dyn_cast(*i))
- break;
- if (i == IdxEnd)
- return ConstantExpr::getGetElementPtr(PC, &IdxBegin[0], IdxEnd - IdxBegin);
- }
- return LLVMBuilder::CreateGEP(Ptr, IdxBegin, IdxEnd, Name);
- }
- Value *CreateGEP(Value *Ptr, Value *Idx, const char *Name = "") {
- if (Constant *PC = dyn_cast(Ptr))
- if (Constant *IC = dyn_cast(Idx))
- return ConstantExpr::getGetElementPtr(PC, &IC, 1);
- return LLVMBuilder::CreateGEP(Ptr, Idx, Name);
- }
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Cast/Conversion Operators
- //===--------------------------------------------------------------------===//
-
- Value *CreateTrunc(Value *V, const Type *DestTy, const char *Name = "") {
- return CreateCast(Instruction::Trunc, V, DestTy, Name);
- }
- Value *CreateZExt(Value *V, const Type *DestTy, const char *Name = "") {
- return CreateCast(Instruction::ZExt, V, DestTy, Name);
- }
- Value *CreateSExt(Value *V, const Type *DestTy, const char *Name = "") {
- return CreateCast(Instruction::SExt, V, DestTy, Name);
- }
- Value *CreateFPToUI(Value *V, const Type *DestTy, const char *Name = ""){
- return CreateCast(Instruction::FPToUI, V, DestTy, Name);
- }
- Value *CreateFPToSI(Value *V, const Type *DestTy, const char *Name = ""){
- return CreateCast(Instruction::FPToSI, V, DestTy, Name);
- }
- Value *CreateUIToFP(Value *V, const Type *DestTy, const char *Name = ""){
- return CreateCast(Instruction::UIToFP, V, DestTy, Name);
- }
- Value *CreateSIToFP(Value *V, const Type *DestTy, const char *Name = ""){
- return CreateCast(Instruction::SIToFP, V, DestTy, Name);
- }
- Value *CreateFPTrunc(Value *V, const Type *DestTy,
- const char *Name = "") {
- return CreateCast(Instruction::FPTrunc, V, DestTy, Name);
- }
- Value *CreateFPExt(Value *V, const Type *DestTy, const char *Name = "") {
- return CreateCast(Instruction::FPExt, V, DestTy, Name);
- }
- Value *CreatePtrToInt(Value *V, const Type *DestTy,
- const char *Name = "") {
- return CreateCast(Instruction::PtrToInt, V, DestTy, Name);
- }
- Value *CreateIntToPtr(Value *V, const Type *DestTy,
- const char *Name = "") {
- return CreateCast(Instruction::IntToPtr, V, DestTy, Name);
- }
- Value *CreateBitCast(Value *V, const Type *DestTy,
- const char *Name = "") {
- return CreateCast(Instruction::BitCast, V, DestTy, Name);
- }
-
- Value *CreateCast(Instruction::CastOps Op, Value *V, const Type *DestTy,
- const char *Name = "") {
- if (V->getType() == DestTy)
- return V;
- if (Constant *VC = dyn_cast(V))
- return ConstantExpr::getCast(Op, VC, DestTy);
- return LLVMBuilder::CreateCast(Op, V, DestTy, Name);
- }
- Value *CreateIntCast(Value *V, const Type *DestTy, bool isSigned,
- const char *Name = "") {
- if (V->getType() == DestTy)
- return V;
- if (Constant *VC = dyn_cast(V))
- return ConstantExpr::getIntegerCast(VC, DestTy, isSigned);
- return LLVMBuilder::CreateIntCast(V, DestTy, isSigned, Name);
- }
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Compare Instructions
- //===--------------------------------------------------------------------===//
-
- Value *CreateICmpEQ(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_EQ, LHS, RHS, Name);
- }
- Value *CreateICmpNE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_NE, LHS, RHS, Name);
- }
- Value *CreateICmpUGT(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_UGT, LHS, RHS, Name);
- }
- Value *CreateICmpUGE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_UGE, LHS, RHS, Name);
- }
- Value *CreateICmpULT(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_ULT, LHS, RHS, Name);
- }
- Value *CreateICmpULE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_ULE, LHS, RHS, Name);
- }
- Value *CreateICmpSGT(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_SGT, LHS, RHS, Name);
- }
- Value *CreateICmpSGE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_SGE, LHS, RHS, Name);
- }
- Value *CreateICmpSLT(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_SLT, LHS, RHS, Name);
- }
- Value *CreateICmpSLE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateICmp(ICmpInst::ICMP_SLE, LHS, RHS, Name);
- }
-
- Value *CreateFCmpOEQ(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_OEQ, LHS, RHS, Name);
- }
- Value *CreateFCmpOGT(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_OGT, LHS, RHS, Name);
- }
- Value *CreateFCmpOGE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_OGE, LHS, RHS, Name);
- }
- Value *CreateFCmpOLT(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_OLT, LHS, RHS, Name);
- }
- Value *CreateFCmpOLE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_OLE, LHS, RHS, Name);
- }
- Value *CreateFCmpONE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_ONE, LHS, RHS, Name);
- }
- Value *CreateFCmpORD(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_ORD, LHS, RHS, Name);
- }
- Value *CreateFCmpUNO(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_UNO, LHS, RHS, Name);
- }
- Value *CreateFCmpUEQ(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_UEQ, LHS, RHS, Name);
- }
- Value *CreateFCmpUGT(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_UGT, LHS, RHS, Name);
- }
- Value *CreateFCmpUGE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_UGE, LHS, RHS, Name);
- }
- Value *CreateFCmpULT(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_ULT, LHS, RHS, Name);
- }
- Value *CreateFCmpULE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_ULE, LHS, RHS, Name);
- }
- Value *CreateFCmpUNE(Value *LHS, Value *RHS, const char *Name = "") {
- return CreateFCmp(FCmpInst::FCMP_UNE, LHS, RHS, Name);
- }
-
- Value *CreateICmp(ICmpInst::Predicate P, Value *LHS, Value *RHS,
- const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getCompare(P, LC, RC);
- return LLVMBuilder::CreateICmp(P, LHS, RHS, Name);
- }
-
- Value *CreateFCmp(FCmpInst::Predicate P, Value *LHS, Value *RHS,
- const char *Name = "") {
- if (Constant *LC = dyn_cast(LHS))
- if (Constant *RC = dyn_cast(RHS))
- return ConstantExpr::getCompare(P, LC, RC);
- return LLVMBuilder::CreateFCmp(P, LHS, RHS, Name);
- }
-
- //===--------------------------------------------------------------------===//
- // Instruction creation methods: Other Instructions
- //===--------------------------------------------------------------------===//
-
- Value *CreateSelect(Value *C, Value *True, Value *False,
- const char *Name = "") {
- if (Constant *CC = dyn_cast(C))
- if (Constant *TC = dyn_cast(True))
- if (Constant *FC = dyn_cast(False))
- return ConstantExpr::getSelect(CC, TC, FC);
- return LLVMBuilder::CreateSelect(C, True, False, Name);
- }
-
- Value *CreateExtractElement(Value *Vec, Value *Idx,
- const char *Name = "") {
- if (Constant *VC = dyn_cast(Vec))
- if (Constant *IC = dyn_cast(Idx))
- return ConstantExpr::getExtractElement(VC, IC);
- return LLVMBuilder::CreateExtractElement(Vec, Idx, Name);
- }
-
- Value *CreateInsertElement(Value *Vec, Value *NewElt, Value *Idx,
- const char *Name = "") {
- if (Constant *VC = dyn_cast(Vec))
- if (Constant *NC = dyn_cast(NewElt))
- if (Constant *IC = dyn_cast(Idx))
- return ConstantExpr::getInsertElement(VC, NC, IC);
- return LLVMBuilder::CreateInsertElement(Vec, NewElt, Idx, Name);
- }
-
- Value *CreateShuffleVector(Value *V1, Value *V2, Value *Mask,
- const char *Name = "") {
- if (Constant *V1C = dyn_cast(V1))
- if (Constant *V2C = dyn_cast(V2))
- if (Constant *MC = dyn_cast(Mask))
- return ConstantExpr::getShuffleVector(V1C, V2C, MC);
- return LLVMBuilder::CreateShuffleVector(V1, V2, Mask, Name);
- }
-};
-
-}
-
-#endif
diff --git a/lib/CodeGen/ShadowStackCollector.cpp b/lib/CodeGen/ShadowStackCollector.cpp
index 2a703d8e44f..d41e83c712d 100644
--- a/lib/CodeGen/ShadowStackCollector.cpp
+++ b/lib/CodeGen/ShadowStackCollector.cpp
@@ -31,7 +31,7 @@
#include "llvm/CodeGen/Collector.h"
#include "llvm/IntrinsicInst.h"
#include "llvm/Module.h"
-#include "llvm/Support/LLVMBuilder.h"
+#include "llvm/Support/IRBuilder.h"
using namespace llvm;
@@ -61,9 +61,9 @@ namespace {
Constant *GetFrameMap(Function &F);
const Type* GetConcreteStackEntryType(Function &F);
void CollectRoots(Function &F);
- static GetElementPtrInst *CreateGEP(LLVMBuilder &B, Value *BasePtr,
+ static GetElementPtrInst *CreateGEP(IRBuilder &B, Value *BasePtr,
int Idx1, const char *Name);
- static GetElementPtrInst *CreateGEP(LLVMBuilder &B, Value *BasePtr,
+ static GetElementPtrInst *CreateGEP(IRBuilder &B, Value *BasePtr,
int Idx1, int Idx2, const char *Name);
};
@@ -86,13 +86,13 @@ namespace {
// State.
int State;
Function::iterator StateBB, StateE;
- LLVMBuilder Builder;
+ IRBuilder Builder;
public:
EscapeEnumerator(Function &F, const char *N = "cleanup")
: F(F), CleanupBBName(N), State(0) {}
- LLVMBuilder *Next() {
+ IRBuilder *Next() {
switch (State) {
default:
return 0;
@@ -339,20 +339,28 @@ void ShadowStackCollector::CollectRoots(Function &F) {
}
GetElementPtrInst *
-ShadowStackCollector::CreateGEP(LLVMBuilder &B, Value *BasePtr,
+ShadowStackCollector::CreateGEP(IRBuilder &B, Value *BasePtr,
int Idx, int Idx2, const char *Name) {
Value *Indices[] = { ConstantInt::get(Type::Int32Ty, 0),
ConstantInt::get(Type::Int32Ty, Idx),
ConstantInt::get(Type::Int32Ty, Idx2) };
- return B.CreateGEP(BasePtr, Indices, Indices + 3, Name);
+ Value* Val = B.CreateGEP(BasePtr, Indices, Indices + 3, Name);
+
+ assert(isa(Val) && "Unexpected folded constant");
+
+ return dyn_cast(Val);
}
GetElementPtrInst *
-ShadowStackCollector::CreateGEP(LLVMBuilder &B, Value *BasePtr,
+ShadowStackCollector::CreateGEP(IRBuilder &B, Value *BasePtr,
int Idx, const char *Name) {
Value *Indices[] = { ConstantInt::get(Type::Int32Ty, 0),
ConstantInt::get(Type::Int32Ty, Idx) };
- return B.CreateGEP(BasePtr, Indices, Indices + 2, Name);
+ Value *Val = B.CreateGEP(BasePtr, Indices, Indices + 2, Name);
+
+ assert(isa(Val) && "Unexpected folded constant");
+
+ return dyn_cast(Val);
}
/// runOnFunction - Insert code to maintain the shadow stack.
@@ -371,7 +379,7 @@ bool ShadowStackCollector::performCustomLowering(Function &F) {
// Build the shadow stack entry at the very start of the function.
BasicBlock::iterator IP = F.getEntryBlock().begin();
- LLVMBuilder AtEntry(IP->getParent(), IP);
+ IRBuilder AtEntry(IP->getParent(), IP);
Instruction *StackEntry = AtEntry.CreateAlloca(ConcreteStackEntryTy, 0,
"gc_frame");
@@ -409,7 +417,7 @@ bool ShadowStackCollector::performCustomLowering(Function &F) {
// For each instruction that escapes...
EscapeEnumerator EE(F, "gc_cleanup");
- while (LLVMBuilder *AtExit = EE.Next()) {
+ while (IRBuilder *AtExit = EE.Next()) {
// Pop the entry from the shadow stack. Don't reuse CurrentHead from
// AtEntry, since that would make the value live for the entire function.
Instruction *EntryNextPtr2 = CreateGEP(*AtExit, StackEntry, 0, 0,
diff --git a/lib/VMCore/Core.cpp b/lib/VMCore/Core.cpp
index 8c9626af570..906397791ba 100644
--- a/lib/VMCore/Core.cpp
+++ b/lib/VMCore/Core.cpp
@@ -962,7 +962,7 @@ LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
/*===-- Instruction builders ----------------------------------------------===*/
LLVMBuilderRef LLVMCreateBuilder() {
- return wrap(new LLVMFoldingBuilder());
+ return wrap(new IRBuilder());
}
void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,