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 914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
925 Label* fail); | 925 Label* fail); |
926 | 926 |
927 void IsObjectJSStringType(Register object, | 927 void IsObjectJSStringType(Register object, |
928 Register scratch, | 928 Register scratch, |
929 Label* fail); | 929 Label* fail); |
930 | 930 |
931 void IsObjectNameType(Register object, | 931 void IsObjectNameType(Register object, |
932 Register scratch, | 932 Register scratch, |
933 Label* fail); | 933 Label* fail); |
934 | 934 |
935 #ifdef ENABLE_DEBUGGER_SUPPORT | |
936 // ------------------------------------------------------------------------- | 935 // ------------------------------------------------------------------------- |
937 // Debugger Support. | 936 // Debugger Support. |
938 | 937 |
939 void DebugBreak(); | 938 void DebugBreak(); |
940 #endif | |
941 | |
942 | 939 |
943 // ------------------------------------------------------------------------- | 940 // ------------------------------------------------------------------------- |
944 // Exception handling. | 941 // Exception handling. |
945 | 942 |
946 // Push a new try handler and link into try handler chain. | 943 // Push a new try handler and link into try handler chain. |
947 void PushTryHandler(StackHandler::Kind kind, int handler_index); | 944 void PushTryHandler(StackHandler::Kind kind, int handler_index); |
948 | 945 |
949 // Unlink the stack handler on top of the stack from the try handler chain. | 946 // Unlink the stack handler on top of the stack from the try handler chain. |
950 // Must preserve the result register. | 947 // Must preserve the result register. |
951 void PopTryHandler(); | 948 void PopTryHandler(); |
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1673 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) | 1670 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) |
1674 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1671 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1675 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1672 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1676 #else | 1673 #else |
1677 #define ACCESS_MASM(masm) masm-> | 1674 #define ACCESS_MASM(masm) masm-> |
1678 #endif | 1675 #endif |
1679 | 1676 |
1680 } } // namespace v8::internal | 1677 } } // namespace v8::internal |
1681 | 1678 |
1682 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1679 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |