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

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

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