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

Side by Side Diff: src/ppc/frames-ppc.cc

Issue 1131783003: Embedded constant pools. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix debug-mode Arm issue. Created 5 years, 6 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
« no previous file with comments | « src/ppc/frames-ppc.h ('k') | src/ppc/full-codegen-ppc.cc » ('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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_PPC 7 #if V8_TARGET_ARCH_PPC
8 8
9 #include "src/assembler.h" 9 #include "src/assembler.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
11 #include "src/macro-assembler.h" 11 #include "src/macro-assembler.h"
12 12
13 #include "src/ppc/assembler-ppc.h" 13 #include "src/ppc/assembler-ppc.h"
14 #include "src/ppc/assembler-ppc-inl.h" 14 #include "src/ppc/assembler-ppc-inl.h"
15 #include "src/ppc/macro-assembler-ppc.h" 15 #include "src/ppc/macro-assembler-ppc.h"
16 16
17 namespace v8 { 17 namespace v8 {
18 namespace internal { 18 namespace internal {
19 19
20 20
21 Register JavaScriptFrame::fp_register() { return v8::internal::fp; } 21 Register JavaScriptFrame::fp_register() { return v8::internal::fp; }
22 Register JavaScriptFrame::context_register() { return cp; } 22 Register JavaScriptFrame::context_register() { return cp; }
23 Register JavaScriptFrame::constant_pool_pointer_register() { 23 Register JavaScriptFrame::constant_pool_pointer_register() {
24 UNREACHABLE(); 24 DCHECK(FLAG_enable_embedded_constant_pool);
25 return no_reg; 25 return kConstantPoolRegister;
26 } 26 }
27 27
28 28
29 Register StubFailureTrampolineFrame::fp_register() { return v8::internal::fp; } 29 Register StubFailureTrampolineFrame::fp_register() { return v8::internal::fp; }
30 Register StubFailureTrampolineFrame::context_register() { return cp; } 30 Register StubFailureTrampolineFrame::context_register() { return cp; }
31 Register StubFailureTrampolineFrame::constant_pool_pointer_register() { 31 Register StubFailureTrampolineFrame::constant_pool_pointer_register() {
32 UNREACHABLE(); 32 DCHECK(FLAG_enable_embedded_constant_pool);
33 return no_reg; 33 return kConstantPoolRegister;
34 }
35
36
37 Object*& ExitFrame::constant_pool_slot() const {
38 UNREACHABLE();
39 return Memory::Object_at(NULL);
40 } 34 }
41 } // namespace internal 35 } // namespace internal
42 } // namespace v8 36 } // namespace v8
43 37
44 #endif // V8_TARGET_ARCH_PPC 38 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « src/ppc/frames-ppc.h ('k') | src/ppc/full-codegen-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698