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

Unified Diff: src/x64/assembler-x64.cc

Issue 2745753002: [x64] Remove unused version of Assembler::jmp. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « src/x64/assembler-x64.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/assembler-x64.cc
diff --git a/src/x64/assembler-x64.cc b/src/x64/assembler-x64.cc
index 80ed6e15e2aef8da7b571b0e3ceae1ce2edbe2e8..45d3b5aea6d0134b7eca6c61cbc62771c99e45b5 100644
--- a/src/x64/assembler-x64.cc
+++ b/src/x64/assembler-x64.cc
@@ -1333,15 +1333,6 @@ void Assembler::jmp(Handle<Code> target, RelocInfo::Mode rmode) {
}
-void Assembler::jmp(Address entry, RelocInfo::Mode rmode) {
- DCHECK(RelocInfo::IsRuntimeEntry(rmode));
- EnsureSpace ensure_space(this);
- DCHECK(RelocInfo::IsRuntimeEntry(rmode));
- emit(0xE9);
- emit_runtime_entry(entry, rmode);
-}
-
-
void Assembler::jmp(Register target) {
EnsureSpace ensure_space(this);
// Opcode FF/4 r64.
« no previous file with comments | « src/x64/assembler-x64.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698