| 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 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1224 | 1224 |
| 1225 void nop(int type = 0); // 0 is the default non-marking type. | 1225 void nop(int type = 0); // 0 is the default non-marking type. |
| 1226 | 1226 |
| 1227 // Check the code size generated from label to here. | 1227 // Check the code size generated from label to here. |
| 1228 int SizeOfCodeGeneratedSince(Label* label) { | 1228 int SizeOfCodeGeneratedSince(Label* label) { |
| 1229 return pc_offset() - label->pos(); | 1229 return pc_offset() - label->pos(); |
| 1230 } | 1230 } |
| 1231 | 1231 |
| 1232 // Debugging | 1232 // Debugging |
| 1233 | 1233 |
| 1234 // Mark generator continuation. | |
| 1235 void RecordGeneratorContinuation(); | |
| 1236 | |
| 1237 // Mark address of a debug break slot. | 1234 // Mark address of a debug break slot. |
| 1238 void RecordDebugBreakSlot(RelocInfo::Mode mode); | 1235 void RecordDebugBreakSlot(RelocInfo::Mode mode); |
| 1239 | 1236 |
| 1240 // Record the AST id of the CallIC being compiled, so that it can be placed | 1237 // Record the AST id of the CallIC being compiled, so that it can be placed |
| 1241 // in the relocation information. | 1238 // in the relocation information. |
| 1242 void SetRecordedAstId(TypeFeedbackId ast_id) { recorded_ast_id_ = ast_id; } | 1239 void SetRecordedAstId(TypeFeedbackId ast_id) { recorded_ast_id_ = ast_id; } |
| 1243 | 1240 |
| 1244 TypeFeedbackId RecordedAstId() { | 1241 TypeFeedbackId RecordedAstId() { |
| 1245 // roohack - another issue??? DCHECK(!recorded_ast_id_.IsNone()); | 1242 // roohack - another issue??? DCHECK(!recorded_ast_id_.IsNone()); |
| 1246 return recorded_ast_id_; | 1243 return recorded_ast_id_; |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1466 | 1463 |
| 1467 class EnsureSpace BASE_EMBEDDED { | 1464 class EnsureSpace BASE_EMBEDDED { |
| 1468 public: | 1465 public: |
| 1469 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } | 1466 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } |
| 1470 }; | 1467 }; |
| 1471 | 1468 |
| 1472 } // namespace internal | 1469 } // namespace internal |
| 1473 } // namespace v8 | 1470 } // namespace v8 |
| 1474 | 1471 |
| 1475 #endif // V8_S390_ASSEMBLER_S390_H_ | 1472 #endif // V8_S390_ASSEMBLER_S390_H_ |
| OLD | NEW |