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 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 Assembler* assem_; | 1054 Assembler* assem_; |
1055 | 1055 |
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 generator continuation. |
| 1065 void RecordGeneratorContinuation(); |
| 1066 |
1064 // Mark address of a debug break slot. | 1067 // Mark address of a debug break slot. |
1065 void RecordDebugBreakSlot(); | 1068 void RecordDebugBreakSlot(); |
1066 void RecordDebugBreakSlotForCall(int argc); | 1069 void RecordDebugBreakSlotForCall(int argc); |
1067 void RecordDebugBreakSlotForConstructCall(); | 1070 void RecordDebugBreakSlotForConstructCall(); |
1068 | 1071 |
1069 // Record the AST id of the CallIC being compiled, so that it can be placed | 1072 // Record the AST id of the CallIC being compiled, so that it can be placed |
1070 // in the relocation information. | 1073 // in the relocation information. |
1071 void SetRecordedAstId(TypeFeedbackId ast_id) { | 1074 void SetRecordedAstId(TypeFeedbackId ast_id) { |
1072 DCHECK(recorded_ast_id_.IsNone()); | 1075 DCHECK(recorded_ast_id_.IsNone()); |
1073 recorded_ast_id_ = ast_id; | 1076 recorded_ast_id_ = ast_id; |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1461 class EnsureSpace BASE_EMBEDDED { | 1464 class EnsureSpace BASE_EMBEDDED { |
1462 public: | 1465 public: |
1463 explicit EnsureSpace(Assembler* assembler) { | 1466 explicit EnsureSpace(Assembler* assembler) { |
1464 assembler->CheckBuffer(); | 1467 assembler->CheckBuffer(); |
1465 } | 1468 } |
1466 }; | 1469 }; |
1467 | 1470 |
1468 } } // namespace v8::internal | 1471 } } // namespace v8::internal |
1469 | 1472 |
1470 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1473 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
OLD | NEW |