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

1 2

  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.h 37 unsigned Length, bool Prologue);
39 unsigned Length, bool Prologue);
41 unsigned Length, bool Prologue);
43 unsigned Length, bool Prologue);
45 unsigned Length, bool Prologue);
47 unsigned Length, bool Prologue);
49 unsigned Length, bool Prologue);
51 unsigned Length, bool Prologue);
53 unsigned Length, bool Prologue);
55 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
237 unsigned Length, bool Prologue) {
241 static_cast<const char *>(Prologue ? "sub" : "add"),
248 unsigned Length, bool Prologue) {
250 uint16_t RegisterMask = (Link << (Prologue ? 14 : 15))
254 assert((~RegisterMask & (1 << (Prologue ? 15 : 14))) && "pc must not be set");
258 Prologue ? "push" : "pop");
267 unsigned Length, bool Prologue) {
268 if (Prologue)
    [all...]
  /external/llvm/lib/DebugInfo/
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...]
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.
189 /// Parse prologue and all rows.
193 struct Prologue Prologue;
215 // The row number that starts at zero for the prologue, and increases for
DWARFContext.cpp 148 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/CodeGen/
CallingConvLower.h 165 /// the context of prologue or call generation. Not all backends make use of
167 typedef enum { Unknown, Prologue, Call } ParmContext;
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.h 219 // Generates function and stub prologue code.
221 void Prologue(bool code_pre_aging);
    [all...]
macro-assembler-ia32.cc 918 void MacroAssembler::Prologue(bool code_pre_aging) {
2183 Label prologue; local
    [all...]
  /external/chromium_org/v8/src/x87/
macro-assembler-x87.h 212 // Generates function and stub prologue code.
214 void Prologue(bool code_pre_aging);
    [all...]
macro-assembler-x87.cc 832 void MacroAssembler::Prologue(bool code_pre_aging) {
2075 Label prologue; local
    [all...]
  /external/chromium_org/v8/src/arm/
macro-assembler-arm.h 540 // Generates function and stub prologue code.
542 void Prologue(bool code_pre_aging);
    [all...]
macro-assembler-arm.cc 1012 void MacroAssembler::Prologue(bool code_pre_aging) {
    [all...]
full-codegen-arm.cc 149 __ Prologue(info->IsCodePreAgingActive());
    [all...]
lithium-codegen-arm.cc 146 __ Prologue(info()->IsCodePreAgingActive());
241 // Generate the OSR entry prologue at the first unknown OSR value, or if there
    [all...]
  /external/chromium_org/v8/src/x64/
macro-assembler-x64.h 295 // Generates function and stub prologue code.
297 void Prologue(bool code_pre_aging);
    [all...]
full-codegen-x64.cc 139 __ Prologue(info->IsCodePreAgingActive());
    [all...]
macro-assembler-x64.cc 714 Label prologue; local
785 bind(&prologue);
    [all...]
  /external/chromium_org/v8/src/arm64/
macro-assembler-arm64.h     [all...]
full-codegen-arm64.cc 150 __ Prologue(info->IsCodePreAgingActive());
    [all...]
macro-assembler-arm64.cc     [all...]
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.h     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 76 assert(((PC == Call) || (PC == Prologue)) &&
78 "or prologue generation.");
    [all...]

Completed in 1242 milliseconds

1 2