Home
last modified time | relevance | path

Searched refs:IVal (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/Rewrite/
DDeltaTree.cpp364 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-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DCFLAndersAliasAnalysis.cpp151 InstantiatedValue IVal; member
156 return LHS.IVal == RHS.IVal && LHS.Offset == RHS.Offset; in operator ==()
312 std::make_pair(OVal.IVal, OVal.Offset)); in getHashValue()
373 auto IVal = Mapping.first; in populateAttrMap() local
376 auto &Attr = AttrMap[IVal.Val]; in populateAttrMap()
378 if (IVal.DerefLevel == 0) in populateAttrMap()
493 if (auto IVal = getInterfaceValue(Mapping.first, RetVals)) { in populateExternalAttributes() local
496 ExtAttributes.push_back(ExternalAttribute{*IVal, Attr}); in populateExternalAttributes()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DConstants.cpp2775 const APInt *IVal; in getExactLogBase2() local
2776 if (match(C, m_APInt(IVal)) && IVal->isPowerOf2()) in getExactLogBase2()
2777 return ConstantInt::get(Ty, IVal->logBase2()); in getExactLogBase2()
2794 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2()) in getExactLogBase2()
2796 Elts.push_back(ConstantInt::get(Ty->getScalarType(), IVal->logBase2())); in getExactLogBase2()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp171 const APInt *IVal; in visitMul() local
174 match(C1, m_APInt(IVal))) { in visitMul()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DCodeGenPrepare.cpp2782 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local
2783 IVal->eraseFromParent(); in undo()
2808 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local
2809 IVal->eraseFromParent(); in undo()
2835 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local
2836 IVal->eraseFromParent(); in undo()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp3481 auto *IVal = CGF.Builder.CreatePHI(CGF.SizeTy, 2); in emitScanBasedDirective() local
3482 IVal->addIncoming(NMin1, LoopBB); in emitScanBasedDirective()
3496 RValue::get(IVal)); in emitScanBasedDirective()
3502 llvm::Value *OffsetIVal = CGF.Builder.CreateNUWSub(IVal, Pow2K); in emitScanBasedDirective()
3520 CGF.Builder.CreateNUWSub(IVal, llvm::ConstantInt::get(CGF.SizeTy, 1)); in emitScanBasedDirective()
3521 IVal->addIncoming(NextIVal, CGF.Builder.GetInsertBlock()); in emitScanBasedDirective()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp4566 int64_t IVal; in ParseDirectiveAMDHSAKernel() local
4567 if (getParser().parseAbsoluteExpression(IVal)) in ParseDirectiveAMDHSAKernel()
4572 if (IVal < 0) in ParseDirectiveAMDHSAKernel()
4575 uint64_t Val = IVal; in ParseDirectiveAMDHSAKernel()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp16582 SDValue IVal, StoreSDNode *St, in ShrinkLoadReplaceStoreWithStore() argument
16590 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(), in ShrinkLoadReplaceStoreWithStore()
16592 if (!DAG.MaskedValueIsZero(IVal, Mask)) return SDValue(); in ShrinkLoadReplaceStoreWithStore()
16609 SDLoc DL(IVal); in ShrinkLoadReplaceStoreWithStore()
16610 IVal = DAG.getNode(ISD::SRL, DL, IVal.getValueType(), IVal, in ShrinkLoadReplaceStoreWithStore()
16612 DC->getShiftAmountTy(IVal.getValueType()))); in ShrinkLoadReplaceStoreWithStore()
16620 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; in ShrinkLoadReplaceStoreWithStore()
16624 SDLoc DL(IVal); in ShrinkLoadReplaceStoreWithStore()
16629 IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal); in ShrinkLoadReplaceStoreWithStore()
16633 .getStore(St->getChain(), SDLoc(St), IVal, Ptr, in ShrinkLoadReplaceStoreWithStore()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
DClang.cpp2568 int64_t IVal; in CollectArgsForIntegratedAssembler() local
2569 if (SVal.getAsInteger(0, IVal)) { in CollectArgsForIntegratedAssembler()