Home
last modified time | relevance | path

Searched refs:BaseAndOffset (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp1655 std::pair<Value *, APInt> BaseAndOffset = {nullptr, ZeroOffset}; in visitPHI() local
1657 BaseAndOffset = ConstantOffsetPtrs.lookup(V); in visitPHI()
1659 if (!C && !BaseAndOffset.first) in visitPHI()
1676 if (FirstBaseAndOffset == BaseAndOffset) in visitPHI()
1690 FirstBaseAndOffset = BaseAndOffset; in visitPHI()
1716 std::pair<Value *, APInt> BaseAndOffset = in canFoldInboundsGEP() local
1718 if (!BaseAndOffset.first) in canFoldInboundsGEP()
1723 if (!accumulateGEPOffset(cast<GEPOperator>(I), BaseAndOffset.second)) in canFoldInboundsGEP()
1727 ConstantOffsetPtrs[&I] = BaseAndOffset; in canFoldInboundsGEP()
1873 std::pair<Value *, APInt> BaseAndOffset = in visitBitCast() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DPointer.cpp29 Pointer::Pointer(Block *Pointee, uint64_t BaseAndOffset) in Pointer() argument
30 : Pointer(Pointee, BaseAndOffset, BaseAndOffset) {} in Pointer()
H A DPointer.h103 Pointer(Block *B, uint64_t BaseAndOffset);