| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 V(ConstantS) \ | 86 V(ConstantS) \ |
| 87 V(ConstantT) \ | 87 V(ConstantT) \ |
| 88 V(Context) \ | 88 V(Context) \ |
| 89 V(DateField) \ | 89 V(DateField) \ |
| 90 V(DebugBreak) \ | 90 V(DebugBreak) \ |
| 91 V(DeclareGlobals) \ | 91 V(DeclareGlobals) \ |
| 92 V(Deoptimize) \ | 92 V(Deoptimize) \ |
| 93 V(DivI) \ | 93 V(DivI) \ |
| 94 V(DoubleToIntOrSmi) \ | 94 V(DoubleToIntOrSmi) \ |
| 95 V(Drop) \ | 95 V(Drop) \ |
| 96 V(Dummy) \ |
| 96 V(DummyUse) \ | 97 V(DummyUse) \ |
| 97 V(ElementsKind) \ | 98 V(ElementsKind) \ |
| 98 V(ForInCacheArray) \ | 99 V(ForInCacheArray) \ |
| 99 V(ForInPrepareMap) \ | 100 V(ForInPrepareMap) \ |
| 100 V(FunctionLiteral) \ | 101 V(FunctionLiteral) \ |
| 101 V(GetCachedArrayIndex) \ | 102 V(GetCachedArrayIndex) \ |
| 102 V(GlobalObject) \ | 103 V(GlobalObject) \ |
| 103 V(GlobalReceiver) \ | 104 V(GlobalReceiver) \ |
| 104 V(Goto) \ | 105 V(Goto) \ |
| 105 V(HasCachedArrayIndexAndBranch) \ | 106 V(HasCachedArrayIndexAndBranch) \ |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 | 451 |
| 451 int count() const { return count_; } | 452 int count() const { return count_; } |
| 452 | 453 |
| 453 DECLARE_CONCRETE_INSTRUCTION(Drop, "drop") | 454 DECLARE_CONCRETE_INSTRUCTION(Drop, "drop") |
| 454 | 455 |
| 455 private: | 456 private: |
| 456 int count_; | 457 int count_; |
| 457 }; | 458 }; |
| 458 | 459 |
| 459 | 460 |
| 461 class LDummy V8_FINAL : public LTemplateInstruction<1, 0, 0> { |
| 462 public: |
| 463 explicit LDummy() { } |
| 464 DECLARE_CONCRETE_INSTRUCTION(Dummy, "dummy") |
| 465 }; |
| 466 |
| 467 |
| 460 class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> { | 468 class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
| 461 public: | 469 public: |
| 462 explicit LDummyUse(LOperand* value) { | 470 explicit LDummyUse(LOperand* value) { |
| 463 inputs_[0] = value; | 471 inputs_[0] = value; |
| 464 } | 472 } |
| 465 DECLARE_CONCRETE_INSTRUCTION(DummyUse, "dummy-use") | 473 DECLARE_CONCRETE_INSTRUCTION(DummyUse, "dummy-use") |
| 466 }; | 474 }; |
| 467 | 475 |
| 468 | 476 |
| 469 class LGoto V8_FINAL : public LTemplateInstruction<0, 0, 0> { | 477 class LGoto V8_FINAL : public LTemplateInstruction<0, 0, 0> { |
| (...skipping 2487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2957 | 2965 |
| 2958 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2966 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2959 }; | 2967 }; |
| 2960 | 2968 |
| 2961 #undef DECLARE_HYDROGEN_ACCESSOR | 2969 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2962 #undef DECLARE_CONCRETE_INSTRUCTION | 2970 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2963 | 2971 |
| 2964 } } // namespace v8::internal | 2972 } } // namespace v8::internal |
| 2965 | 2973 |
| 2966 #endif // V8_A64_LITHIUM_A64_H_ | 2974 #endif // V8_A64_LITHIUM_A64_H_ |
| OLD | NEW |