| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // | 2 // |
| 3 // Redistribution and use in source and binary forms, with or without | 3 // Redistribution and use in source and binary forms, with or without |
| 4 // modification, are permitted provided that the following conditions are | 4 // modification, are permitted provided that the following conditions are |
| 5 // met: | 5 // met: |
| 6 // | 6 // |
| 7 // * Redistributions of source code must retain the above copyright | 7 // * Redistributions of source code must retain the above copyright |
| 8 // notice, this list of conditions and the following disclaimer. | 8 // notice, this list of conditions and the following disclaimer. |
| 9 // * Redistributions in binary form must reproduce the above | 9 // * Redistributions in binary form must reproduce the above |
| 10 // copyright notice, this list of conditions and the following | 10 // copyright notice, this list of conditions and the following |
| (...skipping 2589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2600 | 2600 |
| 2601 void Assembler::RecordConstPool(int size) { | 2601 void Assembler::RecordConstPool(int size) { |
| 2602 // We only need this for debugger support, to correctly compute offsets in the | 2602 // We only need this for debugger support, to correctly compute offsets in the |
| 2603 // code. | 2603 // code. |
| 2604 #ifdef ENABLE_DEBUGGER_SUPPORT | 2604 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 2605 RecordRelocInfo(RelocInfo::CONST_POOL, static_cast<intptr_t>(size)); | 2605 RecordRelocInfo(RelocInfo::CONST_POOL, static_cast<intptr_t>(size)); |
| 2606 #endif | 2606 #endif |
| 2607 } | 2607 } |
| 2608 | 2608 |
| 2609 | 2609 |
| 2610 void Assembler::PopulateConstantPool(ConstantPoolArray* constant_pool) { |
| 2611 // No out-of-line constant pool support. |
| 2612 UNREACHABLE(); |
| 2613 } |
| 2614 |
| 2615 |
| 2610 } } // namespace v8::internal | 2616 } } // namespace v8::internal |
| 2611 | 2617 |
| 2612 #endif // V8_TARGET_ARCH_A64 | 2618 #endif // V8_TARGET_ARCH_A64 |
| OLD | NEW |