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 | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are 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 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1350 Assembler* assem_; | 1350 Assembler* assem_; |
1351 | 1351 |
1352 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstPoolScope); | 1352 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstPoolScope); |
1353 }; | 1353 }; |
1354 | 1354 |
1355 // Debugging | 1355 // Debugging |
1356 | 1356 |
1357 // Mark address of the ExitJSFrame code. | 1357 // Mark address of the ExitJSFrame code. |
1358 void RecordJSReturn(); | 1358 void RecordJSReturn(); |
1359 | 1359 |
| 1360 // Mark generator continuation. |
| 1361 void RecordGeneratorContinuation(); |
| 1362 |
1360 // Mark address of a debug break slot. | 1363 // Mark address of a debug break slot. |
1361 void RecordDebugBreakSlot(); | 1364 void RecordDebugBreakSlot(); |
1362 void RecordDebugBreakSlotForCall(int argc); | 1365 void RecordDebugBreakSlotForCall(int argc); |
1363 void RecordDebugBreakSlotForConstructCall(); | 1366 void RecordDebugBreakSlotForConstructCall(); |
1364 | 1367 |
1365 // Record the AST id of the CallIC being compiled, so that it can be placed | 1368 // Record the AST id of the CallIC being compiled, so that it can be placed |
1366 // in the relocation information. | 1369 // in the relocation information. |
1367 void SetRecordedAstId(TypeFeedbackId ast_id) { | 1370 void SetRecordedAstId(TypeFeedbackId ast_id) { |
1368 DCHECK(recorded_ast_id_.IsNone()); | 1371 DCHECK(recorded_ast_id_.IsNone()); |
1369 recorded_ast_id_ = ast_id; | 1372 recorded_ast_id_ = ast_id; |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1669 public: | 1672 public: |
1670 explicit EnsureSpace(Assembler* assembler) { | 1673 explicit EnsureSpace(Assembler* assembler) { |
1671 assembler->CheckBuffer(); | 1674 assembler->CheckBuffer(); |
1672 } | 1675 } |
1673 }; | 1676 }; |
1674 | 1677 |
1675 | 1678 |
1676 } } // namespace v8::internal | 1679 } } // namespace v8::internal |
1677 | 1680 |
1678 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1681 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |