| 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/mips64/constants-mips64.h" | 44 #include "src/mips64/constants-mips64.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(a4) V(a5) V(a6) V(a7) V(t0) V(t1) V(t2) V(t3) \ | 52 V(a4) V(a5) V(a6) V(a7) V(t0) V(t1) V(t2) V(t3) \ |
| 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 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1447 public: | 1446 public: |
| 1448 explicit EnsureSpace(Assembler* assembler) { | 1447 explicit EnsureSpace(Assembler* assembler) { |
| 1449 assembler->CheckBuffer(); | 1448 assembler->CheckBuffer(); |
| 1450 } | 1449 } |
| 1451 }; | 1450 }; |
| 1452 | 1451 |
| 1453 } // namespace internal | 1452 } // namespace internal |
| 1454 } // namespace v8 | 1453 } // namespace v8 |
| 1455 | 1454 |
| 1456 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1455 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |