OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 Label* fail); | 623 Label* fail); |
624 | 624 |
625 void IsObjectJSStringType(Register object, | 625 void IsObjectJSStringType(Register object, |
626 Register scratch, | 626 Register scratch, |
627 Label* fail); | 627 Label* fail); |
628 | 628 |
629 void IsObjectNameType(Register object, | 629 void IsObjectNameType(Register object, |
630 Register scratch, | 630 Register scratch, |
631 Label* fail); | 631 Label* fail); |
632 | 632 |
633 #ifdef ENABLE_DEBUGGER_SUPPORT | |
634 // --------------------------------------------------------------------------- | 633 // --------------------------------------------------------------------------- |
635 // Debugger Support | 634 // Debugger Support |
636 | 635 |
637 void DebugBreak(); | 636 void DebugBreak(); |
638 #endif | |
639 | 637 |
640 // --------------------------------------------------------------------------- | 638 // --------------------------------------------------------------------------- |
641 // Exception handling | 639 // Exception handling |
642 | 640 |
643 // Push a new try handler and link into try handler chain. | 641 // Push a new try handler and link into try handler chain. |
644 void PushTryHandler(StackHandler::Kind kind, int handler_index); | 642 void PushTryHandler(StackHandler::Kind kind, int handler_index); |
645 | 643 |
646 // Unlink the stack handler on top of the stack from the try handler chain. | 644 // Unlink the stack handler on top of the stack from the try handler chain. |
647 // Must preserve the result register. | 645 // Must preserve the result register. |
648 void PopTryHandler(); | 646 void PopTryHandler(); |
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1604 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1602 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1605 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1603 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1606 #else | 1604 #else |
1607 #define ACCESS_MASM(masm) masm-> | 1605 #define ACCESS_MASM(masm) masm-> |
1608 #endif | 1606 #endif |
1609 | 1607 |
1610 | 1608 |
1611 } } // namespace v8::internal | 1609 } } // namespace v8::internal |
1612 | 1610 |
1613 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1611 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |