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

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

Issue 1889083002: X87: [generators] Decouple generator resume from fullcodegen. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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/interface-descriptors-x87.cc ('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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 // Abort execution if argument is not a name, enabled via --debug-code. 545 // Abort execution if argument is not a name, enabled via --debug-code.
546 void AssertName(Register object); 546 void AssertName(Register object);
547 547
548 // Abort execution if argument is not a JSFunction, enabled via --debug-code. 548 // Abort execution if argument is not a JSFunction, enabled via --debug-code.
549 void AssertFunction(Register object); 549 void AssertFunction(Register object);
550 550
551 // Abort execution if argument is not a JSBoundFunction, 551 // Abort execution if argument is not a JSBoundFunction,
552 // enabled via --debug-code. 552 // enabled via --debug-code.
553 void AssertBoundFunction(Register object); 553 void AssertBoundFunction(Register object);
554 554
555 // Abort execution if argument is not a JSGeneratorObject,
556 // enabled via --debug-code.
557 void AssertGeneratorObject(Register object);
558
555 // Abort execution if argument is not a JSReceiver, enabled via --debug-code. 559 // Abort execution if argument is not a JSReceiver, enabled via --debug-code.
556 void AssertReceiver(Register object); 560 void AssertReceiver(Register object);
557 561
558 // Abort execution if argument is not undefined or an AllocationSite, enabled 562 // Abort execution if argument is not undefined or an AllocationSite, enabled
559 // via --debug-code. 563 // via --debug-code.
560 void AssertUndefinedOrAllocationSite(Register object); 564 void AssertUndefinedOrAllocationSite(Register object);
561 565
562 // --------------------------------------------------------------------------- 566 // ---------------------------------------------------------------------------
563 // Exception handling 567 // Exception handling
564 568
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 } \ 1027 } \
1024 masm-> 1028 masm->
1025 #else 1029 #else
1026 #define ACCESS_MASM(masm) masm-> 1030 #define ACCESS_MASM(masm) masm->
1027 #endif 1031 #endif
1028 1032
1029 } // namespace internal 1033 } // namespace internal
1030 } // namespace v8 1034 } // namespace v8
1031 1035
1032 #endif // V8_X87_MACRO_ASSEMBLER_X87_H_ 1036 #endif // V8_X87_MACRO_ASSEMBLER_X87_H_
OLDNEW
« no previous file with comments | « src/x87/interface-descriptors-x87.cc ('k') | src/x87/macro-assembler-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698