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

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

Issue 145583014: A fix for the globals.h TODO in libplatform. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: fix header include guard Created 6 years, 10 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/libplatform/worker-thread.h ('k') | src/misc-intrinsics.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 19 matching lines...) Expand all
30 #include <stdlib.h> 30 #include <stdlib.h>
31 #include <cmath> 31 #include <cmath>
32 32
33 #include "v8.h" 33 #include "v8.h"
34 34
35 #if V8_TARGET_ARCH_MIPS 35 #if V8_TARGET_ARCH_MIPS
36 36
37 #include "cpu.h" 37 #include "cpu.h"
38 #include "disasm.h" 38 #include "disasm.h"
39 #include "assembler.h" 39 #include "assembler.h"
40 #include "globals.h" // Need the BitCast. 40 #include "base/globals.h" // Need the BitCast.
41 #include "mips/constants-mips.h" 41 #include "mips/constants-mips.h"
42 #include "mips/simulator-mips.h" 42 #include "mips/simulator-mips.h"
43 43
44 44
45 // Only build the simulator if not compiling for real MIPS hardware. 45 // Only build the simulator if not compiling for real MIPS hardware.
46 #if defined(USE_SIMULATOR) 46 #if defined(USE_SIMULATOR)
47 47
48 namespace v8 { 48 namespace v8 {
49 namespace internal { 49 namespace internal {
50 50
(...skipping 2877 matching lines...) Expand 10 before | Expand all | Expand 10 after
2928 } 2928 }
2929 2929
2930 2930
2931 #undef UNSUPPORTED 2931 #undef UNSUPPORTED
2932 2932
2933 } } // namespace v8::internal 2933 } } // namespace v8::internal
2934 2934
2935 #endif // USE_SIMULATOR 2935 #endif // USE_SIMULATOR
2936 2936
2937 #endif // V8_TARGET_ARCH_MIPS 2937 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/libplatform/worker-thread.h ('k') | src/misc-intrinsics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698