| 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 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1167 | 1167 |
| 1168 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstantPoolEntrySharingScope); | 1168 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstantPoolEntrySharingScope); |
| 1169 }; | 1169 }; |
| 1170 | 1170 |
| 1171 // Debugging | 1171 // Debugging |
| 1172 | 1172 |
| 1173 // Mark generator continuation. | 1173 // Mark generator continuation. |
| 1174 void RecordGeneratorContinuation(); | 1174 void RecordGeneratorContinuation(); |
| 1175 | 1175 |
| 1176 // Mark address of a debug break slot. | 1176 // Mark address of a debug break slot. |
| 1177 void RecordDebugBreakSlot(RelocInfo::Mode mode, int argc = 0); | 1177 void RecordDebugBreakSlot(RelocInfo::Mode mode); |
| 1178 | 1178 |
| 1179 // Record the AST id of the CallIC being compiled, so that it can be placed | 1179 // Record the AST id of the CallIC being compiled, so that it can be placed |
| 1180 // in the relocation information. | 1180 // in the relocation information. |
| 1181 void SetRecordedAstId(TypeFeedbackId ast_id) { | 1181 void SetRecordedAstId(TypeFeedbackId ast_id) { |
| 1182 // Causes compiler to fail | 1182 // Causes compiler to fail |
| 1183 // DCHECK(recorded_ast_id_.IsNone()); | 1183 // DCHECK(recorded_ast_id_.IsNone()); |
| 1184 recorded_ast_id_ = ast_id; | 1184 recorded_ast_id_ = ast_id; |
| 1185 } | 1185 } |
| 1186 | 1186 |
| 1187 TypeFeedbackId RecordedAstId() { | 1187 TypeFeedbackId RecordedAstId() { |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1461 | 1461 |
| 1462 | 1462 |
| 1463 class EnsureSpace BASE_EMBEDDED { | 1463 class EnsureSpace BASE_EMBEDDED { |
| 1464 public: | 1464 public: |
| 1465 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } | 1465 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } |
| 1466 }; | 1466 }; |
| 1467 } // namespace internal | 1467 } // namespace internal |
| 1468 } // namespace v8 | 1468 } // namespace v8 |
| 1469 | 1469 |
| 1470 #endif // V8_PPC_ASSEMBLER_PPC_H_ | 1470 #endif // V8_PPC_ASSEMBLER_PPC_H_ |
| OLD | NEW |