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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 V(Label) \ | 225 V(Label) \ |
226 V(LazyBailout) \ | 226 V(LazyBailout) \ |
227 V(LoadContextSlot) \ | 227 V(LoadContextSlot) \ |
228 V(LoadElements) \ | 228 V(LoadElements) \ |
229 V(LoadGlobal) \ | 229 V(LoadGlobal) \ |
230 V(LoadKeyedFastElement) \ | 230 V(LoadKeyedFastElement) \ |
231 V(LoadKeyedGeneric) \ | 231 V(LoadKeyedGeneric) \ |
232 V(LoadNamedField) \ | 232 V(LoadNamedField) \ |
233 V(LoadNamedGeneric) \ | 233 V(LoadNamedGeneric) \ |
234 V(LoadFunctionPrototype) \ | 234 V(LoadFunctionPrototype) \ |
| 235 V(LoadPixelArrayElement) \ |
| 236 V(LoadPixelArrayExternalPointer) \ |
235 V(ModI) \ | 237 V(ModI) \ |
236 V(MulI) \ | 238 V(MulI) \ |
237 V(NumberTagD) \ | 239 V(NumberTagD) \ |
238 V(NumberTagI) \ | 240 V(NumberTagI) \ |
239 V(NumberUntagD) \ | 241 V(NumberUntagD) \ |
240 V(ObjectLiteral) \ | 242 V(ObjectLiteral) \ |
241 V(OsrEntry) \ | 243 V(OsrEntry) \ |
242 V(Parameter) \ | 244 V(Parameter) \ |
| 245 V(PixelArrayLength) \ |
243 V(Power) \ | 246 V(Power) \ |
244 V(PushArgument) \ | 247 V(PushArgument) \ |
245 V(RegExpLiteral) \ | 248 V(RegExpLiteral) \ |
246 V(Return) \ | 249 V(Return) \ |
247 V(ShiftI) \ | 250 V(ShiftI) \ |
248 V(SmiTag) \ | 251 V(SmiTag) \ |
249 V(SmiUntag) \ | 252 V(SmiUntag) \ |
250 V(StackCheck) \ | 253 V(StackCheck) \ |
251 V(StoreGlobal) \ | 254 V(StoreGlobal) \ |
252 V(StoreKeyedFastElement) \ | 255 V(StoreKeyedFastElement) \ |
(...skipping 1769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2022 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2025 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2023 }; | 2026 }; |
2024 | 2027 |
2025 #undef DECLARE_HYDROGEN_ACCESSOR | 2028 #undef DECLARE_HYDROGEN_ACCESSOR |
2026 #undef DECLARE_INSTRUCTION | 2029 #undef DECLARE_INSTRUCTION |
2027 #undef DECLARE_CONCRETE_INSTRUCTION | 2030 #undef DECLARE_CONCRETE_INSTRUCTION |
2028 | 2031 |
2029 } } // namespace v8::int | 2032 } } // namespace v8::int |
2030 | 2033 |
2031 #endif // V8_X64_LITHIUM_X64_H_ | 2034 #endif // V8_X64_LITHIUM_X64_H_ |
OLD | NEW |