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

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

Issue 2592043003: PPC/s390: [TypeFeedbackVector] Root literal arrays in function literals slots (Closed)
Patch Set: Created 4 years 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/builtins/s390/builtins-s390.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_PPC 5 #if V8_TARGET_ARCH_PPC
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 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1362 Register map = r9; 1362 Register map = r9;
1363 Register index = r5; 1363 Register index = r5;
1364 __ LoadP(map, 1364 __ LoadP(map,
1365 FieldMemOperand(closure, JSFunction::kSharedFunctionInfoOffset)); 1365 FieldMemOperand(closure, JSFunction::kSharedFunctionInfoOffset));
1366 __ LoadP(map, 1366 __ LoadP(map,
1367 FieldMemOperand(map, SharedFunctionInfo::kOptimizedCodeMapOffset)); 1367 FieldMemOperand(map, SharedFunctionInfo::kOptimizedCodeMapOffset));
1368 __ LoadP(index, FieldMemOperand(map, FixedArray::kLengthOffset)); 1368 __ LoadP(index, FieldMemOperand(map, FixedArray::kLengthOffset));
1369 __ CmpSmiLiteral(index, Smi::FromInt(2), r0); 1369 __ CmpSmiLiteral(index, Smi::FromInt(2), r0);
1370 __ blt(&gotta_call_runtime); 1370 __ blt(&gotta_call_runtime);
1371 1371
1372 // Find literals.
1373 // r10 : native context 1372 // r10 : native context
1374 // r5 : length / index 1373 // r5 : length / index
1375 // r9 : optimized code map 1374 // r9 : optimized code map
1376 // r6 : new target 1375 // r6 : new target
1377 // r4 : closure 1376 // r4 : closure
1378 Register native_context = r10; 1377 Register native_context = r10;
1379 __ LoadP(native_context, NativeContextMemOperand()); 1378 __ LoadP(native_context, NativeContextMemOperand());
1380 1379
1381 __ bind(&loop_top); 1380 __ bind(&loop_top);
1382 Register temp = r11; 1381 Register temp = r11;
1383 Register array_pointer = r8; 1382 Register array_pointer = r8;
1384 1383
1385 // Does the native context match? 1384 // Does the native context match?
1386 __ SmiToPtrArrayOffset(array_pointer, index); 1385 __ SmiToPtrArrayOffset(array_pointer, index);
1387 __ add(array_pointer, map, array_pointer); 1386 __ add(array_pointer, map, array_pointer);
1388 __ LoadP(temp, FieldMemOperand(array_pointer, 1387 __ LoadP(temp, FieldMemOperand(array_pointer,
1389 SharedFunctionInfo::kOffsetToPreviousContext)); 1388 SharedFunctionInfo::kOffsetToPreviousContext));
1390 __ LoadP(temp, FieldMemOperand(temp, WeakCell::kValueOffset)); 1389 __ LoadP(temp, FieldMemOperand(temp, WeakCell::kValueOffset));
1391 __ cmp(temp, native_context); 1390 __ cmp(temp, native_context);
1392 __ bne(&loop_bottom); 1391 __ bne(&loop_bottom);
1393 // Literals available?
1394 __ LoadP(temp,
1395 FieldMemOperand(array_pointer,
1396 SharedFunctionInfo::kOffsetToPreviousLiterals));
1397 __ LoadP(temp, FieldMemOperand(temp, WeakCell::kValueOffset));
1398 __ JumpIfSmi(temp, &gotta_call_runtime);
1399
1400 // Save the literals in the closure.
1401 __ StoreP(temp, FieldMemOperand(closure, JSFunction::kLiteralsOffset), r0);
1402 __ RecordWriteField(closure, JSFunction::kLiteralsOffset, temp, r7,
1403 kLRHasNotBeenSaved, kDontSaveFPRegs, EMIT_REMEMBERED_SET,
1404 OMIT_SMI_CHECK);
1405 1392
1406 // Code available? 1393 // Code available?
1407 Register entry = r7; 1394 Register entry = r7;
1408 __ LoadP(entry, 1395 __ LoadP(entry,
1409 FieldMemOperand(array_pointer, 1396 FieldMemOperand(array_pointer,
1410 SharedFunctionInfo::kOffsetToPreviousCachedCode)); 1397 SharedFunctionInfo::kOffsetToPreviousCachedCode));
1411 __ LoadP(entry, FieldMemOperand(entry, WeakCell::kValueOffset)); 1398 __ LoadP(entry, FieldMemOperand(entry, WeakCell::kValueOffset));
1412 __ JumpIfSmi(entry, &try_shared); 1399 __ JumpIfSmi(entry, &try_shared);
1413 1400
1414 // Found literals and code. Get them into the closure and return. 1401 // Found code. Get it into the closure and return.
1415 // Store code entry in the closure. 1402 // Store code entry in the closure.
1416 __ addi(entry, entry, Operand(Code::kHeaderSize - kHeapObjectTag)); 1403 __ addi(entry, entry, Operand(Code::kHeaderSize - kHeapObjectTag));
1417 __ StoreP(entry, FieldMemOperand(closure, JSFunction::kCodeEntryOffset), r0); 1404 __ StoreP(entry, FieldMemOperand(closure, JSFunction::kCodeEntryOffset), r0);
1418 __ RecordWriteCodeEntryField(closure, entry, r8); 1405 __ RecordWriteCodeEntryField(closure, entry, r8);
1419 1406
1420 // Link the closure into the optimized function list. 1407 // Link the closure into the optimized function list.
1421 // r7 : code entry 1408 // r7 : code entry
1422 // r10: native context 1409 // r10: native context
1423 // r4 : closure 1410 // r4 : closure
1424 __ LoadP( 1411 __ LoadP(
(...skipping 13 matching lines...) Expand all
1438 __ RecordWriteContextSlot(native_context, function_list_offset, r8, temp, 1425 __ RecordWriteContextSlot(native_context, function_list_offset, r8, temp,
1439 kLRHasNotBeenSaved, kDontSaveFPRegs); 1426 kLRHasNotBeenSaved, kDontSaveFPRegs);
1440 __ JumpToJSEntry(entry); 1427 __ JumpToJSEntry(entry);
1441 1428
1442 __ bind(&loop_bottom); 1429 __ bind(&loop_bottom);
1443 __ SubSmiLiteral(index, index, Smi::FromInt(SharedFunctionInfo::kEntryLength), 1430 __ SubSmiLiteral(index, index, Smi::FromInt(SharedFunctionInfo::kEntryLength),
1444 r0); 1431 r0);
1445 __ CmpSmiLiteral(index, Smi::FromInt(1), r0); 1432 __ CmpSmiLiteral(index, Smi::FromInt(1), r0);
1446 __ bgt(&loop_top); 1433 __ bgt(&loop_top);
1447 1434
1448 // We found neither literals nor code. 1435 // We found no code.
1449 __ b(&gotta_call_runtime); 1436 __ b(&gotta_call_runtime);
1450 1437
1451 __ bind(&try_shared); 1438 __ bind(&try_shared);
1452 __ LoadP(entry, 1439 __ LoadP(entry,
1453 FieldMemOperand(closure, JSFunction::kSharedFunctionInfoOffset)); 1440 FieldMemOperand(closure, JSFunction::kSharedFunctionInfoOffset));
1454 // Is the shared function marked for tier up? 1441 // Is the shared function marked for tier up?
1455 __ lbz(r8, FieldMemOperand(entry, 1442 __ lbz(r8, FieldMemOperand(entry,
1456 SharedFunctionInfo::kMarkedForTierUpByteOffset)); 1443 SharedFunctionInfo::kMarkedForTierUpByteOffset));
1457 __ TestBit(r8, SharedFunctionInfo::kMarkedForTierUpBitWithinByte, r0); 1444 __ TestBit(r8, SharedFunctionInfo::kMarkedForTierUpBitWithinByte, r0);
1458 __ bne(&gotta_call_runtime, cr0); 1445 __ bne(&gotta_call_runtime, cr0);
(...skipping 1512 matching lines...) Expand 10 before | Expand all | Expand 10 after
2971 __ CallRuntime(Runtime::kThrowStackOverflow); 2958 __ CallRuntime(Runtime::kThrowStackOverflow);
2972 __ bkpt(0); 2959 __ bkpt(0);
2973 } 2960 }
2974 } 2961 }
2975 2962
2976 #undef __ 2963 #undef __
2977 } // namespace internal 2964 } // namespace internal
2978 } // namespace v8 2965 } // namespace v8
2979 2966
2980 #endif // V8_TARGET_ARCH_PPC 2967 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « no previous file | src/builtins/s390/builtins-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698