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

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

Issue 2437043002: [compiler] Mark shared functions for optimization (Closed)
Patch Set: Save the files you actually changed, dummy Created 4 years, 2 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 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_S390 5 #if V8_TARGET_ARCH_S390
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 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after
1495 __ bind(&loop_bottom); 1495 __ bind(&loop_bottom);
1496 __ SubSmiLiteral(index, index, Smi::FromInt(SharedFunctionInfo::kEntryLength), 1496 __ SubSmiLiteral(index, index, Smi::FromInt(SharedFunctionInfo::kEntryLength),
1497 r0); 1497 r0);
1498 __ CmpSmiLiteral(index, Smi::FromInt(1), r0); 1498 __ CmpSmiLiteral(index, Smi::FromInt(1), r0);
1499 __ bgt(&loop_top); 1499 __ bgt(&loop_top);
1500 1500
1501 // We found neither literals nor code. 1501 // We found neither literals nor code.
1502 __ b(&gotta_call_runtime); 1502 __ b(&gotta_call_runtime);
1503 1503
1504 __ bind(&try_shared); 1504 __ bind(&try_shared);
1505 // Is the full code valid?
1506 __ LoadP(entry, 1505 __ LoadP(entry,
1507 FieldMemOperand(closure, JSFunction::kSharedFunctionInfoOffset)); 1506 FieldMemOperand(closure, JSFunction::kSharedFunctionInfoOffset));
1507 // Is the shared function marked for optimization?
1508 __ LoadlB(temp, FieldMemOperand(
1509 entry,
1510 SharedFunctionInfo::kWasMarkedForOptimizationByteOffset));
1511 __ TestBit(temp, SharedFunctionInfo::kWasMarkedForOptimizationBitWithinByte,
1512 r0);
1513 __ bne(&gotta_call_runtime);
1514 // Is the full code valid?
1508 __ LoadP(entry, FieldMemOperand(entry, SharedFunctionInfo::kCodeOffset)); 1515 __ LoadP(entry, FieldMemOperand(entry, SharedFunctionInfo::kCodeOffset));
1509 __ LoadlW(r7, FieldMemOperand(entry, Code::kFlagsOffset)); 1516 __ LoadlW(r7, FieldMemOperand(entry, Code::kFlagsOffset));
1510 __ DecodeField<Code::KindField>(r7); 1517 __ DecodeField<Code::KindField>(r7);
1511 __ CmpP(r7, Operand(Code::BUILTIN)); 1518 __ CmpP(r7, Operand(Code::BUILTIN));
1512 __ beq(&gotta_call_runtime); 1519 __ beq(&gotta_call_runtime);
1513 // Yes, install the full code. 1520 // Yes, install the full code.
1514 __ AddP(entry, entry, Operand(Code::kHeaderSize - kHeapObjectTag)); 1521 __ AddP(entry, entry, Operand(Code::kHeaderSize - kHeapObjectTag));
1515 __ StoreP(entry, FieldMemOperand(closure, JSFunction::kCodeEntryOffset), r0); 1522 __ StoreP(entry, FieldMemOperand(closure, JSFunction::kCodeEntryOffset), r0);
1516 __ RecordWriteCodeEntryField(closure, entry, r7); 1523 __ RecordWriteCodeEntryField(closure, entry, r7);
1517 __ JumpToJSEntry(entry); 1524 __ JumpToJSEntry(entry);
(...skipping 1488 matching lines...) Expand 10 before | Expand all | Expand 10 after
3006 __ bkpt(0); 3013 __ bkpt(0);
3007 } 3014 }
3008 } 3015 }
3009 3016
3010 #undef __ 3017 #undef __
3011 3018
3012 } // namespace internal 3019 } // namespace internal
3013 } // namespace v8 3020 } // namespace v8
3014 3021
3015 #endif // V8_TARGET_ARCH_S390 3022 #endif // V8_TARGET_ARCH_S390
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698