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

Side by Side Diff: src/arm/simulator-arm.cc

Issue 1299563003: Remove grab-bag includes of v8.h from architecture ports. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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/arm/macro-assembler-arm.cc ('k') | src/arm64/assembler-arm64.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 <stdarg.h> 5 #include <stdarg.h>
6 #include <stdlib.h> 6 #include <stdlib.h>
7 #include <cmath> 7 #include <cmath>
8 8
9 #include "src/v8.h"
10
11 #if V8_TARGET_ARCH_ARM 9 #if V8_TARGET_ARCH_ARM
12 10
13 #include "src/arm/constants-arm.h" 11 #include "src/arm/constants-arm.h"
14 #include "src/arm/simulator-arm.h" 12 #include "src/arm/simulator-arm.h"
15 #include "src/assembler.h" 13 #include "src/assembler.h"
16 #include "src/base/bits.h" 14 #include "src/base/bits.h"
17 #include "src/codegen.h" 15 #include "src/codegen.h"
18 #include "src/disasm.h" 16 #include "src/disasm.h"
19 17
20 #if defined(USE_SIMULATOR) 18 #if defined(USE_SIMULATOR)
(...skipping 4129 matching lines...) Expand 10 before | Expand all | Expand 10 after
4150 set_register(sp, current_sp + sizeof(uintptr_t)); 4148 set_register(sp, current_sp + sizeof(uintptr_t));
4151 return address; 4149 return address;
4152 } 4150 }
4153 4151
4154 } // namespace internal 4152 } // namespace internal
4155 } // namespace v8 4153 } // namespace v8
4156 4154
4157 #endif // USE_SIMULATOR 4155 #endif // USE_SIMULATOR
4158 4156
4159 #endif // V8_TARGET_ARCH_ARM 4157 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/arm64/assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698