| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 STATIC_ASSERT(kJSSPCode == 28); | 335 STATIC_ASSERT(kJSSPCode == 28); |
| 336 const Register jssp = x28; | 336 const Register jssp = x28; |
| 337 const Register wjssp = w28; | 337 const Register wjssp = w28; |
| 338 const Register fp = x29; | 338 const Register fp = x29; |
| 339 const Register lr = x30; | 339 const Register lr = x30; |
| 340 const Register xzr = x31; | 340 const Register xzr = x31; |
| 341 const Register wzr = w31; | 341 const Register wzr = w31; |
| 342 | 342 |
| 343 // Crankshaft double scratch register. | 343 // Crankshaft double scratch register. |
| 344 const FPRegister crankshaft_fp_scratch = d29; | 344 const FPRegister crankshaft_fp_scratch = d29; |
| 345 // Keeps the 0 double value. |
| 346 const FPRegister fp_zero = d30; |
| 345 // MacroAssembler double scratch register. | 347 // MacroAssembler double scratch register. |
| 346 const FPRegister fp_scratch = d31; | 348 const FPRegister fp_scratch = d31; |
| 347 | 349 |
| 348 // AreAliased returns true if any of the named registers overlap. Arguments set | 350 // AreAliased returns true if any of the named registers overlap. Arguments set |
| 349 // to NoReg are ignored. The system stack pointer may be specified. | 351 // to NoReg are ignored. The system stack pointer may be specified. |
| 350 bool AreAliased(const CPURegister& reg1, | 352 bool AreAliased(const CPURegister& reg1, |
| 351 const CPURegister& reg2, | 353 const CPURegister& reg2, |
| 352 const CPURegister& reg3 = NoReg, | 354 const CPURegister& reg3 = NoReg, |
| 353 const CPURegister& reg4 = NoReg, | 355 const CPURegister& reg4 = NoReg, |
| 354 const CPURegister& reg5 = NoReg, | 356 const CPURegister& reg5 = NoReg, |
| (...skipping 1676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2031 class EnsureSpace BASE_EMBEDDED { | 2033 class EnsureSpace BASE_EMBEDDED { |
| 2032 public: | 2034 public: |
| 2033 explicit EnsureSpace(Assembler* assembler) { | 2035 explicit EnsureSpace(Assembler* assembler) { |
| 2034 assembler->CheckBuffer(); | 2036 assembler->CheckBuffer(); |
| 2035 } | 2037 } |
| 2036 }; | 2038 }; |
| 2037 | 2039 |
| 2038 } } // namespace v8::internal | 2040 } } // namespace v8::internal |
| 2039 | 2041 |
| 2040 #endif // V8_A64_ASSEMBLER_A64_H_ | 2042 #endif // V8_A64_ASSEMBLER_A64_H_ |
| OLD | NEW |