Searched refs:getInt32Ty (Results 1 - 25 of 147) sorted by relevance

123456

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DValueTypes.cpp149 case MVT::i32: return Type::getInt32Ty(Context);
188 case MVT::v1i32: return VectorType::get(Type::getInt32Ty(Context), 1);
189 case MVT::v2i32: return VectorType::get(Type::getInt32Ty(Context), 2);
190 case MVT::v3i32: return VectorType::get(Type::getInt32Ty(Context), 3);
191 case MVT::v4i32: return VectorType::get(Type::getInt32Ty(Context), 4);
192 case MVT::v5i32: return VectorType::get(Type::getInt32Ty(Context), 5);
193 case MVT::v8i32: return VectorType::get(Type::getInt32Ty(Context), 8);
194 case MVT::v16i32: return VectorType::get(Type::getInt32Ty(Context), 16);
195 case MVT::v32i32: return VectorType::get(Type::getInt32Ty(Context), 32);
196 case MVT::v64i32: return VectorType::get(Type::getInt32Ty(Contex
[all...]
H A DShadowStackGCLowering.cpp117 Type *Int32Ty = Type::getInt32Ty(F.getContext());
151 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
152 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0)};
186 EltTys.push_back(Type::getInt32Ty(M.getContext()));
188 EltTys.push_back(Type::getInt32Ty(M.getContext()));
261 Value *Indices[] = {ConstantInt::get(Type::getInt32Ty(Context), 0),
262 ConstantInt::get(Type::getInt32Ty(Context), Idx),
263 ConstantInt::get(Type::getInt32Ty(Context), Idx2)};
274 Value *Indices[] = {ConstantInt::get(Type::getInt32Ty(Context), 0),
275 ConstantInt::get(Type::getInt32Ty(Contex
[all...]
H A DWasmEHPrepare.cpp146 LPadContextTy = StructType::get(IRB.getInt32Ty(), // lpad_index
148 IRB.getInt32Ty() // selector
252 "_Unwind_CallPersonality", IRB.getInt32Ty(), IRB.getInt8PtrTy());
343 IRB.CreateLoad(IRB.getInt32Ty(), SelectorField, "selector");
H A DExpandMemCmp.cpp294 LoadSrc1 = Builder.CreateZExt(LoadSrc1, Type::getInt32Ty(CI->getContext()));
295 LoadSrc2 = Builder.CreateZExt(LoadSrc2, Type::getInt32Ty(CI->getContext()));
424 Value *Zero = ConstantInt::get(Type::getInt32Ty(CI->getContext()), 0);
495 Value *Zero = ConstantInt::get(Type::getInt32Ty(CI->getContext()), 0);
509 Value *Res = ConstantInt::get(Type::getInt32Ty(CI->getContext()), 1);
522 Builder.CreateSelect(Cmp, ConstantInt::get(Builder.getInt32Ty(), -1),
523 ConstantInt::get(Builder.getInt32Ty(), 1));
542 PhiRes = Builder.CreatePHI(Type::getInt32Ty(CI->getContext()), 2, "phi.res");
564 return Builder.CreateZExt(Cmp, Type::getInt32Ty(CI->getContext()));
594 LoadSrc1 = Builder.CreateZExt(LoadSrc1, Builder.getInt32Ty());
[all...]
H A DSjLjEHPrepare.cpp87 Type *Int32Ty = Type::getInt32Ty(M.getContext());
107 Type *Int32Ty = Type::getInt32Ty(I->getContext());
116 ConstantInt::get(Type::getInt32Ty(I->getContext()), Number);
193 Type *Int32Ty = Type::getInt32Ty(F.getContext());
421 ConstantInt::get(Type::getInt32Ty(F.getContext()), I + 1);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEscapeEnumerator.cpp26 FunctionType::get(Type::getInt32Ty(C), true));
69 Type *ExnTy = StructType::get(Type::getInt8PtrTy(C), Type::getInt32Ty(C));
H A DSanitizerStats.cpp38 Type::getInt32Ty(M->getContext()),
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2),
78 IntegerType *Int32Ty = Type::getInt32Ty(M->getContext());
H A DBuildLibCalls.cpp863 Type *I32Ty = B.getInt32Ty();
872 LibFunc_strncmp, B.getInt32Ty(),
934 {B.getInt8PtrTy(), B.getInt32Ty(), DL.getIntPtrType(Context)},
942 LibFunc_memcmp, B.getInt32Ty(),
951 LibFunc_bcmp, B.getInt32Ty(),
960 {B.getInt8PtrTy(), B.getInt8PtrTy(), B.getInt32Ty(), Len->getType()},
969 return emitLibCall(LibFunc_snprintf, B.getInt32Ty(),
979 return emitLibCall(LibFunc_sprintf, B.getInt32Ty(),
1015 LibFunc_vsnprintf, B.getInt32Ty(),
1022 return emitLibCall(LibFunc_vsprintf, B.getInt32Ty(),
[all...]
H A DEntryExitInstrumenter.cpp48 ArrayRef<Value *>(ConstantInt::get(Type::getInt32Ty(C), 0)), "",
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp319 dyn_cast<GlobalVariable>(M.getOrInsertGlobal(Name, IRB.getInt32Ty()));
440 IRB.CreateLoad(IRB.getInt32Ty(), ThrewGV, ThrewGV->getName() + ".val");
555 Value *ThrewValue = IRB.CreateLoad(IRB.getInt32Ty(), ThrewValueGV,
568 Value *LoadedThrew = IRB.CreateLoad(IRB.getInt32Ty(), ThrewInt,
590 PHINode *LabelPHI = IRB.CreatePHI(IRB.getInt32Ty(), 2, "label");
643 Function::Create(FunctionType::get(IRB.getInt32Ty(), false),
646 FunctionType::get(IRB.getVoidTy(), IRB.getInt32Ty(), false),
663 FunctionType::get(IRB.getInt32Ty(), IRB.getInt8PtrTy(), false);
692 IRB.getInt32Ty(), Type::getInt32PtrTy(C),
693 IRB.getInt32Ty()};
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DReg2Mem.cpp87 Constant::getNullValue(Type::getInt32Ty(F.getContext())),
88 Type::getInt32Ty(F.getContext()), "reg2mem alloca point", &*I);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DSanitizerMetadata.cpp99 llvm::Type::getInt32Ty(VMContext), PLoc.getLine())),
101 llvm::Type::getInt32Ty(VMContext), PLoc.getColumn())),
H A DCGGPUBuiltin.cpp27 llvm::Type::getInt32Ty(M.getContext()), ArgTypes, false);
H A DCGOpenCLRuntime.cpp101 llvm::Type *Int32Ty = llvm::IntegerType::getInt32Ty(CGM.getLLVMContext());
111 llvm::Type *Int32Ty = llvm::IntegerType::getInt32Ty(CGM.getLLVMContext());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp121 CSR = ConstantInt::get(Type::getInt32Ty(Ctx), 0);
130 CSL = ConstantInt::get(Type::getInt32Ty(Ctx), 0);
137 CSL = ConstantInt::get(Type::getInt32Ty(Ctx), 0);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp153 Type *I32Ty = Type::getInt32Ty(Ctx);
220 llvm::Type *ResType = llvm::Type::getInt32Ty(Ctx);
326 Type *SizetTy = Type::getInt32Ty(Ctx);
403 Type *Int32Ty = Type::getInt32Ty(Ctx);
487 IntegerType *Int32Ty = Type::getInt32Ty(ArgType->getContext());
509 IType = dyn_cast<Type>(Type::getInt32Ty(ArgType->getContext()));
521 IType = dyn_cast<Type>(Type::getInt32Ty(ArgType->getContext()));
H A DAMDGPUAtomicOptimizer.cpp441 Type *const VecTy = VectorType::get(B.getInt32Ty(), 2);
451 Intrinsic::amdgcn_icmp, {WaveTy, B.getInt32Ty()},
495 Value *const ExtractLo = B.CreateTrunc(NewV, B.getInt32Ty());
497 B.CreateTrunc(B.CreateLShr(NewV, 32), B.getInt32Ty());
594 Value *const ExtractLo = B.CreateTrunc(PHI, B.getInt32Ty());
596 B.CreateTrunc(B.CreateLShr(PHI, 32), B.getInt32Ty());
H A DAMDGPUAnnotateUniformValues.cpp145 Type::getInt32Ty(Ptr->getContext()), APInt(64, 0));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp111 ConstantInt::get(Type::getInt32Ty(Context), NumLoads);
H A DNVVMIntrRange.cpp74 IntegerType *Int32Ty = Type::getInt32Ty(Context);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp424 Type *Int32Ty = Type::getInt32Ty(EI.getContext());
452 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
458 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), i));
464 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()),
484 Mask[InsertedIdx] = UndefValue::get(Type::getInt32Ty(V->getContext()));
501 ConstantInt::get(Type::getInt32Ty(V->getContext()),
506 ConstantInt::get(Type::getInt32Ty(V->getContext()),
540 IntegerType *IntType = Type::getInt32Ty(InsElt->getContext());
614 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
620 Mask.assign(NumElts, ConstantInt::get(Type::getInt32Ty(
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86WinEHState.cpp178 Type::getInt32Ty(TheModule->getContext()),
179 {Int8PtrType, Type::getInt32Ty(TheModule->getContext())},
235 Type::getInt32Ty(Context) // int32_t TryLevel
258 Type::getInt32Ty(Context), // int32_t EncodedScopeTable
259 Type::getInt32Ty(Context) // int32_t TryLevel
278 Type *Int32Ty = Builder.getInt32Ty();
387 Type *Int32Ty = Type::getInt32Ty(Context);
783 State = Builder.CreateLoad(Builder.getInt32Ty(), StateField);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrOrderFile.cpp78 Type *IdxTy = Type::getInt32Ty(Ctx);
121 IntegerType *Int32Ty = Type::getInt32Ty(Ctx);
H A DGCOVProfiling.cpp665 FunctionType *FTy = FunctionType::get(Builder.getInt32Ty(), {}, false);
934 Type::getInt32Ty(*Ctx), // uint32_t checksum
946 Type::getInt32Ty(*Ctx), // uint32_t ident
948 Type::getInt32Ty(*Ctx), // uint32_t func_checksum
950 Type::getInt32Ty(*Ctx), // uint32_t cfg_checksum
965 Type::getInt32Ty(*Ctx), // uint32_t num_counters
1017 {Builder.getInt8PtrTy(), Builder.getInt8PtrTy(), Builder.getInt32Ty()});
1019 {Builder.getInt32Ty(), Builder.getInt8PtrTy(), Builder.getInt32Ty(),
1020 Builder.getInt8Ty(), Builder.getInt32Ty()});
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DValueList.cpp40 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));

Completed in 177 milliseconds

123456