| 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 13 matching lines...) Expand all Loading... |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #include <stdlib.h> | 28 #include <stdlib.h> |
| 29 #include <limits.h> | 29 #include <limits.h> |
| 30 #include <cmath> | 30 #include <cmath> |
| 31 #include <cstdarg> | 31 #include <cstdarg> |
| 32 #include "v8.h" | 32 #include "v8.h" |
| 33 | 33 |
| 34 #if defined(V8_TARGET_ARCH_MIPS) | 34 #if V8_TARGET_ARCH_MIPS |
| 35 | 35 |
| 36 #include "cpu.h" | 36 #include "cpu.h" |
| 37 #include "disasm.h" | 37 #include "disasm.h" |
| 38 #include "assembler.h" | 38 #include "assembler.h" |
| 39 #include "globals.h" // Need the BitCast. | 39 #include "globals.h" // Need the BitCast. |
| 40 #include "mips/constants-mips.h" | 40 #include "mips/constants-mips.h" |
| 41 #include "mips/simulator-mips.h" | 41 #include "mips/simulator-mips.h" |
| 42 | 42 |
| 43 | 43 |
| 44 // Only build the simulator if not compiling for real MIPS hardware. | 44 // Only build the simulator if not compiling for real MIPS hardware. |
| (...skipping 2948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2993 } | 2993 } |
| 2994 | 2994 |
| 2995 | 2995 |
| 2996 #undef UNSUPPORTED | 2996 #undef UNSUPPORTED |
| 2997 | 2997 |
| 2998 } } // namespace v8::internal | 2998 } } // namespace v8::internal |
| 2999 | 2999 |
| 3000 #endif // USE_SIMULATOR | 3000 #endif // USE_SIMULATOR |
| 3001 | 3001 |
| 3002 #endif // V8_TARGET_ARCH_MIPS | 3002 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |