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

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

Issue 1865833002: [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
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_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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 // Abort execution if argument is not a name, enabled via --debug-code. 559 // Abort execution if argument is not a name, enabled via --debug-code.
560 void AssertName(Register object); 560 void AssertName(Register object);
561 561
562 // Abort execution if argument is not a JSFunction, enabled via --debug-code. 562 // Abort execution if argument is not a JSFunction, enabled via --debug-code.
563 void AssertFunction(Register object); 563 void AssertFunction(Register object);
564 564
565 // Abort execution if argument is not a JSBoundFunction, 565 // Abort execution if argument is not a JSBoundFunction,
566 // enabled via --debug-code. 566 // enabled via --debug-code.
567 void AssertBoundFunction(Register object); 567 void AssertBoundFunction(Register object);
568 568
569 // Abort execution if argument is not a JSGeneratorObject,
570 // enabled via --debug-code.
571 void AssertGeneratorObject(Register object);
572
569 // Abort execution if argument is not a JSReceiver, enabled via --debug-code. 573 // Abort execution if argument is not a JSReceiver, enabled via --debug-code.
570 void AssertReceiver(Register object); 574 void AssertReceiver(Register object);
571 575
572 // Abort execution if argument is not undefined or an AllocationSite, enabled 576 // Abort execution if argument is not undefined or an AllocationSite, enabled
573 // via --debug-code. 577 // via --debug-code.
574 void AssertUndefinedOrAllocationSite(Register object); 578 void AssertUndefinedOrAllocationSite(Register object);
575 579
576 // --------------------------------------------------------------------------- 580 // ---------------------------------------------------------------------------
577 // Exception handling 581 // Exception handling
578 582
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 } \ 1051 } \
1048 masm-> 1052 masm->
1049 #else 1053 #else
1050 #define ACCESS_MASM(masm) masm-> 1054 #define ACCESS_MASM(masm) masm->
1051 #endif 1055 #endif
1052 1056
1053 } // namespace internal 1057 } // namespace internal
1054 } // namespace v8 1058 } // namespace v8
1055 1059
1056 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 1060 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698