| 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 2742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2753 | 2753 |
| 2754 // An input operand in a constant operand. | 2754 // An input operand in a constant operand. |
| 2755 MUST_USE_RESULT LOperand* UseConstant(HValue* value); | 2755 MUST_USE_RESULT LOperand* UseConstant(HValue* value); |
| 2756 | 2756 |
| 2757 // An input operand in register, stack slot or a constant operand. | 2757 // An input operand in register, stack slot or a constant operand. |
| 2758 // Will not be moved to a register even if one is freely available. | 2758 // Will not be moved to a register even if one is freely available. |
| 2759 MUST_USE_RESULT LOperand* UseAny(HValue* value); | 2759 MUST_USE_RESULT LOperand* UseAny(HValue* value); |
| 2760 | 2760 |
| 2761 // Temporary operand that must be in a register. | 2761 // Temporary operand that must be in a register. |
| 2762 MUST_USE_RESULT LUnallocated* TempRegister(); | 2762 MUST_USE_RESULT LUnallocated* TempRegister(); |
| 2763 MUST_USE_RESULT LUnallocated* TempDoubleRegister(); |
| 2763 MUST_USE_RESULT LOperand* FixedTemp(Register reg); | 2764 MUST_USE_RESULT LOperand* FixedTemp(Register reg); |
| 2764 MUST_USE_RESULT LOperand* FixedTemp(DoubleRegister reg); | 2765 MUST_USE_RESULT LOperand* FixedTemp(DoubleRegister reg); |
| 2765 | 2766 |
| 2766 // Methods for setting up define-use relationships. | 2767 // Methods for setting up define-use relationships. |
| 2767 // Return the same instruction that they are passed. | 2768 // Return the same instruction that they are passed. |
| 2768 template<int I, int T> | 2769 template<int I, int T> |
| 2769 LInstruction* Define(LTemplateInstruction<1, I, T>* instr, | 2770 LInstruction* Define(LTemplateInstruction<1, I, T>* instr, |
| 2770 LUnallocated* result); | 2771 LUnallocated* result); |
| 2771 template<int I, int T> | 2772 template<int I, int T> |
| 2772 LInstruction* DefineAsRegister(LTemplateInstruction<1, I, T>* instr); | 2773 LInstruction* DefineAsRegister(LTemplateInstruction<1, I, T>* instr); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2822 | 2823 |
| 2823 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2824 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2824 }; | 2825 }; |
| 2825 | 2826 |
| 2826 #undef DECLARE_HYDROGEN_ACCESSOR | 2827 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2827 #undef DECLARE_CONCRETE_INSTRUCTION | 2828 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2828 | 2829 |
| 2829 } } // namespace v8::internal | 2830 } } // namespace v8::internal |
| 2830 | 2831 |
| 2831 #endif // V8_ARM_LITHIUM_ARM_H_ | 2832 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |