Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp2020 APInt OffsetAI(DL.getPointerTypeSizeInBits(CE->getType()), 0); in lowerConstantForGV() local
2021 cast<GEPOperator>(CE)->accumulateConstantOffset(DL, OffsetAI); in lowerConstantForGV()
2025 if (!OffsetAI) in lowerConstantForGV()
2028 int64_t Offset = OffsetAI.getSExtValue(); in lowerConstantForGV()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2520 APInt OffsetAI(getDataLayout().getPointerTypeSizeInBits(CE->getType()), 0); in lowerConstant() local
2521 cast<GEPOperator>(CE)->accumulateConstantOffset(getDataLayout(), OffsetAI); in lowerConstant()
2524 if (!OffsetAI) in lowerConstant()
2527 int64_t Offset = OffsetAI.getSExtValue(); in lowerConstant()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp611 APInt OffsetAI; in FoldReinterpretLoadFromConstPtr() local
612 if (!IsConstantOffsetFromGlobal(C, GVal, OffsetAI, DL)) in FoldReinterpretLoadFromConstPtr()
620 int64_t Offset = OffsetAI.getSExtValue(); in FoldReinterpretLoadFromConstPtr()