| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |