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 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1096 Assembler* assem_; | 1096 Assembler* assem_; |
1097 | 1097 |
1098 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope); | 1098 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope); |
1099 }; | 1099 }; |
1100 | 1100 |
1101 // Debugging. | 1101 // Debugging. |
1102 | 1102 |
1103 // Mark address of the ExitJSFrame code. | 1103 // Mark address of the ExitJSFrame code. |
1104 void RecordJSReturn(); | 1104 void RecordJSReturn(); |
1105 | 1105 |
| 1106 // Mark generator continuation. |
| 1107 void RecordGeneratorContinuation(); |
| 1108 |
1106 // Mark address of a debug break slot. | 1109 // Mark address of a debug break slot. |
1107 void RecordDebugBreakSlot(); | 1110 void RecordDebugBreakSlot(); |
1108 void RecordDebugBreakSlotForCall(int argc); | 1111 void RecordDebugBreakSlotForCall(int argc); |
1109 void RecordDebugBreakSlotForConstructCall(); | 1112 void RecordDebugBreakSlotForConstructCall(); |
1110 | 1113 |
1111 // Record the AST id of the CallIC being compiled, so that it can be placed | 1114 // Record the AST id of the CallIC being compiled, so that it can be placed |
1112 // in the relocation information. | 1115 // in the relocation information. |
1113 void SetRecordedAstId(TypeFeedbackId ast_id) { | 1116 void SetRecordedAstId(TypeFeedbackId ast_id) { |
1114 DCHECK(recorded_ast_id_.IsNone()); | 1117 DCHECK(recorded_ast_id_.IsNone()); |
1115 recorded_ast_id_ = ast_id; | 1118 recorded_ast_id_ = ast_id; |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1505 class EnsureSpace BASE_EMBEDDED { | 1508 class EnsureSpace BASE_EMBEDDED { |
1506 public: | 1509 public: |
1507 explicit EnsureSpace(Assembler* assembler) { | 1510 explicit EnsureSpace(Assembler* assembler) { |
1508 assembler->CheckBuffer(); | 1511 assembler->CheckBuffer(); |
1509 } | 1512 } |
1510 }; | 1513 }; |
1511 | 1514 |
1512 } } // namespace v8::internal | 1515 } } // namespace v8::internal |
1513 | 1516 |
1514 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1517 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
OLD | NEW |