Searched refs:OffsetCI (Results 1 - 2 of 2) sorted by relevance

/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp4883 llvm::ConstantInt *OffsetCI = nullptr; // Constant, hopefully zero.
4896 if (!AA || OffsetCI || CGF.SanOpts.has(SanitizerKind::Alignment))
4920 AA->getLocation(), Alignment, OffsetCI);
4936 OffsetCI = cast<llvm::ConstantInt>(CGF.EmitScalarExpr(Offset));
4937 if (OffsetCI->isNullValue()) // Canonicalize zero offset to no offset.
4938 OffsetCI = nullptr;
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp7090 auto *OffsetCI = mdconst::dyn_extract_or_null<ConstantInt>(MD->getOperand(2)); local
7091 CheckTBAA(OffsetCI, "Offset must be constant integer", &I, MD);
7093 APInt Offset = OffsetCI->getValue();

Completed in 199 milliseconds