/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | Core.h | 2265 unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal); 2272 long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal); 2280 double LLVMConstRealGetDouble(LLVMValueRef ConstantVal, LLVMBool *losesInfo); 2433 LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal); 2436 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal); 2437 LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal); 2439 LLVMValueRef LLVMConstNUWNeg(LLVMValueRef ConstantVal), 2441 LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal); 2452 LLVMValueRef LLVMConstGEP2(LLVMTypeRef Ty, LLVMValueRef ConstantVal, 2454 LLVMValueRef LLVMConstInBoundsGEP2(LLVMTypeRef Ty, LLVMValueRef ConstantVal, [all …]
|
H A D | DebugInfo.h | 807 LLVMMetadataRef Type, LLVMDIFlags Flags, LLVMValueRef ConstantVal,
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Core.cpp | 1573 unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal) { in LLVMConstIntGetZExtValue() argument 1574 return unwrap<ConstantInt>(ConstantVal)->getZExtValue(); in LLVMConstIntGetZExtValue() 1577 long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal) { in LLVMConstIntGetSExtValue() argument 1578 return unwrap<ConstantInt>(ConstantVal)->getSExtValue(); in LLVMConstIntGetSExtValue() 1581 double LLVMConstRealGetDouble(LLVMValueRef ConstantVal, LLVMBool *LosesInfo) { in LLVMConstRealGetDouble() argument 1582 ConstantFP *cFP = unwrap<ConstantFP>(ConstantVal) ; in LLVMConstRealGetDouble() 1739 LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal) { in LLVMGetConstOpcode() argument 1740 return map_to_llvmopcode(unwrap<ConstantExpr>(ConstantVal)->getOpcode()); in LLVMGetConstOpcode() 1751 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) { in LLVMConstNeg() argument 1752 return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal))); in LLVMConstNeg() [all …]
|
H A D | DebugInfo.cpp | 1382 LLVMMetadataRef Type, LLVMDIFlags Flags, LLVMValueRef ConstantVal, in LLVMDIBuilderCreateStaticMemberType() argument 1387 unwrap<Constant>(ConstantVal), DW_TAG_member, AlignInBits)); in LLVMDIBuilderCreateStaticMemberType()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/ |
H A D | LLParser.h | 80 Constant *ConstantVal; member 88 APFloatVal(RHS.APFloatVal), ConstantVal(RHS.ConstantVal), in ValID()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 1213 Aliasee = ID.ConstantVal; in parseAliasOrIFunc() 3824 ID.ConstantVal = ConstantInt::getTrue(Context); in parseValID() 3828 ID.ConstantVal = ConstantInt::getFalse(Context); in parseValID() 3892 ID.ConstantVal = ConstantVector::get(Elts); in parseValID() 3926 ID.ConstantVal = ConstantArray::get(ATy, Elts); in parseValID() 3932 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(), in parseValID() 4024 ID.ConstantVal = FwdRef; in parseValID() 4049 ID.ConstantVal = BlockAddress::get(F, BB); in parseValID() 4087 ID.ConstantVal = FwdRef; in parseValID() 4096 ID.ConstantVal = DSOLocalEquivalent::get(GV); in parseValID() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 355 template <typename Predicate, typename ConstantVal, bool AllowPoison> 359 if (const auto *CV = dyn_cast<ConstantVal>(V)) in match_impl() 363 if (const auto *CV = dyn_cast_or_null<ConstantVal>(C->getSplatValue())) in match_impl() 381 auto *CV = dyn_cast<ConstantVal>(Elt); in match_impl()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngine.cpp | 1991 std::optional<SVal> ConstantVal = svalBuilder.getConstantVal(ArgE); in Visit() local 1992 if (!ConstantVal) in Visit() 1993 ConstantVal = UnknownVal(); in Visit() 1998 State = State->BindExpr(S, LCtx, *ConstantVal); in Visit()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVISelDAGToDAG.cpp | 1545 int ConstantVal = ConstantOffset->getSExtValue(); in Select() local 1546 Simm12 = isInt<12>(ConstantVal); in Select() 1548 Offset = CurDAG->getTargetConstant(ConstantVal, SDLoc(Offset), in Select()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalizerHelper.cpp | 3114 const Constant *ConstantVal = ConstOperand.getCImm(); in lowerConstant() local 3116 emitLoadFromConstantPool(MI.getOperand(0).getReg(), ConstantVal, MIRBuilder); in lowerConstant() 3125 const Constant *ConstantVal = ConstOperand.getFPImm(); in lowerFConstant() local 3127 emitLoadFromConstantPool(MI.getOperand(0).getReg(), ConstantVal, MIRBuilder); in lowerFConstant()
|