HomeSort by: relevance | last modified time | path
    Searched refs:getInt32Ty (Results 1 - 25 of 177) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/apache2/llvm/dist/llvm/examples/ModuleMaker/
ModuleMaker.cpp 39 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
50 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
51 Value *Three = ConstantInt::get(Type::getInt32Ty(Context), 3);
  /src/external/apache2/llvm/dist/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 74 Function::Create(FunctionType::get(Type::getInt32Ty(Context),
75 {Type::getInt32Ty(Context)}, false),
105 Function::Create(FunctionType::get(Type::getInt32Ty(Context), {}, false),
  /src/external/apache2/llvm/dist/llvm/examples/Fibonacci/
fibonacci.cpp 54 FunctionType *FibFTy = FunctionType::get(Type::getInt32Ty(Context),
55 {Type::getInt32Ty(Context)}, false);
63 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
64 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
  /src/external/apache2/llvm/dist/llvm/examples/HowToUseLLJIT/
HowToUseLLJIT.cpp 48 Function::Create(FunctionType::get(Type::getInt32Ty(*Context),
49 {Type::getInt32Ty(*Context)}, false),
  /src/external/apache2/llvm/dist/llvm/examples/ParallelJIT/
ParallelJIT.cpp 55 Function::Create(FunctionType::get(Type::getInt32Ty(Context),
56 {Type::getInt32Ty(Context)}, false),
64 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
85 FunctionType *FibFTy = FunctionType::get(Type::getInt32Ty(Context),
86 {Type::getInt32Ty(Context)}, false);
94 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
95 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
  /src/external/apache2/llvm/dist/llvm/examples/BrainF/
BrainF.cpp 70 Type *Tys[] = { Type::getInt8PtrTy(C), Type::getInt32Ty(C) };
76 module->getOrInsertFunction("getchar", IntegerType::getInt32Ty(C));
80 "putchar", IntegerType::getInt32Ty(C), IntegerType::getInt32Ty(C));
93 Type* IntPtrTy = IntegerType::getInt32Ty(C);
155 "puts", IntegerType::getInt32Ty(C),
163 Constant *zero_32 = Constant::getNullValue(IntegerType::getInt32Ty(C));
231 CreateSExt(tape_0, IntegerType::getInt32Ty(C), tapereg);
BrainFDriver.cpp 76 Type::getInt32Ty(mod->getContext()),
77 {Type::getInt32Ty(mod->getContext()),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
EscapeEnumerator.cpp 27 FunctionType::get(Type::getInt32Ty(C), true));
73 Type *ExnTy = StructType::get(Type::getInt8PtrTy(C), Type::getInt32Ty(C));
SanitizerStats.cpp 38 Type::getInt32Ty(M->getContext()),
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2),
78 IntegerType *Int32Ty = Type::getInt32Ty(M->getContext());
AMDGPUEmitPrintf.cpp 74 auto Int32Ty = Builder.getInt32Ty();
166 auto Int32Ty = Builder.getInt32Ty();
242 return Builder.CreateTrunc(Desc, Builder.getInt32Ty());
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ShadowStackGCLowering.cpp 121 Type *Int32Ty = Type::getInt32Ty(F.getContext());
155 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
156 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0)};
190 EltTys.push_back(Type::getInt32Ty(M.getContext()));
192 EltTys.push_back(Type::getInt32Ty(M.getContext()));
265 Value *Indices[] = {ConstantInt::get(Type::getInt32Ty(Context), 0),
266 ConstantInt::get(Type::getInt32Ty(Context), Idx),
267 ConstantInt::get(Type::getInt32Ty(Context), Idx2)};
278 Value *Indices[] = {ConstantInt::get(Type::getInt32Ty(Context), 0),
279 ConstantInt::get(Type::getInt32Ty(Context), Idx)}
    [all...]
ValueTypes.cpp 190 case MVT::i32: return Type::getInt32Ty(Context);
263 return FixedVectorType::get(Type::getInt32Ty(Context), 1);
265 return FixedVectorType::get(Type::getInt32Ty(Context), 2);
267 return FixedVectorType::get(Type::getInt32Ty(Context), 3);
269 return FixedVectorType::get(Type::getInt32Ty(Context), 4);
271 return FixedVectorType::get(Type::getInt32Ty(Context), 5);
273 return FixedVectorType::get(Type::getInt32Ty(Context), 8);
275 return FixedVectorType::get(Type::getInt32Ty(Context), 16);
277 return FixedVectorType::get(Type::getInt32Ty(Context), 32);
279 return FixedVectorType::get(Type::getInt32Ty(Context), 64)
    [all...]
WasmEHPrepare.cpp 152 LPadContextTy = StructType::get(IRB.getInt32Ty(), // lpad_index
154 IRB.getInt32Ty() // selector
258 "_Unwind_CallPersonality", IRB.getInt32Ty(), IRB.getInt8PtrTy());
351 IRB.CreateLoad(IRB.getInt32Ty(), SelectorField, "selector");
ExpandMemCmp.cpp 339 Type::getInt32Ty(CI->getContext()), OffsetBytes);
456 Value *Zero = ConstantInt::get(Type::getInt32Ty(CI->getContext()), 0);
514 Value *Zero = ConstantInt::get(Type::getInt32Ty(CI->getContext()), 0);
528 Value *Res = ConstantInt::get(Type::getInt32Ty(CI->getContext()), 1);
543 Builder.CreateSelect(Cmp, ConstantInt::get(Builder.getInt32Ty(), -1),
544 ConstantInt::get(Builder.getInt32Ty(), 1));
565 PhiRes = Builder.CreatePHI(Type::getInt32Ty(CI->getContext()), 2, "phi.res");
587 return Builder.CreateZExt(Cmp, Type::getInt32Ty(CI->getContext()));
600 getLoadPair(LoadSizeType, NeedsBSwap, Builder.getInt32Ty(),
615 Value *ZextUGT = Builder.CreateZExt(CmpUGT, Builder.getInt32Ty());
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
Reg2Mem.cpp 67 Constant::getNullValue(Type::getInt32Ty(F.getContext())),
68 Type::getInt32Ty(F.getContext()), "reg2mem alloca point", &*I);
  /src/external/apache2/llvm/dist/clang/tools/clang-offload-wrapper/
ClangOffloadWrapper.cpp 77 return Type::getInt32Ty(C);
95 Type::getInt32Ty(C), Type::getInt32Ty(C));
127 DescTy = StructType::create("__tgt_bin_desc", Type::getInt32Ty(C),
240 ConstantInt::get(Type::getInt32Ty(C), ImagesInits.size()), ImagesB,
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLowerEmscriptenEHSjLj.cpp 577 Value *ThrewValue = IRB.CreateLoad(IRB.getInt32Ty(), ThrewValueGV,
612 PHINode *LabelPHI = IRB.CreatePHI(IRB.getInt32Ty(), 2, "label");
706 ThrewValueGV = getGlobalVariable(M, IRB.getInt32Ty(), TM, "__threwValue");
708 FunctionType::get(IRB.getInt32Ty(), false), "getTempRet0", &M);
710 FunctionType::get(IRB.getVoidTy(), IRB.getInt32Ty(), false),
726 FunctionType::get(IRB.getInt32Ty(), IRB.getInt8PtrTy(), false);
742 IRB.getVoidTy(), {getAddrIntType(&M), IRB.getInt32Ty()}, false);
752 {SetjmpFTy->getParamType(0), IRB.getInt32Ty(),
753 Type::getInt32PtrTy(C), IRB.getInt32Ty()},
759 IRB.getInt32Ty(),
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
SanitizerMetadata.cpp 100 llvm::Type::getInt32Ty(VMContext), PLoc.getLine())),
102 llvm::Type::getInt32Ty(VMContext), PLoc.getColumn())),
CGOpenCLRuntime.cpp 101 llvm::Type *Int32Ty = llvm::IntegerType::getInt32Ty(CGM.getLLVMContext());
111 llvm::Type *Int32Ty = llvm::IntegerType::getInt32Ty(CGM.getLLVMContext());
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonGenExtract.cpp 121 CSR = ConstantInt::get(Type::getInt32Ty(Ctx), 0);
130 CSL = ConstantInt::get(Type::getInt32Ty(Ctx), 0);
137 CSL = ConstantInt::get(Type::getInt32Ty(Ctx), 0);
  /src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 1085 argTypes.push_back(builder.getInt32Ty());
1315 llvm::Type::getInt32Ty(context), i),
1348 unwindArgTypes.push_back(builder.getInt32Ty());
1407 theSwitch->addCase(llvm::ConstantInt::get(llvm::Type::getInt32Ty(context),
1614 TypeArray(builder.getInt32Ty()));
1618 builder.getInt32Ty()
1671 structVals.push_back(llvm::ConstantInt::get(builder.getInt32Ty(), i));
1699 argTypes.push_back(builder.getInt32Ty());
1755 argTypes.push_back(builder.getInt32Ty());
1791 argTypes.push_back(builder.getInt32Ty());
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPrintfRuntimeBinding.cpp 150 Type *I32Ty = Type::getInt32Ty(Ctx);
218 llvm::Type *ResType = llvm::Type::getInt32Ty(Ctx);
323 Type *SizetTy = Type::getInt32Ty(Ctx);
396 Type *Int32Ty = Type::getInt32Ty(Ctx);
495 IType = Type::getInt32Ty(ArgType->getContext());
507 IType = Type::getInt32Ty(ArgType->getContext());
AMDGPUAnnotateUniformValues.cpp 115 Type::getInt32Ty(Ptr->getContext()), APInt(64, 0));
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 111 ConstantInt::get(Type::getInt32Ty(Context), NumLoads);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 711 FunctionType *FTy = FunctionType::get(Builder.getInt32Ty(), {}, false);
1069 Type::getInt32Ty(*Ctx), // uint32_t version
1070 Type::getInt32Ty(*Ctx), // uint32_t checksum
1082 Type::getInt32Ty(*Ctx), // uint32_t ident
1083 Type::getInt32Ty(*Ctx), // uint32_t func_checksum
1084 Type::getInt32Ty(*Ctx), // uint32_t cfg_checksum
1098 Type::getInt32Ty(*Ctx), // uint32_t num_counters
1146 {Builder.getInt8PtrTy(), Builder.getInt32Ty(), Builder.getInt32Ty()},
1149 {Builder.getInt32Ty(), Builder.getInt32Ty(), Builder.getInt32Ty()}
    [all...]

Completed in 54 milliseconds

1 2 3 4 5 6 7 8