| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 V(ConstantT) \ | 86 V(ConstantT) \ |
| 87 V(Context) \ | 87 V(Context) \ |
| 88 V(DateField) \ | 88 V(DateField) \ |
| 89 V(DebugBreak) \ | 89 V(DebugBreak) \ |
| 90 V(DeclareGlobals) \ | 90 V(DeclareGlobals) \ |
| 91 V(Deoptimize) \ | 91 V(Deoptimize) \ |
| 92 V(DivI) \ | 92 V(DivI) \ |
| 93 V(DoubleToI) \ | 93 V(DoubleToI) \ |
| 94 V(DoubleToSmi) \ | 94 V(DoubleToSmi) \ |
| 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 HBasicBlock* block_; | 426 HBasicBlock* block_; |
| 426 }; | 427 }; |
| 427 | 428 |
| 428 | 429 |
| 429 class LLazyBailout V8_FINAL : public LTemplateInstruction<0, 0, 0> { | 430 class LLazyBailout V8_FINAL : public LTemplateInstruction<0, 0, 0> { |
| 430 public: | 431 public: |
| 431 DECLARE_CONCRETE_INSTRUCTION(LazyBailout, "lazy-bailout") | 432 DECLARE_CONCRETE_INSTRUCTION(LazyBailout, "lazy-bailout") |
| 432 }; | 433 }; |
| 433 | 434 |
| 434 | 435 |
| 436 class LDummy V8_FINAL : public LTemplateInstruction<1, 0, 0> { |
| 437 public: |
| 438 explicit LDummy() { } |
| 439 DECLARE_CONCRETE_INSTRUCTION(Dummy, "dummy") |
| 440 }; |
| 441 |
| 442 |
| 435 class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> { | 443 class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
| 436 public: | 444 public: |
| 437 explicit LDummyUse(LOperand* value) { | 445 explicit LDummyUse(LOperand* value) { |
| 438 inputs_[0] = value; | 446 inputs_[0] = value; |
| 439 } | 447 } |
| 440 DECLARE_CONCRETE_INSTRUCTION(DummyUse, "dummy-use") | 448 DECLARE_CONCRETE_INSTRUCTION(DummyUse, "dummy-use") |
| 441 }; | 449 }; |
| 442 | 450 |
| 443 | 451 |
| 444 class LDeoptimize V8_FINAL : public LTemplateInstruction<0, 0, 0> { | 452 class LDeoptimize V8_FINAL : public LTemplateInstruction<0, 0, 0> { |
| (...skipping 2485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2930 | 2938 |
| 2931 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2939 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2932 }; | 2940 }; |
| 2933 | 2941 |
| 2934 #undef DECLARE_HYDROGEN_ACCESSOR | 2942 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2935 #undef DECLARE_CONCRETE_INSTRUCTION | 2943 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2936 | 2944 |
| 2937 } } // namespace v8::internal | 2945 } } // namespace v8::internal |
| 2938 | 2946 |
| 2939 #endif // V8_IA32_LITHIUM_IA32_H_ | 2947 #endif // V8_IA32_LITHIUM_IA32_H_ |
| OLD | NEW |