Searched defs:Prologue (Results 1 - 17 of 17) sorted by relevance

/external/llvm/tools/llvm-pdbdump/
H A DFunctionDumper.cpp121 uint64_t Prologue = DebugStart->getVirtualAddress() - FuncStart; local
122 WithColor(Printer, PDB_ColorItem::Offset).get() << "+" << Prologue;
/external/vixl/tools/test_generator/
H A Ddata_types.py210 def Prologue(): member in class:Input
384 Description of a Register input. The `Prologue` and `Epilogue` methods
389 def Prologue(self): member in class:Register
399 def Prologue(self): member in class:DRegisterF64
412 The `Prologue` and `Epilogue` methods describe what C++ code to emit to set
417 def Prologue(self): member in class:NZCV
453 The `Prologue` and `Epilogue` methods describe what C++ code to emit to set
457 def Prologue(self): member in class:Q
493 The `Prologue` and `Epilogue` methods describe what C++ code to emit to set
497 def Prologue(sel member in class:GE
522 def Prologue(self): member in class:FPSCR
608 def Prologue(self): member in class:MemOperand
[all...]
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFDebugLine.h33 struct Prologue { struct in class:llvm::DWARFDebugLine
34 Prologue() function in struct:llvm::DWARFDebugLine::Prologue
132 Prologue.clear();
139 struct Prologue Prologue; member in struct:llvm::DWARFDebugLine::LineTable
155 virtual void reset() { Row::reset(Prologue.DefaultIsStmt); }
171 Prologue *prologue);
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h36 struct Prologue { struct in class:llvm::DWARFDebugLine
37 Prologue();
210 struct Prologue Prologue; member in struct:llvm::DWARFDebugLine::LineTable
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp20 DWARFDebugLine::Prologue::Prologue() { clear(); } function in class:DWARFDebugLine::Prologue
22 void DWARFDebugLine::Prologue::clear() {
32 void DWARFDebugLine::Prologue::dump(raw_ostream &OS) const {
67 bool DWARFDebugLine::Prologue::parse(DataExtractor debug_line_data,
176 Prologue.dump(OS);
190 Prologue.clear();
201 Row.reset(LineTable->Prologue.DefaultIsStmt);
253 if (!Prologue.parse(debug_line_data, offset_ptr)) {
260 debug_line_offset + Prologue
[all...]
/external/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp228 unsigned Length, bool Prologue) {
232 static_cast<const char *>(Prologue ? "sub" : "add"),
239 unsigned Length, bool Prologue) {
241 uint16_t RegisterMask = (Link << (Prologue ? 14 : 15))
245 assert((~RegisterMask & (1 << (Prologue ? 15 : 14))) && "pc must not be set");
249 Prologue ? "push" : "pop");
258 unsigned Length, bool Prologue) {
259 if (Prologue)
270 unsigned Length, bool Prologue) {
274 uint16_t GPRMask = (Link << (Prologue
227 opcode_0xxxxxxx(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
238 opcode_10Lxxxxx(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
257 opcode_1100xxxx(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
269 opcode_11010Lxx(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
286 opcode_11011Lxx(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
303 opcode_11100xxx(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
317 opcode_111010xx(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
330 opcode_1110110L(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
344 opcode_11101110(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
360 opcode_11101111(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
376 opcode_11110101(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
391 opcode_11110110(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
406 opcode_11110111(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
419 opcode_11111000(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
434 opcode_11111001(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
447 opcode_11111010(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
462 opcode_11111011(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
469 opcode_11111100(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
476 opcode_11111101(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
483 opcode_11111110(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
490 opcode_11111111(const uint8_t *OC, unsigned &Offset, unsigned Length, bool Prologue) argument
496 decodeOpcodes(ArrayRef<uint8_t> Opcodes, unsigned Offset, bool Prologue) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DCallingConvLower.h148 typedef enum { Unknown, Prologue, Call } ParmContext; enumerator in enum:llvm::__anon22426
/external/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h189 typedef enum { Unknown, Prologue, Call } ParmContext; enumerator in enum:llvm::__anon13589
/external/clang/lib/CodeGen/
H A DCGClass.cpp851 // Emit code in ctor (Prologue==true) or dtor (Prologue==false)
854 void CodeGenFunction::EmitAsanPrologueOrEpilogue(bool Prologue) { argument
857 Prologue ? cast<CXXConstructorDecl>(CurGD.getDecl())->getParent()
894 FTy, Prologue ? "__asan_poison_intra_object_redzone"
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.cc1005 void MacroAssembler::Prologue(bool code_pre_aging) { function in class:v8::internal::MacroAssembler
/external/v8/src/mips64/
H A Dmacro-assembler-mips64.cc5634 void MacroAssembler::Prologue(bool code_pre_aging) { function in class:v8::internal::MacroAssembler
/external/v8/src/x87/
H A Dmacro-assembler-x87.cc953 void MacroAssembler::Prologue(bool code_pre_aging) { function in class:v8::internal::MacroAssembler
/external/v8/src/arm64/
H A Dmacro-assembler-arm64.cc2611 void MacroAssembler::Prologue(bool code_pre_aging) { function in class:v8::internal::MacroAssembler
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc5292 void MacroAssembler::Prologue(bool code_pre_aging) { function in class:v8::internal::MacroAssembler
/external/v8/src/ppc/
H A Dmacro-assembler-ppc.cc987 void MacroAssembler::Prologue(bool code_pre_aging, Register base, function in class:v8::internal::MacroAssembler
/external/v8/src/s390/
H A Dmacro-assembler-s390.cc941 void MacroAssembler::Prologue(bool code_pre_aging, Register base, function in class:v8::internal::MacroAssembler
/external/v8/src/x64/
H A Dmacro-assembler-x64.cc4355 void MacroAssembler::Prologue(bool code_pre_aging) { function in class:MacroAssembler

Completed in 2793 milliseconds