| 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 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1282 friend class BlockConstPoolScope; | 1282 friend class BlockConstPoolScope; |
| 1283 | 1283 |
| 1284 PositionsRecorder positions_recorder_; | 1284 PositionsRecorder positions_recorder_; |
| 1285 friend class PositionsRecorder; | 1285 friend class PositionsRecorder; |
| 1286 friend class EnsureSpace; | 1286 friend class EnsureSpace; |
| 1287 }; | 1287 }; |
| 1288 | 1288 |
| 1289 | 1289 |
| 1290 class EnsureSpace BASE_EMBEDDED { | 1290 class EnsureSpace BASE_EMBEDDED { |
| 1291 public: | 1291 public: |
| 1292 EnsureSpace(Assembler* assembler) { | 1292 explicit EnsureSpace(Assembler* assembler) { |
| 1293 assembler->CheckBuffer(); | 1293 assembler->CheckBuffer(); |
| 1294 } | 1294 } |
| 1295 }; | 1295 }; |
| 1296 | 1296 |
| 1297 | 1297 |
| 1298 } } // namespace v8::internal | 1298 } } // namespace v8::internal |
| 1299 | 1299 |
| 1300 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1300 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |