| 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 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1217 PROPERTY_ACCESS_INLINED, | 1217 PROPERTY_ACCESS_INLINED, |
| 1218 PROPERTY_ACCESS_INLINED_CONTEXT, | 1218 PROPERTY_ACCESS_INLINED_CONTEXT, |
| 1219 PROPERTY_ACCESS_INLINED_CONTEXT_DONT_DELETE, | 1219 PROPERTY_ACCESS_INLINED_CONTEXT_DONT_DELETE, |
| 1220 // Helper values. | 1220 // Helper values. |
| 1221 LAST_CODE_MARKER, | 1221 LAST_CODE_MARKER, |
| 1222 FIRST_IC_MARKER = PROPERTY_ACCESS_INLINED | 1222 FIRST_IC_MARKER = PROPERTY_ACCESS_INLINED |
| 1223 }; | 1223 }; |
| 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 void dumy(int r1, int x2, int b2, int d2); |
| 1228 |
| 1227 // Check the code size generated from label to here. | 1229 // Check the code size generated from label to here. |
| 1228 int SizeOfCodeGeneratedSince(Label* label) { | 1230 int SizeOfCodeGeneratedSince(Label* label) { |
| 1229 return pc_offset() - label->pos(); | 1231 return pc_offset() - label->pos(); |
| 1230 } | 1232 } |
| 1231 | 1233 |
| 1232 // Debugging | 1234 // Debugging |
| 1233 | 1235 |
| 1234 // Mark address of a debug break slot. | 1236 // Mark address of a debug break slot. |
| 1235 void RecordDebugBreakSlot(RelocInfo::Mode mode); | 1237 void RecordDebugBreakSlot(RelocInfo::Mode mode); |
| 1236 | 1238 |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1463 | 1465 |
| 1464 class EnsureSpace BASE_EMBEDDED { | 1466 class EnsureSpace BASE_EMBEDDED { |
| 1465 public: | 1467 public: |
| 1466 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } | 1468 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } |
| 1467 }; | 1469 }; |
| 1468 | 1470 |
| 1469 } // namespace internal | 1471 } // namespace internal |
| 1470 } // namespace v8 | 1472 } // namespace v8 |
| 1471 | 1473 |
| 1472 #endif // V8_S390_ASSEMBLER_S390_H_ | 1474 #endif // V8_S390_ASSEMBLER_S390_H_ |
| OLD | NEW |