| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1056 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope); | 1056 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope); |
| 1057 }; | 1057 }; |
| 1058 | 1058 |
| 1059 // Debugging. | 1059 // Debugging. |
| 1060 | 1060 |
| 1061 // Mark address of the ExitJSFrame code. | 1061 // Mark address of the ExitJSFrame code. |
| 1062 void RecordJSReturn(); | 1062 void RecordJSReturn(); |
| 1063 | 1063 |
| 1064 // Mark address of a debug break slot. | 1064 // Mark address of a debug break slot. |
| 1065 void RecordDebugBreakSlot(); | 1065 void RecordDebugBreakSlot(); |
| 1066 void RecordDebugBreakSlotForCall(int argc); |
| 1067 void RecordDebugBreakSlotForConstructCall(); |
| 1066 | 1068 |
| 1067 // Record the AST id of the CallIC being compiled, so that it can be placed | 1069 // Record the AST id of the CallIC being compiled, so that it can be placed |
| 1068 // in the relocation information. | 1070 // in the relocation information. |
| 1069 void SetRecordedAstId(TypeFeedbackId ast_id) { | 1071 void SetRecordedAstId(TypeFeedbackId ast_id) { |
| 1070 DCHECK(recorded_ast_id_.IsNone()); | 1072 DCHECK(recorded_ast_id_.IsNone()); |
| 1071 recorded_ast_id_ = ast_id; | 1073 recorded_ast_id_ = ast_id; |
| 1072 } | 1074 } |
| 1073 | 1075 |
| 1074 TypeFeedbackId RecordedAstId() { | 1076 TypeFeedbackId RecordedAstId() { |
| 1075 DCHECK(!recorded_ast_id_.IsNone()); | 1077 DCHECK(!recorded_ast_id_.IsNone()); |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1459 class EnsureSpace BASE_EMBEDDED { | 1461 class EnsureSpace BASE_EMBEDDED { |
| 1460 public: | 1462 public: |
| 1461 explicit EnsureSpace(Assembler* assembler) { | 1463 explicit EnsureSpace(Assembler* assembler) { |
| 1462 assembler->CheckBuffer(); | 1464 assembler->CheckBuffer(); |
| 1463 } | 1465 } |
| 1464 }; | 1466 }; |
| 1465 | 1467 |
| 1466 } } // namespace v8::internal | 1468 } } // namespace v8::internal |
| 1467 | 1469 |
| 1468 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1470 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |