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_ARM_MACRO_ASSEMBLER_ARM_H_ | 5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 6 #define V8_ARM_MACRO_ASSEMBLER_ARM_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 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
655 const ParameterCount& actual, | 655 const ParameterCount& actual, |
656 InvokeFlag flag, | 656 InvokeFlag flag, |
657 const CallWrapper& call_wrapper); | 657 const CallWrapper& call_wrapper); |
658 | 658 |
659 void InvokeFunction(Handle<JSFunction> function, | 659 void InvokeFunction(Handle<JSFunction> function, |
660 const ParameterCount& expected, | 660 const ParameterCount& expected, |
661 const ParameterCount& actual, | 661 const ParameterCount& actual, |
662 InvokeFlag flag, | 662 InvokeFlag flag, |
663 const CallWrapper& call_wrapper); | 663 const CallWrapper& call_wrapper); |
664 | 664 |
| 665 void IsObjectJSObjectType(Register heap_object, |
| 666 Register map, |
| 667 Register scratch, |
| 668 Label* fail); |
| 669 |
| 670 void IsInstanceJSObjectType(Register map, |
| 671 Register scratch, |
| 672 Label* fail); |
| 673 |
665 void IsObjectJSStringType(Register object, | 674 void IsObjectJSStringType(Register object, |
666 Register scratch, | 675 Register scratch, |
667 Label* fail); | 676 Label* fail); |
668 | 677 |
669 void IsObjectNameType(Register object, | 678 void IsObjectNameType(Register object, |
670 Register scratch, | 679 Register scratch, |
671 Label* fail); | 680 Label* fail); |
672 | 681 |
673 // --------------------------------------------------------------------------- | 682 // --------------------------------------------------------------------------- |
674 // Debugger Support | 683 // Debugger Support |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1546 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1555 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1547 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1556 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1548 #else | 1557 #else |
1549 #define ACCESS_MASM(masm) masm-> | 1558 #define ACCESS_MASM(masm) masm-> |
1550 #endif | 1559 #endif |
1551 | 1560 |
1552 | 1561 |
1553 } } // namespace v8::internal | 1562 } } // namespace v8::internal |
1554 | 1563 |
1555 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1564 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |