/freebsd/contrib/llvm-project/clang/lib/Rewrite/ |
H A D | DeltaTree.cpp | 364 const SourceDelta &IVal = N->getValue(i); in VerifyTree() local 367 assert(IN->getValue(i-1).FileLoc < IVal.FileLoc); in VerifyTree() 368 FullDelta += IVal.Delta; in VerifyTree() 373 IVal.FileLoc); in VerifyTree() 376 assert(IN->getChild(i+1)->getValue(0).FileLoc > IVal.FileLoc); in VerifyTree()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUTargetStreamer.cpp | 332 int64_t IVal; in EmitAmdhsaKernelDescriptor() local 336 if (pgm_rsrc1_bits->evaluateAsAbsolute(IVal)) in EmitAmdhsaKernelDescriptor() 337 OS << static_cast<uint64_t>(IVal); in EmitAmdhsaKernelDescriptor()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | IROutliner.cpp | 1644 Value *IVal = PN->getIncomingValue(Idx); in findCanonNumsForPHI() local 1648 if (Argument *A = dyn_cast<Argument>(IVal)) { in findCanonNumsForPHI() 1650 IVal = getPassedArgumentInAlreadyOutlinedFunction(A, Region); in findCanonNumsForPHI() 1652 IVal = getPassedArgumentAndAdjustArgumentLocation(A, Region); in findCanonNumsForPHI() 1656 IVal = findOutputMapping(OutputMappings, IVal); in findCanonNumsForPHI() 1659 std::optional<unsigned> GVN = Region.Candidate->getGVN(IVal); in findCanonNumsForPHI()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Constants.cpp | 2626 const APInt *IVal; in getExactLogBase2() local 2627 if (match(C, m_APInt(IVal)) && IVal->isPowerOf2()) in getExactLogBase2() 2628 return ConstantInt::get(Ty, IVal->logBase2()); in getExactLogBase2() 2645 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2()) in getExactLogBase2() 2647 Elts.push_back(ConstantInt::get(Ty->getScalarType(), IVal->logBase2())); in getExactLogBase2()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUAsmPrinter.cpp | 398 int64_t IVal; in getMCExprStr() local 399 if (Value->evaluateAsAbsolute(IVal)) { in getMCExprStr() 400 OSS << static_cast<uint64_t>(IVal); in getMCExprStr()
|
H A D | AMDGPUISelLowering.cpp | 3319 SDValue IVal = in LowerINT_TO_FP32() local 3327 IVal = DAG.getNode(ISD::OR, SL, MVT::i32, IVal, Sign); in LowerINT_TO_FP32() 3329 return DAG.getNode(ISD::BITCAST, SL, MVT::f32, IVal); in LowerINT_TO_FP32()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/ |
H A D | AMDGPUAsmParser.cpp | 5488 int64_t IVal = 0; in ParseDirectiveAMDHSAKernel() local 5489 uint64_t Val = IVal; in ParseDirectiveAMDHSAKernel() 5491 if ((EvaluatableExpr = ExprVal->evaluateAsAbsolute(IVal))) { in ParseDirectiveAMDHSAKernel() 5492 if (IVal < 0) in ParseDirectiveAMDHSAKernel() 5494 Val = IVal; in ParseDirectiveAMDHSAKernel() 5850 int64_t IVal = 0; in ParseDirectiveAMDHSAKernel() local 5851 if (!KD.kernarg_size->evaluateAsAbsolute(IVal)) in ParseDirectiveAMDHSAKernel() 5853 uint64_t kernarg_size = IVal; in ParseDirectiveAMDHSAKernel()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | CodeGenPrepare.cpp | 3127 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local 3128 IVal->eraseFromParent(); in undo() 3153 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local 3154 IVal->eraseFromParent(); in undo() 3180 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local 3181 IVal->eraseFromParent(); in undo()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineMulDivRem.cpp | 229 const APInt *IVal; in visitMul() local 232 match(C1, m_APInt(IVal))) { in visitMul()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 3772 auto *IVal = CGF.Builder.CreatePHI(CGF.SizeTy, 2); in emitScanBasedDirective() local 3773 IVal->addIncoming(NMin1, LoopBB); in emitScanBasedDirective() 3787 RValue::get(IVal)); in emitScanBasedDirective() 3793 llvm::Value *OffsetIVal = CGF.Builder.CreateNUWSub(IVal, Pow2K); in emitScanBasedDirective() 3811 CGF.Builder.CreateNUWSub(IVal, llvm::ConstantInt::get(CGF.SizeTy, 1)); in emitScanBasedDirective() 3812 IVal->addIncoming(NextIVal, CGF.Builder.GetInsertBlock()); in emitScanBasedDirective()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 19803 SDValue IVal, StoreSDNode *St, in ShrinkLoadReplaceStoreWithStore() argument 19811 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(), in ShrinkLoadReplaceStoreWithStore() 19813 if (!DAG.MaskedValueIsZero(IVal, Mask)) return SDValue(); in ShrinkLoadReplaceStoreWithStore() 19824 else if (TLI.isTypeLegal(IVal.getValueType()) && in ShrinkLoadReplaceStoreWithStore() 19825 TLI.isTruncStoreLegal(IVal.getValueType(), VT)) in ShrinkLoadReplaceStoreWithStore() 19843 SDLoc DL(IVal); in ShrinkLoadReplaceStoreWithStore() 19844 IVal = DAG.getNode( in ShrinkLoadReplaceStoreWithStore() 19845 ISD::SRL, DL, IVal.getValueType(), IVal, in ShrinkLoadReplaceStoreWithStore() 19846 DAG.getShiftAmountConstant(ByteShift * 8, IVal.getValueType(), DL)); in ShrinkLoadReplaceStoreWithStore() 19854 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; in ShrinkLoadReplaceStoreWithStore() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | Clang.cpp | 2749 int64_t IVal; in CollectArgsForIntegratedAssembler() local 2750 if (SVal.getAsInteger(0, IVal)) { in CollectArgsForIntegratedAssembler()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 12361 unsigned IVal = in processBuildVector() local 12367 IVal); in processBuildVector()
|