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

1 2 3 4 5 6

  /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);
127 ConstantInt::get(Type::getInt32Ty(VMContext), Lang),
131 ConstantInt::get(Type::getInt32Ty(VMContext), RunTimeVer),
138 ConstantInt::get(Type::getInt32Ty(VMContext), Kind)
166 ConstantInt::get(Type::getInt32Ty(C), Line),
174 ConstantInt::get(Type::getInt32Ty(C), Line),
245 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
249 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Flags;
250 ConstantInt::get(Type::getInt32Ty(VMContext), 0) // Encoding
273 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Lin
    [all...]
ValueTypes.cpp 189 case MVT::i32: return Type::getInt32Ty(Context);
218 case MVT::v1i32: return VectorType::get(Type::getInt32Ty(Context), 1);
219 case MVT::v2i32: return VectorType::get(Type::getInt32Ty(Context), 2);
220 case MVT::v4i32: return VectorType::get(Type::getInt32Ty(Context), 4);
221 case MVT::v8i32: return VectorType::get(Type::getInt32Ty(Context), 8);
222 case MVT::v16i32: return VectorType::get(Type::getInt32Ty(Context), 16);
  /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 28 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty());
29 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
58 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty());
59 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
88 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty());
89 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
118 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty());
119 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 45 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
58 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
71 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
82 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global2");
99 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global1");
110 NewExtGlobal(Type::getInt32Ty(getGlobalContext()), "Global2");
119 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 147 Type::getInt32Ty(C), NULL);
151 FunctionType::get(Type::getInt32Ty(C), true));
218 Type *Int32Ty = Type::getInt32Ty(F.getContext());
253 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
254 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0)
279 EltTys.push_back(Type::getInt32Ty(M.getContext()));
281 EltTys.push_back(Type::getInt32Ty(M.getContext()));
352 Value *Indices[] = { ConstantInt::get(Type::getInt32Ty(Context), 0),
353 ConstantInt::get(Type::getInt32Ty(Context), Idx),
354 ConstantInt::get(Type::getInt32Ty(Context), Idx2) }
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2RegisterInfo.cpp 46 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);
ValueHandleTest.cpp 27 ConstantV(ConstantInt::get(Type::getInt32Ty(getGlobalContext()), 0)),
28 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))) {
45 EXPECT_EQ(Type::getInt32Ty(getGlobalContext()), WVH->getType());
46 EXPECT_EQ(Type::getInt32Ty(getGlobalContext()), (*WVH).getType());
200 EXPECT_EQ(Type::getInt32Ty(getGlobalContext()), CVH->getType());
201 EXPECT_EQ(Type::getInt32Ty(getGlobalContext()), (*CVH).getType());
302 getValPtr()->replaceAllUsesWith(Constant::getNullValue(Type::getInt32Ty(getGlobalContext())));
319 Constant::getNullValue(Type::getInt32Ty(getGlobalContext()))));
322 EXPECT_EQ(Constant::getNullValue(Type::getInt32Ty(getGlobalContext())), RVH.AURWArgument);
323 EXPECT_EQ(Constant::getNullValue(Type::getInt32Ty(getGlobalContext()))
    [all...]
ValueTest.cpp 50 Type *Int32Ty = Type::getInt32Ty(Ctx);
VerifierTest.cpp 50 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
  /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 61 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()),
62 IntegerType::getInt32Ty(mod->getContext()),
  /external/clang/lib/CodeGen/
CGLoopInfo.cpp 35 ConstantInt::get(Type::getInt32Ty(Ctx),
43 ConstantInt::get(Type::getInt32Ty(Ctx),
  /external/llvm/lib/Transforms/Scalar/
Reg2Mem.cpp 86 new BitCastInst(Constant::getNullValue(Type::getInt32Ty(F.getContext())),
87 Type::getInt32Ty(F.getContext()),
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 39 auto IntType = Type::getInt32Ty(C);
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 107 Type *I32Ty = B.getInt32Ty();
138 B.getInt32Ty(),
248 B.getInt32Ty(),
277 B.getInt32Ty(),
354 Value *PutChar = M->getOrInsertFunction("putchar", B.getInt32Ty(),
355 B.getInt32Ty(), NULL);
358 B.getInt32Ty(),
383 B.getInt32Ty(),
408 B.getInt32Ty(),
409 B.getInt32Ty(), File->getType()
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 275 Type *Int32Ty = Type::getInt32Ty(EI.getContext());
336 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
342 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), i));
348 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()),
368 Mask[InsertedIdx] = UndefValue::get(Type::getInt32Ty(V->getContext()));
385 ConstantInt::get(Type::getInt32Ty(V->getContext()),
390 ConstantInt::get(Type::getInt32Ty(V->getContext()),
421 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
427 Mask.assign(NumElts, ConstantInt::get(Type::getInt32Ty(V->getContext()),0));
454 Mask[i] = ConstantInt::get(Type::getInt32Ty(V->getContext()), i)
    [all...]
  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 59 v4i32 = VectorType::get(Type::getInt32Ty(M.getContext()), 4);
119 Type::getInt32Ty(I.getContext())){
  /art/compiler/llvm/
ir_builder.cc 122 ::llvm::ArrayType::get(getInt32Ty(), vreg_size),
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 27 Type::getInt8PtrTy(Ctx), Type::getInt32Ty(Ctx), false /*=isVarArg*/);
49 ConstantInt *One = ConstantInt::get(Type::getInt32Ty(Ctx), 1);
73 GEPIndices.push_back(ConstantInt::get(Type::getInt32Ty(Ctx), 0));

Completed in 1196 milliseconds

1 2 3 4 5 6