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

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

Issue 1542963002: [runtime] Introduce dedicated JSBoundFunction to represent bound functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@FunctionConstructor
Patch Set: [arm64] Poke does not preserve flags with --debug-code. Created 4 years, 11 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/ia32/code-stubs-ia32.cc ('k') | src/ia32/macro-assembler-ia32.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_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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 517
518 // Abort execution if argument is not a string, enabled via --debug-code. 518 // Abort execution if argument is not a string, enabled via --debug-code.
519 void AssertString(Register object); 519 void AssertString(Register object);
520 520
521 // Abort execution if argument is not a name, enabled via --debug-code. 521 // Abort execution if argument is not a name, enabled via --debug-code.
522 void AssertName(Register object); 522 void AssertName(Register object);
523 523
524 // Abort execution if argument is not a JSFunction, enabled via --debug-code. 524 // Abort execution if argument is not a JSFunction, enabled via --debug-code.
525 void AssertFunction(Register object); 525 void AssertFunction(Register object);
526 526
527 // Abort execution if argument is not a JSBoundFunction,
528 // enabled via --debug-code.
529 void AssertBoundFunction(Register object);
530
527 // Abort execution if argument is not undefined or an AllocationSite, enabled 531 // Abort execution if argument is not undefined or an AllocationSite, enabled
528 // via --debug-code. 532 // via --debug-code.
529 void AssertUndefinedOrAllocationSite(Register object); 533 void AssertUndefinedOrAllocationSite(Register object);
530 534
531 // --------------------------------------------------------------------------- 535 // ---------------------------------------------------------------------------
532 // Exception handling 536 // Exception handling
533 537
534 // Push a new stack handler and link it into stack handler chain. 538 // Push a new stack handler and link it into stack handler chain.
535 void PushStackHandler(); 539 void PushStackHandler();
536 540
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 } \ 1003 } \
1000 masm-> 1004 masm->
1001 #else 1005 #else
1002 #define ACCESS_MASM(masm) masm-> 1006 #define ACCESS_MASM(masm) masm->
1003 #endif 1007 #endif
1004 1008
1005 } // namespace internal 1009 } // namespace internal
1006 } // namespace v8 1010 } // namespace v8
1007 1011
1008 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 1012 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698