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

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

Issue 1217323002: Intrinsic version of Object.runtimeType (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: more 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 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after
1542 void LoadExternalLabel(Register rd, 1542 void LoadExternalLabel(Register rd,
1543 const ExternalLabel* label, 1543 const ExternalLabel* label,
1544 Patchability patchable); 1544 Patchability patchable);
1545 void PushObject(const Object& object); 1545 void PushObject(const Object& object);
1546 1546
1547 void LoadIsolate(Register result); 1547 void LoadIsolate(Register result);
1548 1548
1549 void LoadClassId(Register result, Register object); 1549 void LoadClassId(Register result, Register object);
1550 void LoadClassById(Register result, Register class_id); 1550 void LoadClassById(Register result, Register class_id);
1551 void LoadClass(Register result, Register object); 1551 void LoadClass(Register result, Register object);
1552 void LoadClassIdMayBeSmi(Register result, Register object);
1552 void LoadTaggedClassIdMayBeSmi(Register result, Register object); 1553 void LoadTaggedClassIdMayBeSmi(Register result, Register object);
1553 1554
1554 void ComputeRange(Register result, 1555 void ComputeRange(Register result,
1555 Register value, 1556 Register value,
1556 Label* miss); 1557 Label* miss);
1557 1558
1558 void UpdateRangeFeedback(Register value, 1559 void UpdateRangeFeedback(Register value,
1559 intptr_t index, 1560 intptr_t index,
1560 Register ic_data, 1561 Register ic_data,
1561 Register scratch, 1562 Register scratch,
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
1749 Register value, 1750 Register value,
1750 Label* no_update); 1751 Label* no_update);
1751 1752
1752 DISALLOW_ALLOCATION(); 1753 DISALLOW_ALLOCATION();
1753 DISALLOW_COPY_AND_ASSIGN(Assembler); 1754 DISALLOW_COPY_AND_ASSIGN(Assembler);
1754 }; 1755 };
1755 1756
1756 } // namespace dart 1757 } // namespace dart
1757 1758
1758 #endif // VM_ASSEMBLER_MIPS_H_ 1759 #endif // VM_ASSEMBLER_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698