Home
last modified time | relevance | path

Searched refs:StandardOpcodeLengths (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugLine.cpp29 for (uint32_t i = 0; i < StandardOpcodeLengths.size(); ++i) in dump()
31 StandardOpcodeLengths[i]); in dump()
150 prologue->StandardOpcodeLengths.reserve(prologue->OpcodeBase-1); in parsePrologue()
153 prologue->StandardOpcodeLengths.push_back(op_len); in parsePrologue()
380 assert(opcode - 1U < prologue->StandardOpcodeLengths.size()); in parseStatementTable()
381 uint8_t opcode_length = prologue->StandardOpcodeLengths[opcode - 1]; in parseStatementTable()
DDWARFDebugLine.h58 std::vector<uint8_t> StandardOpcodeLengths; member
78 StandardOpcodeLengths.clear(); in clear()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp27 StandardOpcodeLengths.clear(); in clear()
44 for (uint32_t i = 0; i < StandardOpcodeLengths.size(); ++i) in dump()
46 StandardOpcodeLengths[i]); in dump()
94 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
97 StandardOpcodeLengths.push_back(op_len); in parse()
453 assert(opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
454 uint8_t opcode_length = Prologue.StandardOpcodeLengths[opcode - 1]; in parse()
/external/llvm/lib/MC/
DMCDwarf.cpp209 static const char StandardOpcodeLengths[] = { in Emit() local
223 assert(array_lengthof(StandardOpcodeLengths) >= in Emit()
225 return Emit(MCOS, Params, makeArrayRef(StandardOpcodeLengths, in Emit()
247 ArrayRef<char> StandardOpcodeLengths) const { in Emit()
284 MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1); in Emit()
287 for (char Length : StandardOpcodeLengths) in Emit()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h62 std::vector<uint8_t> StandardOpcodeLengths; member