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

Unified Diff: src/a64/full-codegen-a64.cc

Issue 151163005: A64: Synchronize with r16356. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 11 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/a64/cpu-a64.cc ('k') | src/a64/lithium-a64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/a64/full-codegen-a64.cc
diff --git a/src/a64/full-codegen-a64.cc b/src/a64/full-codegen-a64.cc
index 090ddc457e6dd734b0a87b9093a705bc3bc58fcc..27cb0464d0b01dd2b1737942a69b95aa50b5d4ad 100644
--- a/src/a64/full-codegen-a64.cc
+++ b/src/a64/full-codegen-a64.cc
@@ -1333,8 +1333,7 @@ void FullCodeGenerator::EmitNewClosure(Handle<SharedFunctionInfo> info,
scope()->is_function_scope() &&
info->num_literals() == 0) {
FastNewClosureStub stub(info->language_mode(), info->is_generator());
- __ Mov(x11, Operand(info));
- __ Push(x11);
+ __ Mov(x2, Operand(info));
__ CallStub(&stub);
} else {
__ Mov(x11, Operand(info));
@@ -2835,10 +2834,6 @@ void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
__ Cmp(proto_map, string_proto);
__ B(ne, if_false);
- // Set the bit in the map to indicate that it has been checked safe for
- // default valueOf and set true result.
- __ Orr(bitfield2, bitfield2, 1 << Map::kStringWrapperSafeForDefaultValueOf);
- __ Strb(bitfield2, FieldMemOperand(map, Map::kBitField2Offset));
__ B(if_true);
PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
« no previous file with comments | « src/a64/cpu-a64.cc ('k') | src/a64/lithium-a64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698