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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 V(IsObject) \ | 110 V(IsObject) \ |
111 V(IsObjectAndBranch) \ | 111 V(IsObjectAndBranch) \ |
112 V(IsSmi) \ | 112 V(IsSmi) \ |
113 V(IsSmiAndBranch) \ | 113 V(IsSmiAndBranch) \ |
114 V(JSArrayLength) \ | 114 V(JSArrayLength) \ |
115 V(Label) \ | 115 V(Label) \ |
116 V(LazyBailout) \ | 116 V(LazyBailout) \ |
117 V(LoadContextSlot) \ | 117 V(LoadContextSlot) \ |
118 V(LoadElements) \ | 118 V(LoadElements) \ |
119 V(LoadExternalArrayPointer) \ | 119 V(LoadExternalArrayPointer) \ |
120 V(LoadGlobal) \ | 120 V(LoadGlobalCell) \ |
| 121 V(LoadGlobalGeneric) \ |
121 V(LoadKeyedFastElement) \ | 122 V(LoadKeyedFastElement) \ |
122 V(LoadKeyedGeneric) \ | 123 V(LoadKeyedGeneric) \ |
123 V(LoadNamedField) \ | 124 V(LoadNamedField) \ |
124 V(LoadNamedGeneric) \ | 125 V(LoadNamedGeneric) \ |
125 V(LoadFunctionPrototype) \ | 126 V(LoadFunctionPrototype) \ |
126 V(LoadPixelArrayElement) \ | 127 V(LoadPixelArrayElement) \ |
127 V(ModI) \ | 128 V(ModI) \ |
128 V(MulI) \ | 129 V(MulI) \ |
129 V(NumberTagD) \ | 130 V(NumberTagD) \ |
130 V(NumberTagI) \ | 131 V(NumberTagI) \ |
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1218 inputs_[1] = key; | 1219 inputs_[1] = key; |
1219 } | 1220 } |
1220 | 1221 |
1221 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic") | 1222 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic") |
1222 | 1223 |
1223 LOperand* object() { return inputs_[0]; } | 1224 LOperand* object() { return inputs_[0]; } |
1224 LOperand* key() { return inputs_[1]; } | 1225 LOperand* key() { return inputs_[1]; } |
1225 }; | 1226 }; |
1226 | 1227 |
1227 | 1228 |
1228 class LLoadGlobal: public LTemplateInstruction<1, 0, 0> { | 1229 class LLoadGlobalCell: public LTemplateInstruction<1, 0, 0> { |
1229 public: | 1230 public: |
1230 DECLARE_CONCRETE_INSTRUCTION(LoadGlobal, "load-global") | 1231 DECLARE_CONCRETE_INSTRUCTION(LoadGlobalCell, "load-global-cell") |
1231 DECLARE_HYDROGEN_ACCESSOR(LoadGlobal) | 1232 DECLARE_HYDROGEN_ACCESSOR(LoadGlobalCell) |
| 1233 }; |
| 1234 |
| 1235 |
| 1236 class LLoadGlobalGeneric: public LTemplateInstruction<1, 0, 0> { |
| 1237 public: |
| 1238 DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic") |
| 1239 DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric) |
| 1240 |
| 1241 Handle<Object> name() const { return hydrogen()->name(); } |
| 1242 bool for_typeof() const { return hydrogen()->for_typeof(); } |
1232 }; | 1243 }; |
1233 | 1244 |
1234 | 1245 |
1235 class LStoreGlobal: public LTemplateInstruction<0, 1, 1> { | 1246 class LStoreGlobal: public LTemplateInstruction<0, 1, 1> { |
1236 public: | 1247 public: |
1237 explicit LStoreGlobal(LOperand* value, LOperand* temp) { | 1248 explicit LStoreGlobal(LOperand* value, LOperand* temp) { |
1238 inputs_[0] = value; | 1249 inputs_[0] = value; |
1239 temps_[0] = temp; | 1250 temps_[0] = temp; |
1240 } | 1251 } |
1241 | 1252 |
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2077 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2088 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2078 }; | 2089 }; |
2079 | 2090 |
2080 #undef DECLARE_HYDROGEN_ACCESSOR | 2091 #undef DECLARE_HYDROGEN_ACCESSOR |
2081 #undef DECLARE_INSTRUCTION | 2092 #undef DECLARE_INSTRUCTION |
2082 #undef DECLARE_CONCRETE_INSTRUCTION | 2093 #undef DECLARE_CONCRETE_INSTRUCTION |
2083 | 2094 |
2084 } } // namespace v8::int | 2095 } } // namespace v8::int |
2085 | 2096 |
2086 #endif // V8_X64_LITHIUM_X64_H_ | 2097 #endif // V8_X64_LITHIUM_X64_H_ |
OLD | NEW |