| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 5 #ifndef V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
| 6 #define V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 6 #define V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
| 7 | 7 |
| 8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
| 9 #include "src/bailout-reason.h" | 9 #include "src/bailout-reason.h" |
| 10 #include "src/frames.h" | 10 #include "src/frames.h" |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 // that was stored. | 227 // that was stored. |
| 228 void RecordWriteForMap(Register object, Handle<Map> map, Register scratch1, | 228 void RecordWriteForMap(Register object, Handle<Map> map, Register scratch1, |
| 229 Register scratch2, SaveFPRegsMode save_fp); | 229 Register scratch2, SaveFPRegsMode save_fp); |
| 230 | 230 |
| 231 // --------------------------------------------------------------------------- | 231 // --------------------------------------------------------------------------- |
| 232 // Debugger Support | 232 // Debugger Support |
| 233 | 233 |
| 234 void DebugBreak(); | 234 void DebugBreak(); |
| 235 | 235 |
| 236 // Generates function and stub prologue code. | 236 // Generates function and stub prologue code. |
| 237 void StubPrologue(); | 237 void StubPrologue(StackFrame::Type type); |
| 238 void Prologue(bool code_pre_aging); | 238 void Prologue(bool code_pre_aging); |
| 239 | 239 |
| 240 // Enter specific kind of exit frame. Expects the number of | 240 // Enter specific kind of exit frame. Expects the number of |
| 241 // arguments in register eax and sets up the number of arguments in | 241 // arguments in register eax and sets up the number of arguments in |
| 242 // register edi and the pointer to the first argument in register | 242 // register edi and the pointer to the first argument in register |
| 243 // esi. | 243 // esi. |
| 244 void EnterExitFrame(int argc, bool save_doubles); | 244 void EnterExitFrame(int argc, bool save_doubles); |
| 245 | 245 |
| 246 void EnterApiExitFrame(int argc); | 246 void EnterApiExitFrame(int argc); |
| 247 | 247 |
| (...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 } \ | 1029 } \ |
| 1030 masm-> | 1030 masm-> |
| 1031 #else | 1031 #else |
| 1032 #define ACCESS_MASM(masm) masm-> | 1032 #define ACCESS_MASM(masm) masm-> |
| 1033 #endif | 1033 #endif |
| 1034 | 1034 |
| 1035 } // namespace internal | 1035 } // namespace internal |
| 1036 } // namespace v8 | 1036 } // namespace v8 |
| 1037 | 1037 |
| 1038 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 1038 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
| OLD | NEW |