| OLD | NEW |
| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 V(ConstantI) \ | 90 V(ConstantI) \ |
| 91 V(ConstantT) \ | 91 V(ConstantT) \ |
| 92 V(Context) \ | 92 V(Context) \ |
| 93 V(DeclareGlobals) \ | 93 V(DeclareGlobals) \ |
| 94 V(DeleteProperty) \ | 94 V(DeleteProperty) \ |
| 95 V(Deoptimize) \ | 95 V(Deoptimize) \ |
| 96 V(DivI) \ | 96 V(DivI) \ |
| 97 V(DoubleToI) \ | 97 V(DoubleToI) \ |
| 98 V(DummyUse) \ | 98 V(DummyUse) \ |
| 99 V(ElementsKind) \ | 99 V(ElementsKind) \ |
| 100 V(FastLiteral) \ | |
| 101 V(FixedArrayBaseLength) \ | 100 V(FixedArrayBaseLength) \ |
| 102 V(MapEnumLength) \ | 101 V(MapEnumLength) \ |
| 103 V(FunctionLiteral) \ | 102 V(FunctionLiteral) \ |
| 104 V(GetCachedArrayIndex) \ | 103 V(GetCachedArrayIndex) \ |
| 105 V(GlobalObject) \ | 104 V(GlobalObject) \ |
| 106 V(GlobalReceiver) \ | 105 V(GlobalReceiver) \ |
| 107 V(Goto) \ | 106 V(Goto) \ |
| 108 V(HasCachedArrayIndexAndBranch) \ | 107 V(HasCachedArrayIndexAndBranch) \ |
| 109 V(HasInstanceTypeAndBranch) \ | 108 V(HasInstanceTypeAndBranch) \ |
| 110 V(In) \ | 109 V(In) \ |
| (...skipping 2163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2274 } | 2273 } |
| 2275 | 2274 |
| 2276 LOperand* size() { return inputs_[0]; } | 2275 LOperand* size() { return inputs_[0]; } |
| 2277 LOperand* temp() { return temps_[0]; } | 2276 LOperand* temp() { return temps_[0]; } |
| 2278 | 2277 |
| 2279 DECLARE_CONCRETE_INSTRUCTION(Allocate, "allocate") | 2278 DECLARE_CONCRETE_INSTRUCTION(Allocate, "allocate") |
| 2280 DECLARE_HYDROGEN_ACCESSOR(Allocate) | 2279 DECLARE_HYDROGEN_ACCESSOR(Allocate) |
| 2281 }; | 2280 }; |
| 2282 | 2281 |
| 2283 | 2282 |
| 2284 class LFastLiteral: public LTemplateInstruction<1, 0, 0> { | |
| 2285 public: | |
| 2286 DECLARE_CONCRETE_INSTRUCTION(FastLiteral, "fast-literal") | |
| 2287 DECLARE_HYDROGEN_ACCESSOR(FastLiteral) | |
| 2288 }; | |
| 2289 | |
| 2290 | |
| 2291 class LArrayLiteral: public LTemplateInstruction<1, 0, 0> { | 2283 class LArrayLiteral: public LTemplateInstruction<1, 0, 0> { |
| 2292 public: | 2284 public: |
| 2293 DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal") | 2285 DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal") |
| 2294 DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral) | 2286 DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral) |
| 2295 }; | 2287 }; |
| 2296 | 2288 |
| 2297 | 2289 |
| 2298 class LObjectLiteral: public LTemplateInstruction<1, 0, 0> { | 2290 class LObjectLiteral: public LTemplateInstruction<1, 0, 0> { |
| 2299 public: | 2291 public: |
| 2300 DECLARE_CONCRETE_INSTRUCTION(ObjectLiteral, "object-literal") | 2292 DECLARE_CONCRETE_INSTRUCTION(ObjectLiteral, "object-literal") |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2647 | 2639 |
| 2648 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2640 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2649 }; | 2641 }; |
| 2650 | 2642 |
| 2651 #undef DECLARE_HYDROGEN_ACCESSOR | 2643 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2652 #undef DECLARE_CONCRETE_INSTRUCTION | 2644 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2653 | 2645 |
| 2654 } } // namespace v8::int | 2646 } } // namespace v8::int |
| 2655 | 2647 |
| 2656 #endif // V8_X64_LITHIUM_X64_H_ | 2648 #endif // V8_X64_LITHIUM_X64_H_ |
| OLD | NEW |