Home
last modified time | relevance | path

Searched refs:Int1Ty (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXIL.td35 def Int1Ty : DXILOpParamType;
428 let result = Int1Ty;
438 let result = Int1Ty;
447 let result = Int1Ty;
456 let result = Int1Ty;
840 let arguments = [Int8Ty, Int32Ty, Int32Ty, Int1Ty];
897 let result = Int1Ty;
919 let arguments = [Int1Ty];
988 let result = Int1Ty;
1005 let arguments = [Int1Ty];
[all …]
H A DDXILOpBuilder.cpp260 Type *Int1Ty = Type::getInt1Ty(Context); in getBinaryWithCarryType() local
261 return StructType::create({Int32Ty, Int1Ty}, "dx.types.i32c"); in getBinaryWithCarryType()
275 case OpParamType::Int1Ty: in getTypeFromOpParamType()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp260 Type *Int1Ty = Type::getInt1Ty(U->getContext()); in runOnUse() local
263 new TruncInst(IntRetVal, Int1Ty, "backToBool", I->getIterator()); in runOnUse()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp300 Type *PtrTy, *IntptrTy, *Int64Ty, *Int32Ty, *Int16Ty, *Int8Ty, *Int1Ty; member in __anon0eb498d60111::ModuleSanitizerCoverage
430 Int1Ty = IRB.getInt1Ty(); in instrumentModule()
539 SanCovBoolFlagInitName, Int1Ty, in instrumentModule()
814 AllBlocks.size(), F, Int1Ty, SanCovBoolFlagSectionName); in CreateFunctionLocalArrays()
1083 auto Load = IRB.CreateLoad(Int1Ty, FlagPtr); in InjectCoverageAtBlock()
1088 auto Store = ThenIRB.CreateStore(ConstantInt::getTrue(Int1Ty), FlagPtr); in InjectCoverageAtBlock()
H A DNumericalStabilitySanitizer.cpp664 Type *Int1Ty = Type::getInt1Ty(Context); local
693 Attr, VoidTy, VTTy, VTTy, ShadowTy, ShadowTy, Int32Ty, Int1Ty, Int1Ty);
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFPreserveStaticOffset.cpp210 Type *Int1Ty = Type::getInt1Ty(C); in fillCommonArgs() local
214 Args.push_back(ConstantInt::get(Int1Ty, Insn->isVolatile())); in fillCommonArgs()
218 Args.push_back(ConstantInt::get(Int1Ty, GEP.InBounds)); in fillCommonArgs()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.cpp40 Int1Ty(C, 1), Int8Ty(C, 8), Int16Ty(C, 16), Int32Ty(C, 32), in LLVMContextImpl()
H A DType.cpp294 IntegerType *Type::getInt1Ty(LLVMContext &C) { return &C.pImpl->Int1Ty; } in getInt1Ty()
H A DLLVMContextImpl.h1762 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty, Int128Ty;
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp600 llvm::Type *Int1Ty = llvm::Type::getInt1Ty(CGM.getLLVMContext()); in initializeBufferFromBinding() local
601 auto *NonUniform = llvm::ConstantInt::get(Int1Ty, false); in initializeBufferFromBinding()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp445 IntegerType *Int1Ty = Type::getInt1Ty(M.getContext()); member in __anonc00fd2a30111::LowerTypeTestsModule
837 PHINode *P = B.CreatePHI(Int1Ty, 2); in lowerTypeTestCall()
838 P->addIncoming(ConstantInt::get(Int1Ty, 0), InitialBB); in lowerTypeTestCall()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSwLowerLDS.cpp891 Type *Int1Ty = IRB.getInt1Ty(); in lowerKernelLDSAccesses() local
893 auto *XYZCondPhi = IRB.CreatePHI(Int1Ty, 2, "xyzCond"); in lowerKernelLDSAccesses()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DX86.cpp31 llvm::Type *Int1Ty = llvm::Type::getInt1Ty(CGF.getLLVMContext()); in X86AdjustInlineAsmType() local
32 return llvm::FixedVectorType::get(Int1Ty, Ty->getScalarSizeInBits()); in X86AdjustInlineAsmType()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp619 auto *Int1Ty = Type::getInt1Ty(Builder.getContext()); in generate() local
620 auto *PredTy = VectorType::get(Int1Ty, State.VF); in generate()