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