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

Side by Side Diff: src/arm/builtins-arm.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
« no previous file with comments | « no previous file | src/arm64/builtins-arm64.cc » ('j') | src/type-feedback-vector.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_ARM 5 #if V8_TARGET_ARCH_ARM
6 6
7 #include "src/codegen.h" 7 #include "src/codegen.h"
8 #include "src/debug/debug.h" 8 #include "src/debug/debug.h"
9 #include "src/deoptimizer.h" 9 #include "src/deoptimizer.h"
10 #include "src/full-codegen/full-codegen.h" 10 #include "src/full-codegen/full-codegen.h"
(...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 SharedFunctionInfo::kOffsetToPreviousContext)); 1268 SharedFunctionInfo::kOffsetToPreviousContext));
1269 __ ldr(temp, FieldMemOperand(temp, WeakCell::kValueOffset)); 1269 __ ldr(temp, FieldMemOperand(temp, WeakCell::kValueOffset));
1270 __ cmp(temp, native_context); 1270 __ cmp(temp, native_context);
1271 __ b(ne, &loop_bottom); 1271 __ b(ne, &loop_bottom);
1272 // OSR id set to none? 1272 // OSR id set to none?
1273 __ ldr(temp, FieldMemOperand(array_pointer, 1273 __ ldr(temp, FieldMemOperand(array_pointer,
1274 SharedFunctionInfo::kOffsetToPreviousOsrAstId)); 1274 SharedFunctionInfo::kOffsetToPreviousOsrAstId));
1275 const int bailout_id = BailoutId::None().ToInt(); 1275 const int bailout_id = BailoutId::None().ToInt();
1276 __ cmp(temp, Operand(Smi::FromInt(bailout_id))); 1276 __ cmp(temp, Operand(Smi::FromInt(bailout_id)));
1277 __ b(ne, &loop_bottom); 1277 __ b(ne, &loop_bottom);
1278
1278 // Literals available? 1279 // Literals available?
1280 Label got_literals, maybe_cleared_weakcell;
1279 __ ldr(temp, FieldMemOperand(array_pointer, 1281 __ ldr(temp, FieldMemOperand(array_pointer,
1280 SharedFunctionInfo::kOffsetToPreviousLiterals)); 1282 SharedFunctionInfo::kOffsetToPreviousLiterals));
1283 // temp contains either a WeakCell pointing to the literals array or the
1284 // literals array directly.
1285 STATIC_ASSERT(WeakCell::kValueOffset == FixedArray::kLengthOffset);
1286 __ ldr(r4, FieldMemOperand(temp, WeakCell::kValueOffset));
1287 __ JumpIfSmi(r4, &maybe_cleared_weakcell);
1288 // r4 is a pointer, therefore temp is a WeakCell pointing to a literals array.
1281 __ ldr(temp, FieldMemOperand(temp, WeakCell::kValueOffset)); 1289 __ ldr(temp, FieldMemOperand(temp, WeakCell::kValueOffset));
1282 __ JumpIfSmi(temp, &gotta_call_runtime); 1290 __ jmp(&got_literals);
1291
1292 // r4 is a smi. If it's 0, then we are looking at a cleared WeakCell
1293 // around the literals array, and we should visit the runtime. If it's > 0,
1294 // then temp already contains the literals array.
1295 __ bind(&maybe_cleared_weakcell);
1296 __ cmp(r4, Operand(Smi::FromInt(0)));
1297 __ b(eq, &gotta_call_runtime);
1283 1298
1284 // Save the literals in the closure. 1299 // Save the literals in the closure.
1300 __ bind(&got_literals);
1285 __ ldr(r4, MemOperand(sp, 0)); 1301 __ ldr(r4, MemOperand(sp, 0));
1286 __ str(temp, FieldMemOperand(r4, JSFunction::kLiteralsOffset)); 1302 __ str(temp, FieldMemOperand(r4, JSFunction::kLiteralsOffset));
1287 __ push(index); 1303 __ push(index);
1288 __ RecordWriteField(r4, JSFunction::kLiteralsOffset, temp, index, 1304 __ RecordWriteField(r4, JSFunction::kLiteralsOffset, temp, index,
1289 kLRHasNotBeenSaved, kDontSaveFPRegs, EMIT_REMEMBERED_SET, 1305 kLRHasNotBeenSaved, kDontSaveFPRegs, EMIT_REMEMBERED_SET,
1290 OMIT_SMI_CHECK); 1306 OMIT_SMI_CHECK);
1291 __ pop(index); 1307 __ pop(index);
1292 1308
1293 // Code available? 1309 // Code available?
1294 Register entry = r4; 1310 Register entry = r4;
(...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after
2775 } 2791 }
2776 } 2792 }
2777 2793
2778 2794
2779 #undef __ 2795 #undef __
2780 2796
2781 } // namespace internal 2797 } // namespace internal
2782 } // namespace v8 2798 } // namespace v8
2783 2799
2784 #endif // V8_TARGET_ARCH_ARM 2800 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm64/builtins-arm64.cc » ('j') | src/type-feedback-vector.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698