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

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

Issue 1318863004: [presubmit] Fix build/include linter violations. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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/ia32/codegen-ia32.cc ('k') | src/ia32/lithium-ia32.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 #if V8_TARGET_ARCH_IA32 5 #if V8_TARGET_ARCH_IA32
6 6
7 #include "src/assembler.h" 7 #include "src/assembler.h"
8 #include "src/frames.h" 8 #include "src/frames.h"
9 #include "src/ia32/assembler-ia32-inl.h" 9 #include "src/ia32/assembler-ia32-inl.h"
10 #include "src/ia32/assembler-ia32.h" 10 #include "src/ia32/assembler-ia32.h"
11 #include "src/ia32/frames-ia32.h"
11 12
12 namespace v8 { 13 namespace v8 {
13 namespace internal { 14 namespace internal {
14 15
15 16
16 Register JavaScriptFrame::fp_register() { return ebp; } 17 Register JavaScriptFrame::fp_register() { return ebp; }
17 Register JavaScriptFrame::context_register() { return esi; } 18 Register JavaScriptFrame::context_register() { return esi; }
18 Register JavaScriptFrame::constant_pool_pointer_register() { 19 Register JavaScriptFrame::constant_pool_pointer_register() {
19 UNREACHABLE(); 20 UNREACHABLE();
20 return no_reg; 21 return no_reg;
21 } 22 }
22 23
23 24
24 Register StubFailureTrampolineFrame::fp_register() { return ebp; } 25 Register StubFailureTrampolineFrame::fp_register() { return ebp; }
25 Register StubFailureTrampolineFrame::context_register() { return esi; } 26 Register StubFailureTrampolineFrame::context_register() { return esi; }
26 Register StubFailureTrampolineFrame::constant_pool_pointer_register() { 27 Register StubFailureTrampolineFrame::constant_pool_pointer_register() {
27 UNREACHABLE(); 28 UNREACHABLE();
28 return no_reg; 29 return no_reg;
29 } 30 }
30 31
31 32
32 } // namespace internal 33 } // namespace internal
33 } // namespace v8 34 } // namespace v8
34 35
35 #endif // V8_TARGET_ARCH_IA32 36 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698