| 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_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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |