| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_ASSEMBLER_ARM64_H_ | 5 #ifndef VM_ASSEMBLER_ARM64_H_ |
| 6 #define VM_ASSEMBLER_ARM64_H_ | 6 #define VM_ASSEMBLER_ARM64_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_arm64.h directly; use assembler.h instead. | 9 #error Do not include assembler_arm64.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1366 void EnterDartFrameWithInfo(intptr_t frame_size, Register new_pp); | 1366 void EnterDartFrameWithInfo(intptr_t frame_size, Register new_pp); |
| 1367 void EnterOsrFrame(intptr_t extra_size, Register new_pp); | 1367 void EnterOsrFrame(intptr_t extra_size, Register new_pp); |
| 1368 void LeaveDartFrame(); | 1368 void LeaveDartFrame(); |
| 1369 | 1369 |
| 1370 void EnterCallRuntimeFrame(intptr_t frame_size); | 1370 void EnterCallRuntimeFrame(intptr_t frame_size); |
| 1371 void LeaveCallRuntimeFrame(); | 1371 void LeaveCallRuntimeFrame(); |
| 1372 void CallRuntime(const RuntimeEntry& entry, intptr_t argument_count); | 1372 void CallRuntime(const RuntimeEntry& entry, intptr_t argument_count); |
| 1373 | 1373 |
| 1374 // Set up a stub frame so that the stack traversal code can easily identify | 1374 // Set up a stub frame so that the stack traversal code can easily identify |
| 1375 // a stub frame. | 1375 // a stub frame. |
| 1376 void EnterStubFrame(bool load_pp = false); | 1376 void EnterStubFrame(); |
| 1377 void LeaveStubFrame(); | 1377 void LeaveStubFrame(); |
| 1378 | 1378 |
| 1379 void UpdateAllocationStats(intptr_t cid, | 1379 void UpdateAllocationStats(intptr_t cid, |
| 1380 Register pp, | 1380 Register pp, |
| 1381 Heap::Space space); | 1381 Heap::Space space); |
| 1382 | 1382 |
| 1383 void UpdateAllocationStatsWithSize(intptr_t cid, | 1383 void UpdateAllocationStatsWithSize(intptr_t cid, |
| 1384 Register size_reg, | 1384 Register size_reg, |
| 1385 Register pp, | 1385 Register pp, |
| 1386 Heap::Space space); | 1386 Heap::Space space); |
| (...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1935 Register value, | 1935 Register value, |
| 1936 Label* no_update); | 1936 Label* no_update); |
| 1937 | 1937 |
| 1938 DISALLOW_ALLOCATION(); | 1938 DISALLOW_ALLOCATION(); |
| 1939 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1939 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1940 }; | 1940 }; |
| 1941 | 1941 |
| 1942 } // namespace dart | 1942 } // namespace dart |
| 1943 | 1943 |
| 1944 #endif // VM_ASSEMBLER_ARM64_H_ | 1944 #endif // VM_ASSEMBLER_ARM64_H_ |
| OLD | NEW |