Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: runtime/vm/assembler_mips.h

Issue 1231463002: Don't bother trying to reuse object pool entries for ICs, type test caches, or edge counters as the… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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_MIPS_H_ 5 #ifndef VM_ASSEMBLER_MIPS_H_
6 #define VM_ASSEMBLER_MIPS_H_ 6 #define VM_ASSEMBLER_MIPS_H_
7 7
8 #ifndef VM_ASSEMBLER_H_ 8 #ifndef VM_ASSEMBLER_H_
9 #error Do not include assembler_mips.h directly; use assembler.h instead. 9 #error Do not include assembler_mips.h directly; use assembler.h instead.
10 #endif 10 #endif
(...skipping 1521 matching lines...) Expand 10 before | Expand all | Expand 10 after
1532 void ReserveAlignedFrameSpace(intptr_t frame_space); 1532 void ReserveAlignedFrameSpace(intptr_t frame_space);
1533 1533
1534 // Create a frame for calling into runtime that preserves all volatile 1534 // Create a frame for calling into runtime that preserves all volatile
1535 // registers. Frame's SP is guaranteed to be correctly aligned and 1535 // registers. Frame's SP is guaranteed to be correctly aligned and
1536 // frame_space bytes are reserved under it. 1536 // frame_space bytes are reserved under it.
1537 void EnterCallRuntimeFrame(intptr_t frame_space); 1537 void EnterCallRuntimeFrame(intptr_t frame_space);
1538 void LeaveCallRuntimeFrame(); 1538 void LeaveCallRuntimeFrame();
1539 1539
1540 void LoadWordFromPoolOffset(Register rd, int32_t offset); 1540 void LoadWordFromPoolOffset(Register rd, int32_t offset);
1541 void LoadObject(Register rd, const Object& object); 1541 void LoadObject(Register rd, const Object& object);
1542 void LoadUniqueObject(Register rd, const Object& object);
1542 void LoadExternalLabel(Register rd, 1543 void LoadExternalLabel(Register rd,
1543 const ExternalLabel* label, 1544 const ExternalLabel* label,
1544 Patchability patchable); 1545 Patchability patchable);
1545 void PushObject(const Object& object); 1546 void PushObject(const Object& object);
1546 1547
1547 void LoadIsolate(Register result); 1548 void LoadIsolate(Register result);
1548 1549
1549 void LoadClassId(Register result, Register object); 1550 void LoadClassId(Register result, Register object);
1550 void LoadClassById(Register result, Register class_id); 1551 void LoadClassById(Register result, Register class_id);
1551 void LoadClass(Register result, Register object); 1552 void LoadClass(Register result, Register object);
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
1750 Register value, 1751 Register value,
1751 Label* no_update); 1752 Label* no_update);
1752 1753
1753 DISALLOW_ALLOCATION(); 1754 DISALLOW_ALLOCATION();
1754 DISALLOW_COPY_AND_ASSIGN(Assembler); 1755 DISALLOW_COPY_AND_ASSIGN(Assembler);
1755 }; 1756 };
1756 1757
1757 } // namespace dart 1758 } // namespace dart
1758 1759
1759 #endif // VM_ASSEMBLER_MIPS_H_ 1760 #endif // VM_ASSEMBLER_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698