HomeSort by relevance Sort by last modified time
    Searched refs:getInt32Ty (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 34 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
45 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
46 Value *Three = ConstantInt::get(Type::getInt32Ty(Context), 3);
  /external/llvm/lib/IR/
DIBuilder.cpp 29 return ConstantInt::get(Type::getInt32Ty(VMContext), Tag | LLVMDebugVersion);
96 Constant::getNullValue(Type::getInt32Ty(VMContext)),
97 ConstantInt::get(Type::getInt32Ty(VMContext), Lang),
102 ConstantInt::get(Type::getInt32Ty(VMContext), RunTimeVer),
152 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
156 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Flags;
157 ConstantInt::get(Type::getInt32Ty(VMContext), 0) // Encoding
175 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
179 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Flags;
180 ConstantInt::get(Type::getInt32Ty(VMContext), Encoding
    [all...]
ValueTypes.cpp 184 case MVT::i32: return Type::getInt32Ty(Context);
212 case MVT::v1i32: return VectorType::get(Type::getInt32Ty(Context), 1);
213 case MVT::v2i32: return VectorType::get(Type::getInt32Ty(Context), 2);
214 case MVT::v4i32: return VectorType::get(Type::getInt32Ty(Context), 4);
215 case MVT::v8i32: return VectorType::get(Type::getInt32Ty(Context), 8);
216 case MVT::v16i32: return VectorType::get(Type::getInt32Ty(Context), 16);
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 33 Constant *InitFn = M.getOrInsertFunction(FnName, Type::getInt32Ty(Context),
34 Type::getInt32Ty(Context),
36 Type::getInt32Ty(Context),
42 Args[0] = Constant::getNullValue(Type::getInt32Ty(Context));
51 Constant::getNullValue(Type::getInt32Ty(Context)));
62 Args[3] = ConstantInt::get(Type::getInt32Ty(Context), NumElements);
94 Type::getInt32Ty(Context), true);
96 CastInst::Create(opcode, AI, Type::getInt32Ty(Context),
119 Indices[0] = Constant::getNullValue(Type::getInt32Ty(Context));
120 Indices[1] = ConstantInt::get(Type::getInt32Ty(Context), CounterNum)
    [all...]
EdgeProfiling.cpp 77 Type *ATy = ArrayType::get(Type::getInt32Ty(M.getContext()), NumEdges);
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 65 cast<Function>(M->getOrInsertFunction("add1", Type::getInt32Ty(Context),
66 Type::getInt32Ty(Context),
97 cast<Function>(M->getOrInsertFunction("foo", Type::getInt32Ty(Context),
  /external/llvm/unittests/Transforms/Utils/
Local.cpp 29 PHINode *phi = builder.CreatePHI(Type::getInt32Ty(C), 2);
46 phi = builder.CreatePHI(Type::getInt32Ty(C), 0);
51 phi = builder.CreatePHI(Type::getInt32Ty(C), 0);
IntegerDivision.cpp 27 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty());
28 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
57 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty());
58 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
87 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty());
88 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
117 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty());
118 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
Cloning.cpp 57 V = new Argument(Type::getInt32Ty(context));
129 Constant *Z = Constant::getNullValue(Type::getInt32Ty(context));
140 V = new Argument(Type::getInt32Ty(context));
  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 46 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
59 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
72 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
83 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global2");
100 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
111 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global2");
120 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 43 cast<Function>(M->getOrInsertFunction("fib", Type::getInt32Ty(Context),
44 Type::getInt32Ty(Context),
51 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
52 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 39 Type::getInt32Ty(M->getContext()),
40 Type::getInt32Ty(M->getContext()),
48 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1);
70 Type::getInt32Ty(M->getContext()),
71 Type::getInt32Ty(M->getContext()),
78 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1);
79 Value *Two = ConstantInt::get(Type::getInt32Ty(M->getContext()), 2);
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 146 Type::getInt32Ty(C), NULL);
150 FunctionType::get(Type::getInt32Ty(C), true));
217 Type *Int32Ty = Type::getInt32Ty(F.getContext());
252 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
253 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0)
278 EltTys.push_back(Type::getInt32Ty(M.getContext()));
280 EltTys.push_back(Type::getInt32Ty(M.getContext()));
351 Value *Indices[] = { ConstantInt::get(Type::getInt32Ty(Context), 0),
352 ConstantInt::get(Type::getInt32Ty(Context), Idx),
353 ConstantInt::get(Type::getInt32Ty(Context), Idx2) }
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2RegisterInfo.cpp 45 Type::getInt32Ty(MBB.getParent()->getFunction()->getContext()), Val);
  /external/llvm/unittests/IR/
MetadataTest.cpp 118 Constant *C = ConstantInt::get(Type::getInt32Ty(getGlobalContext()), 1);
119 Instruction *I = new BitCastInst(C, Type::getInt32Ty(getGlobalContext()));
132 Constant *C = ConstantInt::get(Type::getInt32Ty(Context), 1);
133 Constant *C2 = ConstantInt::get(Type::getInt32Ty(Context), 2);
  /external/llvm/examples/BrainF/
BrainF.cpp 58 Type *Tys[] = { Type::getInt8PtrTy(C), Type::getInt32Ty(C) };
64 getOrInsertFunction("getchar", IntegerType::getInt32Ty(C), NULL));
68 getOrInsertFunction("putchar", IntegerType::getInt32Ty(C),
69 IntegerType::getInt32Ty(C), NULL));
83 Type* IntPtrTy = IntegerType::getInt32Ty(C);
150 getOrInsertFunction("puts", IntegerType::getInt32Ty(C),
158 Constant *zero_32 = Constant::getNullValue(IntegerType::getInt32Ty(C));
224 CreateSExt(tape_0, IntegerType::getInt32Ty(C), tapereg);
BrainFDriver.cpp 60 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()),
61 IntegerType::getInt32Ty(mod->getContext()),
  /external/llvm/unittests/Support/
ValueHandleTest.cpp 28 ConstantV(ConstantInt::get(Type::getInt32Ty(getGlobalContext()), 0)),
29 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))) {
46 EXPECT_EQ(Type::getInt32Ty(getGlobalContext()), WVH->getType());
47 EXPECT_EQ(Type::getInt32Ty(getGlobalContext()), (*WVH).getType());
201 EXPECT_EQ(Type::getInt32Ty(getGlobalContext()), CVH->getType());
202 EXPECT_EQ(Type::getInt32Ty(getGlobalContext()), (*CVH).getType());
303 getValPtr()->replaceAllUsesWith(Constant::getNullValue(Type::getInt32Ty(getGlobalContext())));
320 Constant::getNullValue(Type::getInt32Ty(getGlobalContext()))));
323 EXPECT_EQ(Constant::getNullValue(Type::getInt32Ty(getGlobalContext())), RVH.AURWArgument);
324 EXPECT_EQ(Constant::getNullValue(Type::getInt32Ty(getGlobalContext()))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reg2Mem.cpp 86 new BitCastInst(Constant::getNullValue(Type::getInt32Ty(F.getContext())),
87 Type::getInt32Ty(F.getContext()),
  /frameworks/compile/libbcc/lib/AndroidBitcode/ARM/
ARMABCExpandVAArg.cpp 61 builder.CreatePtrToInt(addr, llvm::Type::getInt32Ty(*mContext));
72 llvm::ConstantInt::get(llvm::Type::getInt32Ty(*mContext), offset),
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 196 Type *Int32Ty = Type::getInt32Ty(EI.getContext());
225 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
231 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), i));
237 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()),
257 Mask[InsertedIdx] = UndefValue::get(Type::getInt32Ty(V->getContext()));
274 ConstantInt::get(Type::getInt32Ty(V->getContext()),
279 ConstantInt::get(Type::getInt32Ty(V->getContext()),
304 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
309 Mask.assign(NumElts, ConstantInt::get(Type::getInt32Ty(V->getContext()),0));
332 ConstantInt::get(Type::getInt32Ty(V->getContext())
    [all...]
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 27 IRB.getInt32Ty(), PointerType::getUnqual(FnTy), NULL);
LowerInvoke.cpp 205 ConstantInt *InvokeNoC = ConstantInt::get(Type::getInt32Ty(II->getContext()),
230 new StoreInst(Constant::getNullValue(Type::getInt32Ty(II->getContext())),
438 Value *Idx[] = { Constant::getNullValue(Type::getInt32Ty(F.getContext())),
439 ConstantInt::get(Type::getInt32Ty(F.getContext()), 1) };
464 AllocaInst *InvokeNum = new AllocaInst(Type::getInt32Ty(F.getContext()), 0,
466 new StoreInst(ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
486 Idx[1] = ConstantInt::get(Type::getInt32Ty(F.getContext()), 0);
539 Value *Idx[] = { Constant::getNullValue(Type::getInt32Ty(F.getContext())),
540 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0) };
545 Idx[1] = ConstantInt::get(Type::getInt32Ty(F.getContext()), 1)
    [all...]
BuildLibCalls.cpp 106 Type *I32Ty = B.getInt32Ty();
137 B.getInt32Ty(),
247 B.getInt32Ty(),
276 B.getInt32Ty(),
325 Value *PutChar = M->getOrInsertFunction("putchar", B.getInt32Ty(),
326 B.getInt32Ty(), NULL);
329 B.getInt32Ty(),
354 B.getInt32Ty(),
379 B.getInt32Ty(),
380 B.getInt32Ty(), File->getType()
    [all...]
  /frameworks/compile/libbcc/lib/AndroidBitcode/X86/
X86ABCExpandVAArg.cpp 59 llvm::ConstantInt::get(llvm::Type::getInt32Ty(*mContext), offset),

Completed in 883 milliseconds

1 2 3 4 5