HomeSort by relevance Sort by last modified time
    Searched refs:getInt32Ty (Results 1 - 25 of 129) 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);
113 ConstantInt::get(Type::getInt32Ty(VMContext), Lang),
117 ConstantInt::get(Type::getInt32Ty(VMContext), RunTimeVer),
145 ConstantInt::get(Type::getInt32Ty(C), Line),
153 ConstantInt::get(Type::getInt32Ty(C), Line),
186 ConstantInt::get(Type::getInt32Ty(VMContext), Line),
225 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
229 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Flags;
230 ConstantInt::get(Type::getInt32Ty(VMContext), 0) // Encoding
253 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Lin
    [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(),
  /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);
VerifierTest.cpp 67 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 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()),
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 271 Type *Int32Ty = Type::getInt32Ty(EI.getContext());
300 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
306 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), i));
312 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()),
332 Mask[InsertedIdx] = UndefValue::get(Type::getInt32Ty(V->getContext()));
349 ConstantInt::get(Type::getInt32Ty(V->getContext()),
354 ConstantInt::get(Type::getInt32Ty(V->getContext()),
379 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
384 Mask.assign(NumElts, ConstantInt::get(Type::getInt32Ty(V->getContext()),0));
407 ConstantInt::get(Type::getInt32Ty(V->getContext())
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 202 ConstantInt *InvokeNoC = ConstantInt::get(Type::getInt32Ty(II->getContext()),
227 new StoreInst(Constant::getNullValue(Type::getInt32Ty(II->getContext())),
436 Value *Idx[] = { Constant::getNullValue(Type::getInt32Ty(F.getContext())),
437 ConstantInt::get(Type::getInt32Ty(F.getContext()), 1) };
462 AllocaInst *InvokeNum = new AllocaInst(Type::getInt32Ty(F.getContext()), 0,
464 new StoreInst(ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
484 Idx[1] = ConstantInt::get(Type::getInt32Ty(F.getContext()), 0);
537 Value *Idx[] = { Constant::getNullValue(Type::getInt32Ty(F.getContext())),
538 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0) };
543 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...]
ModuleUtils.cpp 28 IRB.getInt32Ty(), PointerType::getUnqual(FnTy), NULL);
  /art/compiler/llvm/
ir_builder.cc 122 ::llvm::ArrayType::get(getInt32Ty(), vreg_size),
runtime_support_builder_thumb2.cc 46 FunctionType* func_ty = FunctionType::get(/*Result=*/irb_.getInt32Ty(),

Completed in 399 milliseconds

1 2 3 4 5 6