Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/IR/
H A DAsmWriter.cpp1508 Optional<unsigned> InRangeOp; in WriteConstantInternal() local
1512 InRangeOp = GEP->getInRangeIndex(); in WriteConstantInternal()
1513 if (InRangeOp) in WriteConstantInternal()
1514 ++*InRangeOp; in WriteConstantInternal()
1518 if (InRangeOp && unsigned(OI - CE->op_begin()) == *InRangeOp) in WriteConstantInternal()
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp3456 Optional<unsigned> InRangeOp; in ParseValID() local
3458 Elts, Opc == Instruction::GetElementPtr ? &InRangeOp : nullptr) || in ParseValID()
3501 if (InRangeOp) { in ParseValID()
3502 if (*InRangeOp == 0) in ParseValID()
3505 --*InRangeOp; in ParseValID()
3509 InBounds, InRangeOp); in ParseValID()
3594 Optional<unsigned> *InRangeOp) { in ParseGlobalValueVector() argument
3603 if (InRangeOp && !*InRangeOp && EatIfPresent(lltok::kw_inrange)) in ParseGlobalValueVector()
3604 *InRangeOp = Elts.size(); in ParseGlobalValueVector()
H A DLLParser.h512 Optional<unsigned> *InRangeOp = nullptr);