| 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_X87_MACRO_ASSEMBLER_X87_H_ | 5 #ifndef V8_X87_MACRO_ASSEMBLER_X87_H_ |
| 6 #define V8_X87_MACRO_ASSEMBLER_X87_H_ | 6 #define V8_X87_MACRO_ASSEMBLER_X87_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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 } \ | 1018 } \ |
| 1019 masm-> | 1019 masm-> |
| 1020 #else | 1020 #else |
| 1021 #define ACCESS_MASM(masm) masm-> | 1021 #define ACCESS_MASM(masm) masm-> |
| 1022 #endif | 1022 #endif |
| 1023 | 1023 |
| 1024 } // namespace internal | 1024 } // namespace internal |
| 1025 } // namespace v8 | 1025 } // namespace v8 |
| 1026 | 1026 |
| 1027 #endif // V8_X87_MACRO_ASSEMBLER_X87_H_ | 1027 #endif // V8_X87_MACRO_ASSEMBLER_X87_H_ |
| OLD | NEW |