Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: src/x87/macro-assembler-x87.h

Issue 1774353002: X87: [runtime] Unify and simplify how frames are marked. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/x87/frames-x87.h ('k') | src/x87/macro-assembler-x87.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/x87/frames-x87.h ('k') | src/x87/macro-assembler-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698