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