Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DAsmWriter.cpp1502 Optional<unsigned> InRangeOp; in WriteConstantInternal() local
1506 InRangeOp = GEP->getInRangeIndex(); in WriteConstantInternal()
1507 if (InRangeOp) in WriteConstantInternal()
1508 ++*InRangeOp; in WriteConstantInternal()
1512 if (InRangeOp && unsigned(OI - CE->op_begin()) == *InRangeOp) in WriteConstantInternal()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
DLLParser.cpp3436 Optional<unsigned> InRangeOp; in ParseValID() local
3438 Elts, Opc == Instruction::GetElementPtr ? &InRangeOp : nullptr) || in ParseValID()
3481 if (InRangeOp) { in ParseValID()
3482 if (*InRangeOp == 0) in ParseValID()
3485 --*InRangeOp; in ParseValID()
3489 InBounds, InRangeOp); in ParseValID()
3574 Optional<unsigned> *InRangeOp) { in ParseGlobalValueVector() argument
3583 if (InRangeOp && !*InRangeOp && EatIfPresent(lltok::kw_inrange)) in ParseGlobalValueVector()
3584 *InRangeOp = Elts.size(); in ParseGlobalValueVector()
DLLParser.h503 Optional<unsigned> *InRangeOp = nullptr);