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

Side by Side Diff: src/arm64/builtins-arm64.cc

Issue 2031123003: Avoid creating weak cells for literal arrays that are empty of literals. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ports. Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #if V8_TARGET_ARCH_ARM64 5 #if V8_TARGET_ARCH_ARM64
6 6
7 #include "src/arm64/frames-arm64.h" 7 #include "src/arm64/frames-arm64.h"
8 #include "src/codegen.h" 8 #include "src/codegen.h"
9 #include "src/debug/debug.h" 9 #include "src/debug/debug.h"
10 #include "src/deoptimizer.h" 10 #include "src/deoptimizer.h"
(...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after
1279 SharedFunctionInfo::kOffsetToPreviousContext)); 1279 SharedFunctionInfo::kOffsetToPreviousContext));
1280 __ Ldr(temp, FieldMemOperand(temp, WeakCell::kValueOffset)); 1280 __ Ldr(temp, FieldMemOperand(temp, WeakCell::kValueOffset));
1281 __ Cmp(temp, native_context); 1281 __ Cmp(temp, native_context);
1282 __ B(ne, &loop_bottom); 1282 __ B(ne, &loop_bottom);
1283 // OSR id set to none? 1283 // OSR id set to none?
1284 __ Ldr(temp, FieldMemOperand(array_pointer, 1284 __ Ldr(temp, FieldMemOperand(array_pointer,
1285 SharedFunctionInfo::kOffsetToPreviousOsrAstId)); 1285 SharedFunctionInfo::kOffsetToPreviousOsrAstId));
1286 const int bailout_id = BailoutId::None().ToInt(); 1286 const int bailout_id = BailoutId::None().ToInt();
1287 __ Cmp(temp, Operand(Smi::FromInt(bailout_id))); 1287 __ Cmp(temp, Operand(Smi::FromInt(bailout_id)));
1288 __ B(ne, &loop_bottom); 1288 __ B(ne, &loop_bottom);
1289
1289 // Literals available? 1290 // Literals available?
1291 Label got_literals, maybe_cleared_weakcell;
1292 Register temp2 = x7;
1290 __ Ldr(temp, FieldMemOperand(array_pointer, 1293 __ Ldr(temp, FieldMemOperand(array_pointer,
1291 SharedFunctionInfo::kOffsetToPreviousLiterals)); 1294 SharedFunctionInfo::kOffsetToPreviousLiterals));
1295 // temp contains either a WeakCell pointing to the literals array or the
1296 // literals array directly.
1297 STATIC_ASSERT(WeakCell::kValueOffset == FixedArray::kLengthOffset);
1298 __ Ldr(temp2, FieldMemOperand(temp, WeakCell::kValueOffset));
1299 __ JumpIfSmi(temp2, &maybe_cleared_weakcell);
1300 // temp2 is a pointer, therefore temp is a WeakCell pointing to a literals
1301 // array.
1292 __ Ldr(temp, FieldMemOperand(temp, WeakCell::kValueOffset)); 1302 __ Ldr(temp, FieldMemOperand(temp, WeakCell::kValueOffset));
1293 __ JumpIfSmi(temp, &gotta_call_runtime); 1303 __ jmp(&got_literals);
1304
1305 // r4 is a smi. If it's 0, then we are looking at a cleared WeakCell
1306 // around the literals array, and we should visit the runtime. If it's > 0,
1307 // then temp already contains the literals array.
1308 __ bind(&maybe_cleared_weakcell);
1309 __ Cmp(temp2, Operand(Smi::FromInt(0)));
1310 __ B(eq, &gotta_call_runtime);
1294 1311
1295 // Save the literals in the closure. 1312 // Save the literals in the closure.
1313 __ bind(&got_literals);
1296 __ Str(temp, FieldMemOperand(closure, JSFunction::kLiteralsOffset)); 1314 __ Str(temp, FieldMemOperand(closure, JSFunction::kLiteralsOffset));
1297 __ RecordWriteField(closure, JSFunction::kLiteralsOffset, temp, x7, 1315 __ RecordWriteField(closure, JSFunction::kLiteralsOffset, temp, x7,
1298 kLRHasNotBeenSaved, kDontSaveFPRegs, EMIT_REMEMBERED_SET, 1316 kLRHasNotBeenSaved, kDontSaveFPRegs, EMIT_REMEMBERED_SET,
1299 OMIT_SMI_CHECK); 1317 OMIT_SMI_CHECK);
1300 1318
1301 // Code available? 1319 // Code available?
1302 Register entry = x7; 1320 Register entry = x7;
1303 __ Ldr(entry, 1321 __ Ldr(entry,
1304 FieldMemOperand(array_pointer, 1322 FieldMemOperand(array_pointer,
1305 SharedFunctionInfo::kOffsetToPreviousCachedCode)); 1323 SharedFunctionInfo::kOffsetToPreviousCachedCode));
(...skipping 1581 matching lines...) Expand 10 before | Expand all | Expand 10 after
2887 } 2905 }
2888 } 2906 }
2889 2907
2890 2908
2891 #undef __ 2909 #undef __
2892 2910
2893 } // namespace internal 2911 } // namespace internal
2894 } // namespace v8 2912 } // namespace v8
2895 2913
2896 #endif // V8_TARGET_ARCH_ARM 2914 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/arm/builtins-arm.cc ('k') | src/ia32/builtins-ia32.cc » ('j') | src/type-feedback-vector.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698