| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 V(CmpMapAndBranch) \ | 83 V(CmpMapAndBranch) \ |
| 84 V(CmpObjectEqAndBranch) \ | 84 V(CmpObjectEqAndBranch) \ |
| 85 V(CmpT) \ | 85 V(CmpT) \ |
| 86 V(ConstantD) \ | 86 V(ConstantD) \ |
| 87 V(ConstantI) \ | 87 V(ConstantI) \ |
| 88 V(ConstantS) \ | 88 V(ConstantS) \ |
| 89 V(ConstantT) \ | 89 V(ConstantT) \ |
| 90 V(Context) \ | 90 V(Context) \ |
| 91 V(DateField) \ | 91 V(DateField) \ |
| 92 V(DebugBreak) \ | 92 V(DebugBreak) \ |
| 93 V(DeclareGlobals) \ |
| 93 V(Deoptimize) \ | 94 V(Deoptimize) \ |
| 94 V(DivI) \ | 95 V(DivI) \ |
| 95 V(DoubleToI) \ | 96 V(DoubleToI) \ |
| 96 V(DoubleToSmi) \ | 97 V(DoubleToSmi) \ |
| 97 V(Drop) \ | 98 V(Drop) \ |
| 98 V(DummyUse) \ | 99 V(DummyUse) \ |
| 99 V(ElementsKind) \ | 100 V(ElementsKind) \ |
| 100 V(FixedArrayBaseLength) \ | 101 V(FixedArrayBaseLength) \ |
| 101 V(ForInCacheArray) \ | 102 V(ForInCacheArray) \ |
| 102 V(ForInPrepareMap) \ | 103 V(ForInPrepareMap) \ |
| (...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1183 Smi* index_; | 1184 Smi* index_; |
| 1184 }; | 1185 }; |
| 1185 | 1186 |
| 1186 | 1187 |
| 1187 class LDebugBreak: public LTemplateInstruction<0, 0, 0> { | 1188 class LDebugBreak: public LTemplateInstruction<0, 0, 0> { |
| 1188 public: | 1189 public: |
| 1189 DECLARE_CONCRETE_INSTRUCTION(DebugBreak, "break") | 1190 DECLARE_CONCRETE_INSTRUCTION(DebugBreak, "break") |
| 1190 }; | 1191 }; |
| 1191 | 1192 |
| 1192 | 1193 |
| 1194 class LDeclareGlobals: public LTemplateInstruction<0, 0, 0> { |
| 1195 public: |
| 1196 DECLARE_CONCRETE_INSTRUCTION(DeclareGlobals, "declare-globals") |
| 1197 DECLARE_HYDROGEN_ACCESSOR(DeclareGlobals) |
| 1198 }; |
| 1199 |
| 1200 |
| 1193 class LDeoptimize: public LTemplateInstruction<0, 0, 0> { | 1201 class LDeoptimize: public LTemplateInstruction<0, 0, 0> { |
| 1194 public: | 1202 public: |
| 1195 DECLARE_CONCRETE_INSTRUCTION(Deoptimize, "deoptimize") | 1203 DECLARE_CONCRETE_INSTRUCTION(Deoptimize, "deoptimize") |
| 1196 }; | 1204 }; |
| 1197 | 1205 |
| 1198 | 1206 |
| 1199 class LDivI: public LTemplateInstruction<1, 2, 1> { | 1207 class LDivI: public LTemplateInstruction<1, 2, 1> { |
| 1200 public: | 1208 public: |
| 1201 LDivI(LOperand* left, LOperand* right, LOperand* temp) { | 1209 LDivI(LOperand* left, LOperand* right, LOperand* temp) { |
| 1202 inputs_[0] = left; | 1210 inputs_[0] = left; |
| (...skipping 1617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2820 | 2828 |
| 2821 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2829 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2822 }; | 2830 }; |
| 2823 | 2831 |
| 2824 #undef DECLARE_HYDROGEN_ACCESSOR | 2832 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2825 #undef DECLARE_CONCRETE_INSTRUCTION | 2833 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2826 | 2834 |
| 2827 } } // namespace v8::internal | 2835 } } // namespace v8::internal |
| 2828 | 2836 |
| 2829 #endif // V8_A64_LITHIUM_A64_H_ | 2837 #endif // V8_A64_LITHIUM_A64_H_ |
| OLD | NEW |