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

Unified Diff: runtime/vm/assembler_x64.h

Issue 735543003: Range feedback for binary integer operations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/assembler_mips_test.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_x64.h
diff --git a/runtime/vm/assembler_x64.h b/runtime/vm/assembler_x64.h
index 44d45960e009962f17747a99c432ac507964ac69..3fdde8c36b9fdb9d34bef1014c1da8565eb3f776 100644
--- a/runtime/vm/assembler_x64.h
+++ b/runtime/vm/assembler_x64.h
@@ -526,6 +526,7 @@ class Assembler : public ValueObject {
void orl(Register dst, Register src);
void orl(Register dst, const Immediate& imm);
+ void orl(const Address& dst, Register src);
void xorl(Register dst, Register src);
@@ -829,6 +830,13 @@ class Assembler : public ValueObject {
sarq(reg, Immediate(kSmiTagSize));
}
+ void ComputeRange(Register result, Register value, Label* miss);
+ void UpdateRangeFeedback(Register value,
+ intptr_t index,
+ Register ic_data,
+ Register scratch,
+ Label* miss);
+
int PreferredLoopAlignment() { return 16; }
void Align(int alignment, intptr_t offset);
void Bind(Label* label);
« no previous file with comments | « runtime/vm/assembler_mips_test.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698