OLD | NEW |
1 | 1 |
2 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 2 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
3 // All Rights Reserved. | 3 // All Rights Reserved. |
4 // | 4 // |
5 // Redistribution and use in source and binary forms, with or without | 5 // Redistribution and use in source and binary forms, with or without |
6 // modification, are permitted provided that the following conditions are | 6 // modification, are permitted provided that the following conditions are |
7 // met: | 7 // met: |
8 // | 8 // |
9 // - Redistributions of source code must retain the above copyright notice, | 9 // - Redistributions of source code must retain the above copyright notice, |
10 // this list of conditions and the following disclaimer. | 10 // this list of conditions and the following disclaimer. |
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 void Assembler::emit(Instr x) { | 478 void Assembler::emit(Instr x) { |
479 if (!is_buffer_growth_blocked()) { | 479 if (!is_buffer_growth_blocked()) { |
480 CheckBuffer(); | 480 CheckBuffer(); |
481 } | 481 } |
482 *reinterpret_cast<Instr*>(pc_) = x; | 482 *reinterpret_cast<Instr*>(pc_) = x; |
483 pc_ += kInstrSize; | 483 pc_ += kInstrSize; |
484 CheckTrampolinePoolQuick(); | 484 CheckTrampolinePoolQuick(); |
485 } | 485 } |
486 | 486 |
487 | 487 |
488 } } // namespace v8::internal | 488 } // namespace internal |
| 489 } // namespace v8 |
489 | 490 |
490 #endif // V8_MIPS_ASSEMBLER_MIPS_INL_H_ | 491 #endif // V8_MIPS_ASSEMBLER_MIPS_INL_H_ |
OLD | NEW |