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 2776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2787 | 2787 |
2788 void Assembler::RecordConstPool(int size) { | 2788 void Assembler::RecordConstPool(int size) { |
2789 // We only need this for debugger support, to correctly compute offsets in the | 2789 // We only need this for debugger support, to correctly compute offsets in the |
2790 // code. | 2790 // code. |
2791 #ifdef ENABLE_DEBUGGER_SUPPORT | 2791 #ifdef ENABLE_DEBUGGER_SUPPORT |
2792 RecordRelocInfo(RelocInfo::CONST_POOL, static_cast<intptr_t>(size)); | 2792 RecordRelocInfo(RelocInfo::CONST_POOL, static_cast<intptr_t>(size)); |
2793 #endif | 2793 #endif |
2794 } | 2794 } |
2795 | 2795 |
2796 | 2796 |
| 2797 MaybeObject* Assembler::AllocateConstantPool(Heap* heap) { |
| 2798 // No out-of-line constant pool support. |
| 2799 UNREACHABLE(); |
| 2800 return NULL; |
| 2801 } |
| 2802 |
| 2803 |
| 2804 void Assembler::PopulateConstantPool(ConstantPoolArray* constant_pool) { |
| 2805 // No out-of-line constant pool support. |
| 2806 UNREACHABLE(); |
| 2807 } |
| 2808 |
| 2809 |
2797 } } // namespace v8::internal | 2810 } } // namespace v8::internal |
2798 | 2811 |
2799 #endif // V8_TARGET_ARCH_A64 | 2812 #endif // V8_TARGET_ARCH_A64 |
OLD | NEW |