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

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

Issue 1115973005: Revert of Collect type feedback on result of Math.[round|ceil|floor] (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
« no previous file with comments | « src/x64/macro-assembler-x64.h ('k') | test/mjsunit/math-ceil-minus-zero.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/macro-assembler-x64.cc
diff --git a/src/x64/macro-assembler-x64.cc b/src/x64/macro-assembler-x64.cc
index e6a06dbc08b5220b3230eed33de09cec662ac56b..0e70826df2297d003f28c3de27577394fd9b57a2 100644
--- a/src/x64/macro-assembler-x64.cc
+++ b/src/x64/macro-assembler-x64.cc
@@ -730,15 +730,6 @@
// Load the JavaScript builtin function from the builtins object.
GetBuiltinFunction(rdi, id);
movp(target, FieldOperand(rdi, JSFunction::kCodeEntryOffset));
-}
-
-
-void MacroAssembler::BranchIfNotBuiltin(Register function, Register temp,
- BuiltinFunctionId id, Label* miss) {
- movp(temp, FieldOperand(function, JSFunction::kSharedFunctionInfoOffset));
- movp(temp, FieldOperand(temp, SharedFunctionInfo::kFunctionDataOffset));
- Cmp(temp, Smi::FromInt(id));
- j(not_equal, miss);
}
« no previous file with comments | « src/x64/macro-assembler-x64.h ('k') | test/mjsunit/math-ceil-minus-zero.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698