| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 HBasicBlock* block_; | 425 HBasicBlock* block_; |
| 425 }; | 426 }; |
| 426 | 427 |
| 427 | 428 |
| 428 class LLazyBailout V8_FINAL : public LTemplateInstruction<0, 0, 0> { | 429 class LLazyBailout V8_FINAL : public LTemplateInstruction<0, 0, 0> { |
| 429 public: | 430 public: |
| 430 DECLARE_CONCRETE_INSTRUCTION(LazyBailout, "lazy-bailout") | 431 DECLARE_CONCRETE_INSTRUCTION(LazyBailout, "lazy-bailout") |
| 431 }; | 432 }; |
| 432 | 433 |
| 433 | 434 |
| 435 class LDummy V8_FINAL : public LTemplateInstruction<1, 0, 0> { |
| 436 public: |
| 437 explicit LDummy() { } |
| 438 DECLARE_CONCRETE_INSTRUCTION(Dummy, "dummy") |
| 439 }; |
| 440 |
| 441 |
| 434 class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> { | 442 class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
| 435 public: | 443 public: |
| 436 explicit LDummyUse(LOperand* value) { | 444 explicit LDummyUse(LOperand* value) { |
| 437 inputs_[0] = value; | 445 inputs_[0] = value; |
| 438 } | 446 } |
| 439 DECLARE_CONCRETE_INSTRUCTION(DummyUse, "dummy-use") | 447 DECLARE_CONCRETE_INSTRUCTION(DummyUse, "dummy-use") |
| 440 }; | 448 }; |
| 441 | 449 |
| 442 | 450 |
| 443 class LDeoptimize V8_FINAL : public LTemplateInstruction<0, 0, 0> { | 451 class LDeoptimize V8_FINAL : public LTemplateInstruction<0, 0, 0> { |
| (...skipping 2471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2915 | 2923 |
| 2916 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2924 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2917 }; | 2925 }; |
| 2918 | 2926 |
| 2919 #undef DECLARE_HYDROGEN_ACCESSOR | 2927 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2920 #undef DECLARE_CONCRETE_INSTRUCTION | 2928 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2921 | 2929 |
| 2922 } } // namespace v8::internal | 2930 } } // namespace v8::internal |
| 2923 | 2931 |
| 2924 #endif // V8_IA32_LITHIUM_IA32_H_ | 2932 #endif // V8_IA32_LITHIUM_IA32_H_ |
| OLD | NEW |