Searched defs:ConstantIndex (Results 1 - 3 of 3) sorted by relevance

/external/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h31 unsigned ConstantIndex = 0; local
33 OS << "\n #" << ++ConstantIndex << ": " << C.getValue();
60 case StackMapParserT::LocationKind::ConstantIndex:
61 OS << "ConstantIndex #" << Loc.getConstantIndex() << " ("
/external/llvm/include/llvm/CodeGen/
H A DStackMaps.h138 ConstantIndex enumerator in enum:llvm::StackMaps::Location::LocationType
/external/llvm/include/llvm/Object/
H A DStackMapParser.h100 Register = 1, Direct = 2, Indirect = 3, Constant = 4, ConstantIndex = 5 member in class:llvm::StackMapV1Parser::LocationKind
126 /// Get the constant-index for this location. (Kind must be ConstantIndex).
128 assert(getKind() == LocationKind::ConstantIndex &&
360 ConstantAccessor getConstant(unsigned ConstantIndex) const {
362 getConstantOffset(ConstantIndex));
430 std::size_t getConstantOffset(unsigned ConstantIndex) const {
431 return ConstantsListOffset + ConstantIndex * ConstantSize;

Completed in 277 milliseconds