HomeSort by relevance Sort by last modified time
    Searched refs:Prologue (Results 1 - 25 of 49) sorted by null

1 2

  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.h 36 unsigned Length, bool Prologue);
38 unsigned Length, bool Prologue);
40 unsigned Length, bool Prologue);
42 unsigned Length, bool Prologue);
44 unsigned Length, bool Prologue);
46 unsigned Length, bool Prologue);
48 unsigned Length, bool Prologue);
50 unsigned Length, bool Prologue);
52 unsigned Length, bool Prologue);
54 unsigned Length, bool Prologue);
    [all...]
ARMWinEHPrinter.cpp 14 // For functions with canonical forms for the prologue and epilogue, the data
62 // wide) allowing the program to unwind from any point in the prologue, body, or
232 unsigned Length, bool Prologue) {
236 static_cast<const char *>(Prologue ? "sub" : "add"),
243 unsigned Length, bool Prologue) {
245 uint16_t RegisterMask = (Link << (Prologue ? 14 : 15))
249 assert((~RegisterMask & (1 << (Prologue ? 15 : 14))) && "pc must not be set");
253 Prologue ? "push" : "pop");
262 unsigned Length, bool Prologue) {
263 if (Prologue)
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 20 DWARFDebugLine::Prologue::Prologue() {
24 void DWARFDebugLine::Prologue::clear() {
33 void DWARFDebugLine::Prologue::dump(raw_ostream &OS) const {
34 OS << "Line table prologue:\n"
68 bool DWARFDebugLine::Prologue::parse(DataExtractor debug_line_data,
117 fprintf(stderr, "warning: parsing line table prologue at 0x%8.8x should"
177 Prologue.dump(OS);
191 Prologue.clear();
202 Row.reset(LineTable->Prologue.DefaultIsStmt)
    [all...]
DWARFContext.cpp 162 while (LineTable.Prologue.parse(lineData, &stmtOffset)) {
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugLine.h 51 // Prologue
53 struct Prologue
56 Prologue() :
71 typedef std::shared_ptr<Prologue> shared_ptr;
85 // Length of the prologue in bytes
87 // Length of the line table data in bytes (not including the prologue)
170 prologue(),
178 prologue.reset();
185 Prologue::shared_ptr prologue; member in struct:DWARFDebugLine::LineTable
217 Prologue::shared_ptr prologue; member in struct:DWARFDebugLine::State
    [all...]
DWARFDebugLine.cpp 92 // If the row is zero we are being called with the prologue only
93 state.prologue->Dump (log);
191 Prologue prologue; local
193 if (ParsePrologue(debug_line_data, &offset, &prologue))
198 prologue.Dump (log);
207 Row row(prologue.default_is_stmt);
208 const dw_offset_t end_offset = debug_line_offset + prologue.total_length + sizeof(prologue.total_length);
233 row.Reset(prologue.default_is_stmt)
    [all...]
HashedNameToDIE.h 242 struct Prologue
251 Prologue (dw_offset_t _die_base_offset = 0) :
264 virtual ~Prologue()
403 struct Header : public MappedHash::Header<Prologue>
426 offset = MappedHash::Header<Prologue>::Read (data, offset);
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 36 struct Prologue {
37 Prologue();
66 // Length of the prologue in bytes.
71 // Length of the line table data in bytes (not including the prologue).
180 // Extracts filename by its index in filename table in prologue.
195 /// Parse prologue and all rows.
199 struct Prologue Prologue;
221 // The row number that starts at zero for the prologue, and increases for
  /external/elfutils/src/tests/
run-readelf-line.sh 33 Prologue length: 43
88 Prologue length: 28
138 Prologue length: 43
205 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
222 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
235 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
run-readelf-zdebug.sh 359 Prologue length: 40
  /external/llvm/tools/llvm-pdbdump/
FunctionDumper.cpp 118 uint32_t Prologue = DebugStart->getRelativeVirtualAddress() - FuncStart;
119 WithColor(Printer, PDB_ColorItem::Offset).get() << "+" << Prologue;
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 162 /// Describes a register that needs to be forwarded from the prologue to a
186 /// the context of prologue or call generation. Not all backends make use of
188 typedef enum { Unknown, Prologue, Call } ParmContext;
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 779 // Copy Prologue.
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 689 // - we need to perform the constructor prologue and cleanup in
707 // Emit code in ctor (Prologue==true) or dtor (Prologue==false)
710 void CodeGenFunction::EmitAsanPrologueOrEpilogue(bool Prologue) {
713 Prologue ? cast<CXXConstructorDecl>(CurGD.getDecl())->getParent()
750 FTy, Prologue ? "__asan_poison_intra_object_redzone"
794 // Enter the function-try-block before the constructor prologue if
808 // Emit the constructor prologue, i.e. the base and member
    [all...]
  /external/v8/src/compiler/arm/
code-generator-arm.cc 638 __ Prologue(info->IsCodePreAgingActive());
  /external/v8/src/compiler/arm64/
code-generator-arm64.cc 655 __ Prologue(info->IsCodePreAgingActive());
  /external/v8/src/compiler/ia32/
code-generator-ia32.cc 594 // =={ prologue of called function }============================================
657 // function prologue of generated code.
672 // =={ prologue of called function }============================================
710 // Assemble a prologue similar the to cdecl calling convention.
725 __ Prologue(info->IsCodePreAgingActive());
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.h 229 // Generates function and stub prologue code.
231 void Prologue(bool code_pre_aging);
    [all...]
  /external/v8/src/x87/
macro-assembler-x87.h 207 // Generates function and stub prologue code.
209 void Prologue(bool code_pre_aging);
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.h 551 // Generates function and stub prologue code.
553 void Prologue(bool code_pre_aging);
    [all...]
  /external/v8/src/compiler/x64/
code-generator-x64.cc 806 __ Prologue(info->IsCodePreAgingActive());
  /external/v8/src/x64/
macro-assembler-x64.h 305 // Generates function and stub prologue code.
307 void Prologue(bool code_pre_aging);
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.h     [all...]
  /external/v8/src/mips/
macro-assembler-mips.h     [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.h     [all...]

Completed in 503 milliseconds

1 2