HomeSort by: relevance | last modified time | path
    Searched refs:StandardOpcodeLengths (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
DWARFEmitter.cpp 558 std::vector<uint8_t> StandardOpcodeLengths{0, 1, 1, 1, 1, 0,
562 StandardOpcodeLengths.resize(9);
564 StandardOpcodeLengths.resize(*OpcodeBase > 0 ? *OpcodeBase - 1 : 0, 0);
566 return StandardOpcodeLengths;
584 std::vector<uint8_t> StandardOpcodeLengths =
585 LineTable.StandardOpcodeLengths.getValueOr(
589 : StandardOpcodeLengths.size() + 1;
591 for (uint8_t OpcodeLength : StandardOpcodeLengths)
DWARFYAML.cpp 248 IO.mapOptional("StandardOpcodeLengths", LineTable.StandardOpcodeLengths);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 112 StandardOpcodeLengths.clear();
141 for (uint32_t I = 0; I != StandardOpcodeLengths.size(); ++I)
144 StandardOpcodeLengths[I]);
415 StandardOpcodeLengths.reserve(OpcodeBase - 1);
418 StandardOpcodeLengths.push_back(OpLen);
1128 assert(Opcode - 1U < Prologue.StandardOpcodeLengths.size());
1131 uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1];
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
dwarf2yaml.cpp 381 DebugLines.StandardOpcodeLengths.emplace();
383 DebugLines.StandardOpcodeLengths->push_back(LineData.getU8(&Offset));
453 DebugLines.StandardOpcodeLengths.getValue()[NewOp.Opcode - 1];
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCDwarf.cpp 275 static const char StandardOpcodeLengths[] = {
289 assert(array_lengthof(StandardOpcodeLengths) >=
293 makeArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1),
453 ArrayRef<char> StandardOpcodeLengths,
499 MCOS->emitInt8(StandardOpcodeLengths.size() + 1);
502 for (char Length : StandardOpcodeLengths)
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 95 std::vector<uint8_t> StandardOpcodeLengths;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 149 Optional<std::vector<uint8_t>> StandardOpcodeLengths;

Completed in 19 milliseconds