| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 | 35 |
| 36 #ifndef V8_MIPS_ASSEMBLER_MIPS_H_ | 36 #ifndef V8_MIPS_ASSEMBLER_MIPS_H_ |
| 37 #define V8_MIPS_ASSEMBLER_MIPS_H_ | 37 #define V8_MIPS_ASSEMBLER_MIPS_H_ |
| 38 | 38 |
| 39 #include <stdio.h> | 39 #include <stdio.h> |
| 40 | 40 |
| 41 #include <set> | 41 #include <set> |
| 42 | 42 |
| 43 #include "src/assembler.h" | 43 #include "src/assembler.h" |
| 44 #include "src/compiler.h" | |
| 45 #include "src/mips/constants-mips.h" | 44 #include "src/mips/constants-mips.h" |
| 46 | 45 |
| 47 namespace v8 { | 46 namespace v8 { |
| 48 namespace internal { | 47 namespace internal { |
| 49 | 48 |
| 50 // clang-format off | 49 // clang-format off |
| 51 #define GENERAL_REGISTERS(V) \ | 50 #define GENERAL_REGISTERS(V) \ |
| 52 V(zero_reg) V(at) V(v0) V(v1) V(a0) V(a1) V(a2) V(a3) \ | 51 V(zero_reg) V(at) V(v0) V(v1) V(a0) V(a1) V(a2) V(a3) \ |
| 53 V(t0) V(t1) V(t2) V(t3) V(t4) V(t5) V(t6) V(t7) \ | 52 V(t0) V(t1) V(t2) V(t3) V(t4) V(t5) V(t6) V(t7) \ |
| 54 V(s0) V(s1) V(s2) V(s3) V(s4) V(s5) V(s6) V(s7) V(t8) V(t9) \ | 53 V(s0) V(s1) V(s2) V(s3) V(s4) V(s5) V(s6) V(s7) V(t8) V(t9) \ |
| (...skipping 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1390 public: | 1389 public: |
| 1391 explicit EnsureSpace(Assembler* assembler) { | 1390 explicit EnsureSpace(Assembler* assembler) { |
| 1392 assembler->CheckBuffer(); | 1391 assembler->CheckBuffer(); |
| 1393 } | 1392 } |
| 1394 }; | 1393 }; |
| 1395 | 1394 |
| 1396 } // namespace internal | 1395 } // namespace internal |
| 1397 } // namespace v8 | 1396 } // namespace v8 |
| 1398 | 1397 |
| 1399 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1398 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |