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 | |
674 void IsObjectJSStringType(Register object, | 665 void IsObjectJSStringType(Register object, |
675 Register scratch, | 666 Register scratch, |
676 Label* fail); | 667 Label* fail); |
677 | 668 |
678 void IsObjectNameType(Register object, | 669 void IsObjectNameType(Register object, |
679 Register scratch, | 670 Register scratch, |
680 Label* fail); | 671 Label* fail); |
681 | 672 |
682 // --------------------------------------------------------------------------- | 673 // --------------------------------------------------------------------------- |
683 // Debugger Support | 674 // Debugger Support |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1555 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1546 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1556 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1547 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1557 #else | 1548 #else |
1558 #define ACCESS_MASM(masm) masm-> | 1549 #define ACCESS_MASM(masm) masm-> |
1559 #endif | 1550 #endif |
1560 | 1551 |
1561 | 1552 |
1562 } } // namespace v8::internal | 1553 } } // namespace v8::internal |
1563 | 1554 |
1564 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1555 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |