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

Unified Diff: runtime/vm/assembler_arm64.cc

Issue 2856543002: Use off-heap data for class check instructions (Closed)
Patch Set: Feedback from Slava: rejig inheritance of CallTargets Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/assembler_arm64.cc
diff --git a/runtime/vm/assembler_arm64.cc b/runtime/vm/assembler_arm64.cc
index af6c89159241cc89f54417ad7da380a1607ddfaa..4fc5058332a244f328ca0f7bf3dea56c4355920f 100644
--- a/runtime/vm/assembler_arm64.cc
+++ b/runtime/vm/assembler_arm64.cc
@@ -620,6 +620,11 @@ void Assembler::BranchLinkWithEquivalence(const StubEntry& stub_entry,
}
+void Assembler::AddImmediate(Register dest, int64_t imm) {
+ AddImmediate(dest, dest, imm);
+}
+
+
void Assembler::AddImmediate(Register dest, Register rn, int64_t imm) {
Operand op;
if (imm == 0) {

Powered by Google App Engine
This is Rietveld 408576698