OLD | NEW |
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 1481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1492 __ bind(&loop_bottom); | 1492 __ bind(&loop_bottom); |
1493 __ SubSmiLiteral(index, index, Smi::FromInt(SharedFunctionInfo::kEntryLength), | 1493 __ SubSmiLiteral(index, index, Smi::FromInt(SharedFunctionInfo::kEntryLength), |
1494 r0); | 1494 r0); |
1495 __ CmpSmiLiteral(index, Smi::FromInt(1), r0); | 1495 __ CmpSmiLiteral(index, Smi::FromInt(1), r0); |
1496 __ bgt(&loop_top); | 1496 __ bgt(&loop_top); |
1497 | 1497 |
1498 // We found neither literals nor code. | 1498 // We found neither literals nor code. |
1499 __ b(&gotta_call_runtime); | 1499 __ b(&gotta_call_runtime); |
1500 | 1500 |
1501 __ bind(&try_shared); | 1501 __ bind(&try_shared); |
1502 // Is the full code valid? | |
1503 __ LoadP(entry, | 1502 __ LoadP(entry, |
1504 FieldMemOperand(closure, JSFunction::kSharedFunctionInfoOffset)); | 1503 FieldMemOperand(closure, JSFunction::kSharedFunctionInfoOffset)); |
| 1504 // Is the shared function marked for optimization? |
| 1505 __ lbz(r8, |
| 1506 FieldMemOperand( |
| 1507 entry, SharedFunctionInfo::kWasMarkedForOptimizationByteOffset)); |
| 1508 __ TestBit(r8, SharedFunctionInfo::kWasMarkedForOptimizationBitWithinByte, |
| 1509 r0); |
| 1510 __ beq(&gotta_call_runtime); |
| 1511 // Is the full code valid? |
1505 __ LoadP(entry, FieldMemOperand(entry, SharedFunctionInfo::kCodeOffset)); | 1512 __ LoadP(entry, FieldMemOperand(entry, SharedFunctionInfo::kCodeOffset)); |
1506 __ lwz(r8, FieldMemOperand(entry, Code::kFlagsOffset)); | 1513 __ lwz(r8, FieldMemOperand(entry, Code::kFlagsOffset)); |
1507 __ DecodeField<Code::KindField>(r8); | 1514 __ DecodeField<Code::KindField>(r8); |
1508 __ cmpi(r8, Operand(Code::BUILTIN)); | 1515 __ cmpi(r8, Operand(Code::BUILTIN)); |
1509 __ beq(&gotta_call_runtime); | 1516 __ beq(&gotta_call_runtime); |
1510 // Yes, install the full code. | 1517 // Yes, install the full code. |
1511 __ addi(entry, entry, Operand(Code::kHeaderSize - kHeapObjectTag)); | 1518 __ addi(entry, entry, Operand(Code::kHeaderSize - kHeapObjectTag)); |
1512 __ StoreP(entry, FieldMemOperand(closure, JSFunction::kCodeEntryOffset), r0); | 1519 __ StoreP(entry, FieldMemOperand(closure, JSFunction::kCodeEntryOffset), r0); |
1513 __ RecordWriteCodeEntryField(closure, entry, r8); | 1520 __ RecordWriteCodeEntryField(closure, entry, r8); |
1514 __ JumpToJSEntry(entry); | 1521 __ JumpToJSEntry(entry); |
(...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2995 __ CallRuntime(Runtime::kThrowStackOverflow); | 3002 __ CallRuntime(Runtime::kThrowStackOverflow); |
2996 __ bkpt(0); | 3003 __ bkpt(0); |
2997 } | 3004 } |
2998 } | 3005 } |
2999 | 3006 |
3000 #undef __ | 3007 #undef __ |
3001 } // namespace internal | 3008 } // namespace internal |
3002 } // namespace v8 | 3009 } // namespace v8 |
3003 | 3010 |
3004 #endif // V8_TARGET_ARCH_PPC | 3011 #endif // V8_TARGET_ARCH_PPC |
OLD | NEW |