| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 // that was stored. | 229 // that was stored. |
| 230 void RecordWriteForMap(Register object, Handle<Map> map, Register scratch1, | 230 void RecordWriteForMap(Register object, Handle<Map> map, Register scratch1, |
| 231 Register scratch2, SaveFPRegsMode save_fp); | 231 Register scratch2, SaveFPRegsMode save_fp); |
| 232 | 232 |
| 233 // --------------------------------------------------------------------------- | 233 // --------------------------------------------------------------------------- |
| 234 // Debugger Support | 234 // Debugger Support |
| 235 | 235 |
| 236 void DebugBreak(); | 236 void DebugBreak(); |
| 237 | 237 |
| 238 // Generates function and stub prologue code. | 238 // Generates function and stub prologue code. |
| 239 void StubPrologue(); | 239 void StubPrologue(StackFrame::Type type); |
| 240 void Prologue(bool code_pre_aging); | 240 void Prologue(bool code_pre_aging); |
| 241 | 241 |
| 242 // Enter specific kind of exit frame. Expects the number of | 242 // Enter specific kind of exit frame. Expects the number of |
| 243 // arguments in register eax and sets up the number of arguments in | 243 // arguments in register eax and sets up the number of arguments in |
| 244 // register edi and the pointer to the first argument in register | 244 // register edi and the pointer to the first argument in register |
| 245 // esi. | 245 // esi. |
| 246 void EnterExitFrame(int argc, bool save_doubles); | 246 void EnterExitFrame(int argc, bool save_doubles); |
| 247 | 247 |
| 248 void EnterApiExitFrame(int argc); | 248 void EnterApiExitFrame(int argc); |
| 249 | 249 |
| (...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1038 } \ | 1038 } \ |
| 1039 masm-> | 1039 masm-> |
| 1040 #else | 1040 #else |
| 1041 #define ACCESS_MASM(masm) masm-> | 1041 #define ACCESS_MASM(masm) masm-> |
| 1042 #endif | 1042 #endif |
| 1043 | 1043 |
| 1044 } // namespace internal | 1044 } // namespace internal |
| 1045 } // namespace v8 | 1045 } // namespace v8 |
| 1046 | 1046 |
| 1047 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 1047 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
| OLD | NEW |