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 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 address of a debug break slot. | 1360 // Mark address of a debug break slot. |
1361 void RecordDebugBreakSlot(); | 1361 void RecordDebugBreakSlot(); |
| 1362 void RecordDebugBreakSlotForCall(int argc); |
| 1363 void RecordDebugBreakSlotForConstructCall(); |
1362 | 1364 |
1363 // Record the AST id of the CallIC being compiled, so that it can be placed | 1365 // Record the AST id of the CallIC being compiled, so that it can be placed |
1364 // in the relocation information. | 1366 // in the relocation information. |
1365 void SetRecordedAstId(TypeFeedbackId ast_id) { | 1367 void SetRecordedAstId(TypeFeedbackId ast_id) { |
1366 DCHECK(recorded_ast_id_.IsNone()); | 1368 DCHECK(recorded_ast_id_.IsNone()); |
1367 recorded_ast_id_ = ast_id; | 1369 recorded_ast_id_ = ast_id; |
1368 } | 1370 } |
1369 | 1371 |
1370 TypeFeedbackId RecordedAstId() { | 1372 TypeFeedbackId RecordedAstId() { |
1371 DCHECK(!recorded_ast_id_.IsNone()); | 1373 DCHECK(!recorded_ast_id_.IsNone()); |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1661 public: | 1663 public: |
1662 explicit EnsureSpace(Assembler* assembler) { | 1664 explicit EnsureSpace(Assembler* assembler) { |
1663 assembler->CheckBuffer(); | 1665 assembler->CheckBuffer(); |
1664 } | 1666 } |
1665 }; | 1667 }; |
1666 | 1668 |
1667 | 1669 |
1668 } } // namespace v8::internal | 1670 } } // namespace v8::internal |
1669 | 1671 |
1670 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1672 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |