HomeSort by relevance Sort by last modified time
    Searched defs:Prologue (Results 1 - 20 of 20) sorted by null

  /external/llvm/tools/llvm-pdbdump/
FunctionDumper.cpp 121 uint64_t Prologue = DebugStart->getVirtualAddress() - FuncStart;
122 WithColor(Printer, PDB_ColorItem::Offset).get() << "+" << Prologue;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
PrettyFunctionDumper.cpp 121 uint64_t Prologue = DebugStart->getVirtualAddress() - FuncStart;
123 << formatv("+{0,2}", Prologue);
  /external/vixl/tools/test_generator/
data_types.py 210 def Prologue():
384 Description of a Register input. The `Prologue` and `Epilogue` methods
389 def Prologue(self):
399 def Prologue(self):
412 The `Prologue` and `Epilogue` methods describe what C++ code to emit to set
417 def Prologue(self):
453 The `Prologue` and `Epilogue` methods describe what C++ code to emit to set
457 def Prologue(self):
493 The `Prologue` and `Epilogue` methods describe what C++ code to emit to set
497 def Prologue(self)
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 20 DWARFDebugLine::Prologue::Prologue() { clear(); }
22 void DWARFDebugLine::Prologue::clear() {
32 void DWARFDebugLine::Prologue::dump(raw_ostream &OS) const {
33 OS << "Line table prologue:\n"
67 bool DWARFDebugLine::Prologue::parse(DataExtractor debug_line_data,
123 fprintf(stderr, "warning: parsing line table prologue at 0x%8.8" PRIx64
176 Prologue.dump(OS);
190 Prologue.clear();
201 Row.reset(LineTable->Prologue.DefaultIsStmt)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugLine.h 33 struct Prologue {
34 Prologue()
62 // Length of the prologue in bytes.
67 // Length of the line table data in bytes (not including the prologue).
132 Prologue.clear();
139 struct Prologue Prologue;
155 virtual void reset() { Row::reset(Prologue.DefaultIsStmt); }
157 // The row number that starts at zero for the prologue, and increases for
171 Prologue *prologue)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/
DWARFDebugLineTest.cpp 151 DWARFDebugLine::Prologue Prologue,
160 EXPECT_EQ(Prologue.MaxOpsPerInst, 1u);
170 EXPECT_EQ(Prologue.getAddressSize(), 8u);
171 EXPECT_EQ(Prologue.SegSelectorSize, 0u);
178 EXPECT_EQ(Prologue.TotalLength, UnitLength);
179 EXPECT_EQ(Prologue.PrologueLength, PrologueLength);
180 EXPECT_EQ(Prologue.MinInstLength, 1u);
181 EXPECT_EQ(Prologue.DefaultIsStmt, 1u);
182 EXPECT_EQ(Prologue.LineBase, -5)
    [all...]
DwarfGenerator.h 185 // Create a Prologue suitable to pass to setPrologue, with a single file and
187 DWARFDebugLine::Prologue createBasicPrologue() const;
189 // Set or replace the current prologue with the specified prologue. If no
190 // prologue is set, a default one will be used when generating.
191 void setPrologue(DWARFDebugLine::Prologue NewPrologue);
192 // Used to write an arbitrary payload instead of the standard prologue. This
215 void writeProloguePayload(const DWARFDebugLine::Prologue &Prologue,
218 llvm::Optional<DWARFDebugLine::Prologue> Prologue
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 36 struct Prologue {
37 Prologue();
74 // Length of the prologue in bytes.
79 // Length of the line table data in bytes (not including the prologue).
191 // Extracts filename by its index in filename table in prologue.
206 /// Parse prologue and all rows.
210 struct Prologue Prologue;
236 // The row number that starts at zero for the prologue, and increases for
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
CallingConvLower.h 146 /// the context of prologue or call generation. Not all backends make use of
148 typedef enum { Unknown, Prologue, Call } ParmContext;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 63 struct Prologue {
64 Prologue();
110 /// Length of the prologue in bytes.
116 /// Length of the line table data in bytes (not including the prologue).
234 /// Extracts filename by its index in filename table in prologue.
249 /// Parse prologue and all rows.
260 struct Prologue Prologue;
306 /// \param ErrorCallback - report any prologue parsing issues via this
321 void moveToNextTable(uint32_t OldOffset, const Prologue &P)
    [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 163 /// Describes a register that needs to be forwarded from the prologue to a
187 /// the context of prologue or call generation. Not all backends make use of
189 typedef enum { Unknown, Prologue, Call } ParmContext;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 67 DWARFDebugLine::Prologue::Prologue() { clear(); }
69 void DWARFDebugLine::Prologue::clear() {
81 void DWARFDebugLine::Prologue::dump(raw_ostream &OS,
83 OS << "Line table prologue:\n"
171 // ran off the end of the prologue.
294 Error DWARFDebugLine::Prologue::parse(const DWARFDataExtractor &DebugLineData,
307 "parsing line table prologue at offset 0x%8.8" PRIx64
313 return createError("parsing line table prologue at offset 0x%8.8" PRIx64
346 "parsing line table prologue at 0x%8.8" PRIx6
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc     [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 655 void TurboAssembler::Prologue() {
    [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.cc 937 void TurboAssembler::Prologue() {
940 // base contains prologue address
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc     [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.cc     [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc     [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.cc     [all...]
  /external/v8/src/s390/
macro-assembler-s390.cc 1013 void TurboAssembler::Prologue(Register base, int prologue_offset) {
    [all...]

Completed in 4331 milliseconds