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

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

Issue 304153016: Use full include paths everywhere (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/mips/simulator-mips.h ('k') | src/mips/stub-cache-mips.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 <limits.h> 5 #include <limits.h>
6 #include <stdarg.h> 6 #include <stdarg.h>
7 #include <stdlib.h> 7 #include <stdlib.h>
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "v8.h" 10 #include "src/v8.h"
11 11
12 #if V8_TARGET_ARCH_MIPS 12 #if V8_TARGET_ARCH_MIPS
13 13
14 #include "cpu.h" 14 #include "src/cpu.h"
15 #include "disasm.h" 15 #include "src/disasm.h"
16 #include "assembler.h" 16 #include "src/assembler.h"
17 #include "globals.h" // Need the BitCast. 17 #include "src/globals.h" // Need the BitCast.
18 #include "mips/constants-mips.h" 18 #include "src/mips/constants-mips.h"
19 #include "mips/simulator-mips.h" 19 #include "src/mips/simulator-mips.h"
20 20
21 21
22 // Only build the simulator if not compiling for real MIPS hardware. 22 // Only build the simulator if not compiling for real MIPS hardware.
23 #if defined(USE_SIMULATOR) 23 #if defined(USE_SIMULATOR)
24 24
25 namespace v8 { 25 namespace v8 {
26 namespace internal { 26 namespace internal {
27 27
28 // Utils functions. 28 // Utils functions.
29 bool HaveSameSign(int32_t a, int32_t b) { 29 bool HaveSameSign(int32_t a, int32_t b) {
(...skipping 2889 matching lines...) Expand 10 before | Expand all | Expand 10 after
2919 } 2919 }
2920 2920
2921 2921
2922 #undef UNSUPPORTED 2922 #undef UNSUPPORTED
2923 2923
2924 } } // namespace v8::internal 2924 } } // namespace v8::internal
2925 2925
2926 #endif // USE_SIMULATOR 2926 #endif // USE_SIMULATOR
2927 2927
2928 #endif // V8_TARGET_ARCH_MIPS 2928 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/mips/simulator-mips.h ('k') | src/mips/stub-cache-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698