OLD | NEW |
---|---|
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1378 __ push(rax); | 1378 __ push(rax); |
1379 __ CallRuntime(Runtime::kTraceExit, 1); | 1379 __ CallRuntime(Runtime::kTraceExit, 1); |
1380 } | 1380 } |
1381 __ movq(rsp, rbp); | 1381 __ movq(rsp, rbp); |
1382 __ pop(rbp); | 1382 __ pop(rbp); |
1383 __ ret((ParameterCount() + 1) * kPointerSize); | 1383 __ ret((ParameterCount() + 1) * kPointerSize); |
1384 } | 1384 } |
1385 | 1385 |
1386 | 1386 |
1387 void LCodeGen::DoLoadGlobal(LLoadGlobal* instr) { | 1387 void LCodeGen::DoLoadGlobal(LLoadGlobal* instr) { |
1388 Abort("Unimplemented: %s", "DoLoadGlobal"); | 1388 Abort("Sometimes triggers bug in deoptimization. Keep disabled for now."); |
Rico
2011/01/27 08:23:02
With the fix for the conditional jump to a byte* w
| |
1389 Register result = ToRegister(instr->result()); | |
1390 if (result.is(rax)) { | |
1391 __ load_rax(instr->hydrogen()->cell().location(), | |
1392 RelocInfo::GLOBAL_PROPERTY_CELL); | |
1393 } else { | |
1394 __ movq(result, instr->hydrogen()->cell(), RelocInfo::GLOBAL_PROPERTY_CELL); | |
1395 __ movq(result, Operand(result, 0)); | |
1396 } | |
1397 if (instr->hydrogen()->check_hole_value()) { | |
1398 __ CompareRoot(result, Heap::kTheHoleValueRootIndex); | |
1399 DeoptimizeIf(equal, instr->environment()); | |
1400 } | |
1389 } | 1401 } |
1390 | 1402 |
1391 | 1403 |
1392 void LCodeGen::DoStoreGlobal(LStoreGlobal* instr) { | 1404 void LCodeGen::DoStoreGlobal(LStoreGlobal* instr) { |
1393 Abort("Unimplemented: %s", "DoStoreGlobal"); | 1405 Abort("Unimplemented: %s", "DoStoreGlobal"); |
1394 } | 1406 } |
1395 | 1407 |
1396 | 1408 |
1397 void LCodeGen::DoLoadContextSlot(LLoadContextSlot* instr) { | 1409 void LCodeGen::DoLoadContextSlot(LLoadContextSlot* instr) { |
1398 Abort("Unimplemented: %s", "DoLoadContextSlot"); | 1410 Abort("Unimplemented: %s", "DoLoadContextSlot"); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1443 Abort("Unimplemented: %s", "DoArgumentsLength"); | 1455 Abort("Unimplemented: %s", "DoArgumentsLength"); |
1444 } | 1456 } |
1445 | 1457 |
1446 | 1458 |
1447 void LCodeGen::DoApplyArguments(LApplyArguments* instr) { | 1459 void LCodeGen::DoApplyArguments(LApplyArguments* instr) { |
1448 Abort("Unimplemented: %s", "DoApplyArguments"); | 1460 Abort("Unimplemented: %s", "DoApplyArguments"); |
1449 } | 1461 } |
1450 | 1462 |
1451 | 1463 |
1452 void LCodeGen::DoPushArgument(LPushArgument* instr) { | 1464 void LCodeGen::DoPushArgument(LPushArgument* instr) { |
1453 Abort("Unimplemented: %s", "DoPushArgument"); | 1465 LOperand* argument = instr->InputAt(0); |
1466 if (argument->IsConstantOperand()) { | |
1467 LConstantOperand* const_op = LConstantOperand::cast(argument); | |
1468 Handle<Object> literal = chunk_->LookupLiteral(const_op); | |
1469 Representation r = chunk_->LookupLiteralRepresentation(const_op); | |
1470 if (r.IsInteger32()) { | |
1471 ASSERT(literal->IsNumber()); | |
1472 __ push(Immediate(static_cast<int32_t>(literal->Number()))); | |
1473 } else if (r.IsDouble()) { | |
1474 Abort("unsupported double immediate"); | |
1475 } else { | |
1476 ASSERT(r.IsTagged()); | |
1477 __ Push(literal); | |
1478 } | |
1479 } else if (argument->IsRegister()) { | |
1480 __ push(ToRegister(argument)); | |
1481 } else { | |
1482 ASSERT(!argument->IsDoubleRegister()); | |
1483 __ push(ToOperand(argument)); | |
1484 } | |
1454 } | 1485 } |
1455 | 1486 |
1456 | 1487 |
1457 void LCodeGen::DoGlobalObject(LGlobalObject* instr) { | 1488 void LCodeGen::DoGlobalObject(LGlobalObject* instr) { |
1458 Register result = ToRegister(instr->result()); | 1489 Register result = ToRegister(instr->result()); |
1459 __ movq(result, GlobalObjectOperand()); | 1490 __ movq(result, GlobalObjectOperand()); |
1460 } | 1491 } |
1461 | 1492 |
1462 | 1493 |
1463 void LCodeGen::DoGlobalReceiver(LGlobalReceiver* instr) { | 1494 void LCodeGen::DoGlobalReceiver(LGlobalReceiver* instr) { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1551 Abort("Unimplemented: %s", "DoCallGlobal"); | 1582 Abort("Unimplemented: %s", "DoCallGlobal"); |
1552 } | 1583 } |
1553 | 1584 |
1554 | 1585 |
1555 void LCodeGen::DoCallKnownGlobal(LCallKnownGlobal* instr) { | 1586 void LCodeGen::DoCallKnownGlobal(LCallKnownGlobal* instr) { |
1556 Abort("Unimplemented: %s", "DoCallKnownGlobal"); | 1587 Abort("Unimplemented: %s", "DoCallKnownGlobal"); |
1557 } | 1588 } |
1558 | 1589 |
1559 | 1590 |
1560 void LCodeGen::DoCallNew(LCallNew* instr) { | 1591 void LCodeGen::DoCallNew(LCallNew* instr) { |
1561 Abort("Unimplemented: %s", "DoCallNew"); | 1592 ASSERT(ToRegister(instr->InputAt(0)).is(rdi)); |
1593 ASSERT(ToRegister(instr->result()).is(rax)); | |
1594 | |
1595 Handle<Code> builtin(Builtins::builtin(Builtins::JSConstructCall)); | |
1596 __ Set(rax, instr->arity()); | |
1597 CallCode(builtin, RelocInfo::CONSTRUCT_CALL, instr); | |
1562 } | 1598 } |
1563 | 1599 |
1564 | 1600 |
1565 void LCodeGen::DoCallRuntime(LCallRuntime* instr) { | 1601 void LCodeGen::DoCallRuntime(LCallRuntime* instr) { |
1566 Abort("Unimplemented: %s", "DoCallRuntime"); | 1602 Abort("Unimplemented: %s", "DoCallRuntime"); |
1567 } | 1603 } |
1568 | 1604 |
1569 | 1605 |
1570 void LCodeGen::DoStoreNamedField(LStoreNamedField* instr) { | 1606 void LCodeGen::DoStoreNamedField(LStoreNamedField* instr) { |
1571 Abort("Unimplemented: %s", "DoStoreNamedField"); | 1607 Abort("Unimplemented: %s", "DoStoreNamedField"); |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1711 Abort("Unimplemented: %s", "DoNumberUntagD"); | 1747 Abort("Unimplemented: %s", "DoNumberUntagD"); |
1712 } | 1748 } |
1713 | 1749 |
1714 | 1750 |
1715 void LCodeGen::DoDoubleToI(LDoubleToI* instr) { | 1751 void LCodeGen::DoDoubleToI(LDoubleToI* instr) { |
1716 Abort("Unimplemented: %s", "DoDoubleToI"); | 1752 Abort("Unimplemented: %s", "DoDoubleToI"); |
1717 } | 1753 } |
1718 | 1754 |
1719 | 1755 |
1720 void LCodeGen::DoCheckSmi(LCheckSmi* instr) { | 1756 void LCodeGen::DoCheckSmi(LCheckSmi* instr) { |
1721 Abort("Unimplemented: %s", "DoCheckSmi"); | 1757 LOperand* input = instr->InputAt(0); |
1758 ASSERT(input->IsRegister()); | |
1759 Condition cc = masm()->CheckSmi(ToRegister(input)); | |
1760 if (instr->condition() != equal) { | |
1761 cc = NegateCondition(cc); | |
1762 } | |
1763 DeoptimizeIf(cc, instr->environment()); | |
1722 } | 1764 } |
1723 | 1765 |
1724 | 1766 |
1725 void LCodeGen::DoCheckInstanceType(LCheckInstanceType* instr) { | 1767 void LCodeGen::DoCheckInstanceType(LCheckInstanceType* instr) { |
1726 Abort("Unimplemented: %s", "DoCheckInstanceType"); | 1768 Abort("Unimplemented: %s", "DoCheckInstanceType"); |
1727 } | 1769 } |
1728 | 1770 |
1729 | 1771 |
1730 void LCodeGen::DoCheckFunction(LCheckFunction* instr) { | 1772 void LCodeGen::DoCheckFunction(LCheckFunction* instr) { |
1731 Abort("Unimplemented: %s", "DoCheckFunction"); | 1773 Abort("Unimplemented: %s", "DoCheckFunction"); |
1732 } | 1774 } |
1733 | 1775 |
1734 | 1776 |
1735 void LCodeGen::DoCheckMap(LCheckMap* instr) { | 1777 void LCodeGen::DoCheckMap(LCheckMap* instr) { |
1736 Abort("Unimplemented: %s", "DoCheckMap"); | 1778 LOperand* input = instr->InputAt(0); |
1779 ASSERT(input->IsRegister()); | |
1780 Register reg = ToRegister(input); | |
1781 __ Cmp(FieldOperand(reg, HeapObject::kMapOffset), | |
1782 instr->hydrogen()->map()); | |
1783 DeoptimizeIf(not_equal, instr->environment()); | |
1737 } | 1784 } |
1738 | 1785 |
1739 | 1786 |
1740 void LCodeGen::LoadHeapObject(Register result, Handle<HeapObject> object) { | 1787 void LCodeGen::LoadHeapObject(Register result, Handle<HeapObject> object) { |
1741 Abort("Unimplemented: %s", "LoadHeapObject"); | 1788 Abort("Unimplemented: %s", "LoadHeapObject"); |
1742 } | 1789 } |
1743 | 1790 |
1744 | 1791 |
1745 void LCodeGen::DoCheckPrototypeMaps(LCheckPrototypeMaps* instr) { | 1792 void LCodeGen::DoCheckPrototypeMaps(LCheckPrototypeMaps* instr) { |
1746 Abort("Unimplemented: %s", "DoCheckPrototypeMaps"); | 1793 Abort("Unimplemented: %s", "DoCheckPrototypeMaps"); |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1888 | 1935 |
1889 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { | 1936 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { |
1890 Abort("Unimplemented: %s", "DoOsrEntry"); | 1937 Abort("Unimplemented: %s", "DoOsrEntry"); |
1891 } | 1938 } |
1892 | 1939 |
1893 #undef __ | 1940 #undef __ |
1894 | 1941 |
1895 } } // namespace v8::internal | 1942 } } // namespace v8::internal |
1896 | 1943 |
1897 #endif // V8_TARGET_ARCH_X64 | 1944 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |