| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | NoFolder.h | 149 Instruction *CreateZExtOrBitCast(Constant *C, Type *DestTy) const override { in CreateZExtOrBitCast() function 150 return CastInst::CreateZExtOrBitCast(C, DestTy); in CreateZExtOrBitCast()
|
| H A D | IRBuilderFolder.h | 88 virtual Value *CreateZExtOrBitCast(Constant *C, Type *DestTy) const = 0;
|
| H A D | ConstantFolder.h | 212 Constant *CreateZExtOrBitCast(Constant *C, Type *DestTy) const override { in CreateZExtOrBitCast() function
|
| H A D | InstrTypes.h | 473 static CastInst *CreateZExtOrBitCast( 481 static CastInst *CreateZExtOrBitCast(
|
| H A D | IRBuilder.h | 1962 Value *CreateZExtOrBitCast(Value *V, Type *DestTy, 1967 return Insert(Folder.CreateZExtOrBitCast(VC, DestTy), Name); 1968 return Insert(CastInst::CreateZExtOrBitCast(V, DestTy), Name);
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | InstSimplifyFolder.h | 150 Value *CreateZExtOrBitCast(Constant *C, Type *DestTy) const override { in CreateZExtOrBitCast() function 153 return ConstFolder.CreateZExtOrBitCast(C, DestTy); in CreateZExtOrBitCast()
|
| H A D | TargetFolder.h | 219 Constant *CreateZExtOrBitCast(Constant *C, Type *DestTy) const override { in CreateZExtOrBitCast() function
|
| /llvm-project-15.0.7/polly/lib/CodeGen/ |
| H A D | LoopGenerators.cpp | 155 Stride = Builder.CreateZExtOrBitCast(Stride, LoopIVType); in createLoop()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | VNCoercion.cpp | 534 Builder.CreateZExtOrBitCast(Val, IntegerType::get(Ctx, LoadSize * 8)); in getMemInstValueForLoad()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineMulDivRem.cpp | 1063 return CastInst::CreateZExtOrBitCast(Cmp, Ty); in visitUDiv() 1068 return CastInst::CreateZExtOrBitCast(Cmp, Ty); in visitUDiv() 1524 return CastInst::CreateZExtOrBitCast(Cmp, Ty); in visitURem()
|
| H A D | InstCombinePHI.cpp | 849 return CastInst::CreateZExtOrBitCast(NewPhi, Phi.getType()); in foldPHIArgZextsIntoPHI()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGExprScalar.cpp | 4364 return Builder.CreateZExtOrBitCast(RHSCond, ResTy, "land.ext"); in VisitBinLAnd() 4428 return Builder.CreateZExtOrBitCast(PN, ResTy, "land.ext"); in VisitBinLAnd() 4480 return Builder.CreateZExtOrBitCast(RHSCond, ResTy, "lor.ext"); in VisitBinLOr() 4538 return Builder.CreateZExtOrBitCast(PN, ResTy, "lor.ext"); in VisitBinLOr() 4667 llvm::Value *StepV = Builder.CreateZExtOrBitCast(CondV, CGF.Int64Ty); in VisitAbstractConditionalOperator()
|
| H A D | CGObjCGNU.cpp | 1704 Offset = CGF.Builder.CreateZExtOrBitCast(Offset, PtrDiffTy); in EmitIvarOffset() 4175 return CGF.Builder.CreateZExtOrBitCast( in EmitIvarOffset() 4196 Offset = CGF.Builder.CreateZExtOrBitCast(Offset, PtrDiffTy); in EmitIvarOffset()
|
| H A D | CGBuiltin.cpp | 1894 ArgVal = Builder.CreateZExtOrBitCast(ArgVal, ConvertType(ArgTy)); in emitBuiltinOSLogFormat() 7702 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty); in EmitARMBuiltinExpr() 7757 Arg1 = Builder.CreateZExtOrBitCast(Arg1, Int32Ty); in EmitARMBuiltinExpr() 9704 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int64Ty); in EmitAArch64BuiltinExpr() 9781 Arg1 = Builder.CreateZExtOrBitCast(Arg1, DataTy); in EmitAArch64BuiltinExpr()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | CorrelatedValuePropagation.cpp | 983 auto *ZExt = CastInst::CreateZExtOrBitCast(Base, SDI->getType(), "", SDI); in processSExt()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibCalls.cpp | 1070 opr_n = B.CreateZExtOrBitCast(opr_n, nTy, "__ytou"); in fold_pow()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Instructions.cpp | 3229 CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty, in CreateZExtOrBitCast() function in CastInst 3237 CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty, in CreateZExtOrBitCast() function in CastInst
|
| H A D | Core.cpp | 3831 return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy), in LLVMBuildZExtOrBitCast()
|
| /llvm-project-15.0.7/llvm/bindings/ocaml/llvm/ |
| H A D | llvm.mli | 2502 See the method [llvm::LLVMBuilder::CreateZExtOrBitCast]. *) 2514 See the method [llvm::LLVMBuilder::CreateZExtOrBitCast]. *)
|
| /llvm-project-15.0.7/llvm/bindings/go/llvm/ |
| H A D | ir.go | 1735 func (b Builder) CreateZExtOrBitCast(val Value, t Type, name string) (v Value) { func
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | CodeGenPrepare.cpp | 7634 V = Builder.CreateZExtOrBitCast(V, SplitStoreType); in splitMergedValStore()
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 20585 Stxr, {Builder.CreateZExtOrBitCast( in emitStoreConditional()
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 21255 Strex, {Builder.CreateZExtOrBitCast( in emitStoreConditional()
|