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

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

Issue 2132933003: VM: Remove collection of unused range feedback. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: remove comment Created 4 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
« no previous file with comments | « runtime/vm/assembler_ia32_test.cc ('k') | runtime/vm/assembler_mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 PushObject(const Object& object); 1542 void PushObject(const Object& object);
1543 1543
1544 void LoadIsolate(Register result); 1544 void LoadIsolate(Register result);
1545 1545
1546 void LoadClassId(Register result, Register object); 1546 void LoadClassId(Register result, Register object);
1547 void LoadClassById(Register result, Register class_id); 1547 void LoadClassById(Register result, Register class_id);
1548 void LoadClass(Register result, Register object); 1548 void LoadClass(Register result, Register object);
1549 void LoadClassIdMayBeSmi(Register result, Register object); 1549 void LoadClassIdMayBeSmi(Register result, Register object);
1550 void LoadTaggedClassIdMayBeSmi(Register result, Register object); 1550 void LoadTaggedClassIdMayBeSmi(Register result, Register object);
1551 1551
1552 void ComputeRange(Register result,
1553 Register value,
1554 Label* miss);
1555
1556 void UpdateRangeFeedback(Register value,
1557 intptr_t index,
1558 Register ic_data,
1559 Register scratch,
1560 Label* miss);
1561
1562 void StoreIntoObject(Register object, // Object we are storing into. 1552 void StoreIntoObject(Register object, // Object we are storing into.
1563 const Address& dest, // Where we are storing into. 1553 const Address& dest, // Where we are storing into.
1564 Register value, // Value we are storing. 1554 Register value, // Value we are storing.
1565 bool can_value_be_smi = true); 1555 bool can_value_be_smi = true);
1566 void StoreIntoObjectOffset(Register object, 1556 void StoreIntoObjectOffset(Register object,
1567 int32_t offset, 1557 int32_t offset,
1568 Register value, 1558 Register value,
1569 bool can_value_be_smi = true); 1559 bool can_value_be_smi = true);
1570 1560
1571 void StoreIntoObjectNoBarrier(Register object, 1561 void StoreIntoObjectNoBarrier(Register object,
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
1759 Register value, 1749 Register value,
1760 Label* no_update); 1750 Label* no_update);
1761 1751
1762 DISALLOW_ALLOCATION(); 1752 DISALLOW_ALLOCATION();
1763 DISALLOW_COPY_AND_ASSIGN(Assembler); 1753 DISALLOW_COPY_AND_ASSIGN(Assembler);
1764 }; 1754 };
1765 1755
1766 } // namespace dart 1756 } // namespace dart
1767 1757
1768 #endif // VM_ASSEMBLER_MIPS_H_ 1758 #endif // VM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « runtime/vm/assembler_ia32_test.cc ('k') | runtime/vm/assembler_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698