| 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 2175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2186 MUST_USE_RESULT LUnallocated* TempRegister(); | 2186 MUST_USE_RESULT LUnallocated* TempRegister(); |
| 2187 MUST_USE_RESULT LOperand* FixedTemp(Register reg); | 2187 MUST_USE_RESULT LOperand* FixedTemp(Register reg); |
| 2188 MUST_USE_RESULT LOperand* FixedTemp(XMMRegister reg); | 2188 MUST_USE_RESULT LOperand* FixedTemp(XMMRegister reg); |
| 2189 | 2189 |
| 2190 // Methods for setting up define-use relationships. | 2190 // Methods for setting up define-use relationships. |
| 2191 // Return the same instruction that they are passed. | 2191 // Return the same instruction that they are passed. |
| 2192 template<int I, int T> | 2192 template<int I, int T> |
| 2193 LInstruction* Define(LTemplateInstruction<1, I, T>* instr, | 2193 LInstruction* Define(LTemplateInstruction<1, I, T>* instr, |
| 2194 LUnallocated* result); | 2194 LUnallocated* result); |
| 2195 template<int I, int T> | 2195 template<int I, int T> |
| 2196 LInstruction* Define(LTemplateInstruction<1, I, T>* instr); | |
| 2197 template<int I, int T> | |
| 2198 LInstruction* DefineAsRegister(LTemplateInstruction<1, I, T>* instr); | 2196 LInstruction* DefineAsRegister(LTemplateInstruction<1, I, T>* instr); |
| 2199 template<int I, int T> | 2197 template<int I, int T> |
| 2200 LInstruction* DefineAsSpilled(LTemplateInstruction<1, I, T>* instr, | 2198 LInstruction* DefineAsSpilled(LTemplateInstruction<1, I, T>* instr, |
| 2201 int index); | 2199 int index); |
| 2202 template<int I, int T> | 2200 template<int I, int T> |
| 2203 LInstruction* DefineSameAsFirst(LTemplateInstruction<1, I, T>* instr); | 2201 LInstruction* DefineSameAsFirst(LTemplateInstruction<1, I, T>* instr); |
| 2204 template<int I, int T> | 2202 template<int I, int T> |
| 2205 LInstruction* DefineFixed(LTemplateInstruction<1, I, T>* instr, | 2203 LInstruction* DefineFixed(LTemplateInstruction<1, I, T>* instr, |
| 2206 Register reg); | 2204 Register reg); |
| 2207 template<int I, int T> | 2205 template<int I, int T> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2256 | 2254 |
| 2257 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2255 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2258 }; | 2256 }; |
| 2259 | 2257 |
| 2260 #undef DECLARE_HYDROGEN_ACCESSOR | 2258 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2261 #undef DECLARE_CONCRETE_INSTRUCTION | 2259 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2262 | 2260 |
| 2263 } } // namespace v8::int | 2261 } } // namespace v8::int |
| 2264 | 2262 |
| 2265 #endif // V8_X64_LITHIUM_X64_H_ | 2263 #endif // V8_X64_LITHIUM_X64_H_ |
| OLD | NEW |