| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 : LUnaryOperation<1>(value), temporary_(temp) {} | 891 : LUnaryOperation<1>(value), temporary_(temp) {} |
| 892 | 892 |
| 893 DECLARE_CONCRETE_INSTRUCTION(ClassOfTest, "class-of-test") | 893 DECLARE_CONCRETE_INSTRUCTION(ClassOfTest, "class-of-test") |
| 894 DECLARE_HYDROGEN_ACCESSOR(ClassOfTest) | 894 DECLARE_HYDROGEN_ACCESSOR(ClassOfTest) |
| 895 | 895 |
| 896 virtual void PrintDataTo(StringStream* stream); | 896 virtual void PrintDataTo(StringStream* stream); |
| 897 | 897 |
| 898 LOperand* temporary() { return temporary_; } | 898 LOperand* temporary() { return temporary_; } |
| 899 | 899 |
| 900 private: | 900 private: |
| 901 LOperand *temporary_; | 901 LOperand* temporary_; |
| 902 }; | 902 }; |
| 903 | 903 |
| 904 | 904 |
| 905 class LClassOfTestAndBranch: public LClassOfTest { | 905 class LClassOfTestAndBranch: public LClassOfTest { |
| 906 public: | 906 public: |
| 907 LClassOfTestAndBranch(LOperand* value, | 907 LClassOfTestAndBranch(LOperand* value, |
| 908 LOperand* temporary, | 908 LOperand* temporary, |
| 909 LOperand* temporary2, | 909 LOperand* temporary2, |
| 910 int true_block_id, | 910 int true_block_id, |
| 911 int false_block_id) | 911 int false_block_id) |
| (...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2111 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2111 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2112 }; | 2112 }; |
| 2113 | 2113 |
| 2114 #undef DECLARE_HYDROGEN_ACCESSOR | 2114 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2115 #undef DECLARE_INSTRUCTION | 2115 #undef DECLARE_INSTRUCTION |
| 2116 #undef DECLARE_CONCRETE_INSTRUCTION | 2116 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2117 | 2117 |
| 2118 } } // namespace v8::internal | 2118 } } // namespace v8::internal |
| 2119 | 2119 |
| 2120 #endif // V8_IA32_LITHIUM_IA32_H_ | 2120 #endif // V8_IA32_LITHIUM_IA32_H_ |
| OLD | NEW |