| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ | 5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ |
| 6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ | 6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "src/bailout-reason.h" | 10 #include "src/bailout-reason.h" |
| (...skipping 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1620 Register scratch0, | 1620 Register scratch0, |
| 1621 Register scratch1, | 1621 Register scratch1, |
| 1622 Register scratch2, | 1622 Register scratch2, |
| 1623 Register scratch3); | 1623 Register scratch3); |
| 1624 | 1624 |
| 1625 // --------------------------------------------------------------------------- | 1625 // --------------------------------------------------------------------------- |
| 1626 // Frames. | 1626 // Frames. |
| 1627 | 1627 |
| 1628 // Activation support. | 1628 // Activation support. |
| 1629 void EnterFrame(StackFrame::Type type); | 1629 void EnterFrame(StackFrame::Type type); |
| 1630 void EnterFrame(StackFrame::Type type, bool load_constant_pool_pointer_reg); |
| 1630 void LeaveFrame(StackFrame::Type type); | 1631 void LeaveFrame(StackFrame::Type type); |
| 1631 | 1632 |
| 1632 // Returns map with validated enum cache in object register. | 1633 // Returns map with validated enum cache in object register. |
| 1633 void CheckEnumCache(Register object, | 1634 void CheckEnumCache(Register object, |
| 1634 Register null_value, | 1635 Register null_value, |
| 1635 Register scratch0, | 1636 Register scratch0, |
| 1636 Register scratch1, | 1637 Register scratch1, |
| 1637 Register scratch2, | 1638 Register scratch2, |
| 1638 Register scratch3, | 1639 Register scratch3, |
| 1639 Label* call_runtime); | 1640 Label* call_runtime); |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2329 #error "Unsupported option" | 2330 #error "Unsupported option" |
| 2330 #define CODE_COVERAGE_STRINGIFY(x) #x | 2331 #define CODE_COVERAGE_STRINGIFY(x) #x |
| 2331 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) | 2332 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) |
| 2332 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 2333 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 2333 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 2334 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 2334 #else | 2335 #else |
| 2335 #define ACCESS_MASM(masm) masm-> | 2336 #define ACCESS_MASM(masm) masm-> |
| 2336 #endif | 2337 #endif |
| 2337 | 2338 |
| 2338 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ | 2339 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ |
| OLD | NEW |