Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: src/a64/assembler-a64.cc

Issue 191233003: Add out-of-line constant pool support to Arm. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix other Arches. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/a64/assembler-a64.h ('k') | src/arm/assembler-arm.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/a64/assembler-a64.h ('k') | src/arm/assembler-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698