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

Side by Side Diff: src/x64/lithium-x64.h

Issue 10382055: Array index computation dehoisting. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1171 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 inputs_[0] = object; 1182 inputs_[0] = object;
1183 } 1183 }
1184 1184
1185 DECLARE_CONCRETE_INSTRUCTION(LoadExternalArrayPointer, 1185 DECLARE_CONCRETE_INSTRUCTION(LoadExternalArrayPointer,
1186 "load-external-array-pointer") 1186 "load-external-array-pointer")
1187 }; 1187 };
1188 1188
1189 1189
1190 class LLoadKeyedFastElement: public LTemplateInstruction<1, 2, 0> { 1190 class LLoadKeyedFastElement: public LTemplateInstruction<1, 2, 0> {
1191 public: 1191 public:
1192 LLoadKeyedFastElement(LOperand* elements, LOperand* key) { 1192 LLoadKeyedFastElement(LOperand* elements,
1193 LOperand* key,
1194 uint32_t additional_index = 0)
1195 : additional_index_(additional_index) {
1193 inputs_[0] = elements; 1196 inputs_[0] = elements;
1194 inputs_[1] = key; 1197 inputs_[1] = key;
1195 } 1198 }
1196 1199
1197 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedFastElement, "load-keyed-fast-element") 1200 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedFastElement, "load-keyed-fast-element")
1198 DECLARE_HYDROGEN_ACCESSOR(LoadKeyedFastElement) 1201 DECLARE_HYDROGEN_ACCESSOR(LoadKeyedFastElement)
1199 1202
1200 LOperand* elements() { return inputs_[0]; } 1203 LOperand* elements() { return inputs_[0]; }
1201 LOperand* key() { return inputs_[1]; } 1204 LOperand* key() { return inputs_[1]; }
1205 uint32_t additional_index() const { return additional_index_; }
1206 void set_additional_index(uint32_t additional_index) {
1207 additional_index_ = additional_index;
1208 }
1209
1210 private:
1211 uint32_t additional_index_;
1202 }; 1212 };
1203 1213
1204 1214
1205 class LLoadKeyedFastDoubleElement: public LTemplateInstruction<1, 2, 0> { 1215 class LLoadKeyedFastDoubleElement: public LTemplateInstruction<1, 2, 0> {
1206 public: 1216 public:
1207 LLoadKeyedFastDoubleElement(LOperand* elements, LOperand* key) { 1217 LLoadKeyedFastDoubleElement(LOperand* elements,
1218 LOperand* key,
1219 uint32_t additional_index = 0)
1220 : additional_index_(additional_index) {
1208 inputs_[0] = elements; 1221 inputs_[0] = elements;
1209 inputs_[1] = key; 1222 inputs_[1] = key;
1210 } 1223 }
1211 1224
1212 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedFastDoubleElement, 1225 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedFastDoubleElement,
1213 "load-keyed-fast-double-element") 1226 "load-keyed-fast-double-element")
1214 DECLARE_HYDROGEN_ACCESSOR(LoadKeyedFastDoubleElement) 1227 DECLARE_HYDROGEN_ACCESSOR(LoadKeyedFastDoubleElement)
1215 1228
1216 LOperand* elements() { return inputs_[0]; } 1229 LOperand* elements() { return inputs_[0]; }
1217 LOperand* key() { return inputs_[1]; } 1230 LOperand* key() { return inputs_[1]; }
1231 uint32_t additional_index() const { return additional_index_; }
1232 void set_additional_index(uint32_t additional_index) {
1233 additional_index_ = additional_index;
1234 }
1235
1236 private:
1237 uint32_t additional_index_;
1218 }; 1238 };
1219 1239
1220 1240
1221 class LLoadKeyedSpecializedArrayElement: public LTemplateInstruction<1, 2, 0> { 1241 class LLoadKeyedSpecializedArrayElement: public LTemplateInstruction<1, 2, 0> {
1222 public: 1242 public:
1223 LLoadKeyedSpecializedArrayElement(LOperand* external_pointer, 1243 LLoadKeyedSpecializedArrayElement(LOperand* external_pointer,
1224 LOperand* key) { 1244 LOperand* key,
1245 uint32_t additional_index = 0)
1246 : additional_index_(additional_index) {
1225 inputs_[0] = external_pointer; 1247 inputs_[0] = external_pointer;
1226 inputs_[1] = key; 1248 inputs_[1] = key;
1227 } 1249 }
1228 1250
1229 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedSpecializedArrayElement, 1251 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedSpecializedArrayElement,
1230 "load-keyed-specialized-array-element") 1252 "load-keyed-specialized-array-element")
1231 DECLARE_HYDROGEN_ACCESSOR(LoadKeyedSpecializedArrayElement) 1253 DECLARE_HYDROGEN_ACCESSOR(LoadKeyedSpecializedArrayElement)
1232 1254
1233 LOperand* external_pointer() { return inputs_[0]; } 1255 LOperand* external_pointer() { return inputs_[0]; }
1234 LOperand* key() { return inputs_[1]; } 1256 LOperand* key() { return inputs_[1]; }
1235 ElementsKind elements_kind() const { 1257 ElementsKind elements_kind() const {
1236 return hydrogen()->elements_kind(); 1258 return hydrogen()->elements_kind();
1237 } 1259 }
1260 uint32_t additional_index() const { return additional_index_; }
1261 void set_additional_index(uint32_t additional_index) {
1262 additional_index_ = additional_index;
1263 }
1264
1265 private:
1266 uint32_t additional_index_;
1238 }; 1267 };
1239 1268
1240 1269
1241 class LLoadKeyedGeneric: public LTemplateInstruction<1, 2, 0> { 1270 class LLoadKeyedGeneric: public LTemplateInstruction<1, 2, 0> {
1242 public: 1271 public:
1243 LLoadKeyedGeneric(LOperand* obj, LOperand* key) { 1272 LLoadKeyedGeneric(LOperand* obj, LOperand* key) {
1244 inputs_[0] = obj; 1273 inputs_[0] = obj;
1245 inputs_[1] = key; 1274 inputs_[1] = key;
1246 } 1275 }
1247 1276
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
1670 1699
1671 LOperand* object() { return inputs_[0]; } 1700 LOperand* object() { return inputs_[0]; }
1672 LOperand* value() { return inputs_[1]; } 1701 LOperand* value() { return inputs_[1]; }
1673 Handle<Object> name() const { return hydrogen()->name(); } 1702 Handle<Object> name() const { return hydrogen()->name(); }
1674 StrictModeFlag strict_mode_flag() { return hydrogen()->strict_mode_flag(); } 1703 StrictModeFlag strict_mode_flag() { return hydrogen()->strict_mode_flag(); }
1675 }; 1704 };
1676 1705
1677 1706
1678 class LStoreKeyedFastElement: public LTemplateInstruction<0, 3, 0> { 1707 class LStoreKeyedFastElement: public LTemplateInstruction<0, 3, 0> {
1679 public: 1708 public:
1680 LStoreKeyedFastElement(LOperand* obj, LOperand* key, LOperand* val) { 1709 LStoreKeyedFastElement(LOperand* obj,
1710 LOperand* key,
1711 LOperand* val,
1712 uint32_t additional_index = 0)
1713 : additional_index_(additional_index) {
1681 inputs_[0] = obj; 1714 inputs_[0] = obj;
1682 inputs_[1] = key; 1715 inputs_[1] = key;
1683 inputs_[2] = val; 1716 inputs_[2] = val;
1684 } 1717 }
1685 1718
1686 DECLARE_CONCRETE_INSTRUCTION(StoreKeyedFastElement, 1719 DECLARE_CONCRETE_INSTRUCTION(StoreKeyedFastElement,
1687 "store-keyed-fast-element") 1720 "store-keyed-fast-element")
1688 DECLARE_HYDROGEN_ACCESSOR(StoreKeyedFastElement) 1721 DECLARE_HYDROGEN_ACCESSOR(StoreKeyedFastElement)
1689 1722
1690 virtual void PrintDataTo(StringStream* stream); 1723 virtual void PrintDataTo(StringStream* stream);
1691 1724
1692 LOperand* object() { return inputs_[0]; } 1725 LOperand* object() { return inputs_[0]; }
1693 LOperand* key() { return inputs_[1]; } 1726 LOperand* key() { return inputs_[1]; }
1694 LOperand* value() { return inputs_[2]; } 1727 LOperand* value() { return inputs_[2]; }
1728 uint32_t additional_index() const { return additional_index_; }
1729 void set_additional_index(uint32_t additional_index) {
1730 additional_index_ = additional_index;
1731 }
1732
1733 private:
1734 uint32_t additional_index_;
1695 }; 1735 };
1696 1736
1697 1737
1698 class LStoreKeyedFastDoubleElement: public LTemplateInstruction<0, 3, 0> { 1738 class LStoreKeyedFastDoubleElement: public LTemplateInstruction<0, 3, 0> {
1699 public: 1739 public:
1700 LStoreKeyedFastDoubleElement(LOperand* elements, 1740 LStoreKeyedFastDoubleElement(LOperand* elements,
1701 LOperand* key, 1741 LOperand* key,
1702 LOperand* val) { 1742 LOperand* val,
1743 uint32_t additional_index = 0)
1744 : additional_index_(additional_index) {
1703 inputs_[0] = elements; 1745 inputs_[0] = elements;
1704 inputs_[1] = key; 1746 inputs_[1] = key;
1705 inputs_[2] = val; 1747 inputs_[2] = val;
1706 } 1748 }
1707 1749
1708 DECLARE_CONCRETE_INSTRUCTION(StoreKeyedFastDoubleElement, 1750 DECLARE_CONCRETE_INSTRUCTION(StoreKeyedFastDoubleElement,
1709 "store-keyed-fast-double-element") 1751 "store-keyed-fast-double-element")
1710 DECLARE_HYDROGEN_ACCESSOR(StoreKeyedFastDoubleElement) 1752 DECLARE_HYDROGEN_ACCESSOR(StoreKeyedFastDoubleElement)
1711 1753
1712 virtual void PrintDataTo(StringStream* stream); 1754 virtual void PrintDataTo(StringStream* stream);
1713 1755
1714 LOperand* elements() { return inputs_[0]; } 1756 LOperand* elements() { return inputs_[0]; }
1715 LOperand* key() { return inputs_[1]; } 1757 LOperand* key() { return inputs_[1]; }
1716 LOperand* value() { return inputs_[2]; } 1758 LOperand* value() { return inputs_[2]; }
1717 1759
1718 bool NeedsCanonicalization() { return hydrogen()->NeedsCanonicalization(); } 1760 bool NeedsCanonicalization() { return hydrogen()->NeedsCanonicalization(); }
1761 uint32_t additional_index() const { return additional_index_; }
1762 void set_additional_index(uint32_t additional_index) {
1763 additional_index_ = additional_index;
1764 }
1765
1766 private:
1767 uint32_t additional_index_;
1719 }; 1768 };
1720 1769
1721 1770
1722 class LStoreKeyedSpecializedArrayElement: public LTemplateInstruction<0, 3, 0> { 1771 class LStoreKeyedSpecializedArrayElement: public LTemplateInstruction<0, 3, 0> {
1723 public: 1772 public:
1724 LStoreKeyedSpecializedArrayElement(LOperand* external_pointer, 1773 LStoreKeyedSpecializedArrayElement(LOperand* external_pointer,
1725 LOperand* key, 1774 LOperand* key,
1726 LOperand* val) { 1775 LOperand* val,
1776 uint32_t additional_index = 0)
1777 : additional_index_(additional_index) {
1727 inputs_[0] = external_pointer; 1778 inputs_[0] = external_pointer;
1728 inputs_[1] = key; 1779 inputs_[1] = key;
1729 inputs_[2] = val; 1780 inputs_[2] = val;
1730 } 1781 }
1731 1782
1732 DECLARE_CONCRETE_INSTRUCTION(StoreKeyedSpecializedArrayElement, 1783 DECLARE_CONCRETE_INSTRUCTION(StoreKeyedSpecializedArrayElement,
1733 "store-keyed-specialized-array-element") 1784 "store-keyed-specialized-array-element")
1734 DECLARE_HYDROGEN_ACCESSOR(StoreKeyedSpecializedArrayElement) 1785 DECLARE_HYDROGEN_ACCESSOR(StoreKeyedSpecializedArrayElement)
1735 1786
1736 LOperand* external_pointer() { return inputs_[0]; } 1787 LOperand* external_pointer() { return inputs_[0]; }
1737 LOperand* key() { return inputs_[1]; } 1788 LOperand* key() { return inputs_[1]; }
1738 LOperand* value() { return inputs_[2]; } 1789 LOperand* value() { return inputs_[2]; }
1739 ElementsKind elements_kind() const { 1790 ElementsKind elements_kind() const {
1740 return hydrogen()->elements_kind(); 1791 return hydrogen()->elements_kind();
1741 } 1792 }
1793 uint32_t additional_index() const { return additional_index_; }
1794 void set_additional_index(uint32_t additional_index) {
1795 additional_index_ = additional_index;
1796 }
1797
1798 private:
1799 uint32_t additional_index_;
1742 }; 1800 };
1743 1801
1744 1802
1745 class LStoreKeyedGeneric: public LTemplateInstruction<0, 3, 0> { 1803 class LStoreKeyedGeneric: public LTemplateInstruction<0, 3, 0> {
1746 public: 1804 public:
1747 LStoreKeyedGeneric(LOperand* object, LOperand* key, LOperand* value) { 1805 LStoreKeyedGeneric(LOperand* object, LOperand* key, LOperand* value) {
1748 inputs_[0] = object; 1806 inputs_[0] = object;
1749 inputs_[1] = key; 1807 inputs_[1] = key;
1750 inputs_[2] = value; 1808 inputs_[2] = value;
1751 } 1809 }
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
2373 2431
2374 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2432 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2375 }; 2433 };
2376 2434
2377 #undef DECLARE_HYDROGEN_ACCESSOR 2435 #undef DECLARE_HYDROGEN_ACCESSOR
2378 #undef DECLARE_CONCRETE_INSTRUCTION 2436 #undef DECLARE_CONCRETE_INSTRUCTION
2379 2437
2380 } } // namespace v8::int 2438 } } // namespace v8::int
2381 2439
2382 #endif // V8_X64_LITHIUM_X64_H_ 2440 #endif // V8_X64_LITHIUM_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698