| 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 2769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2780 MUST_USE_RESULT LOperand* UseAtStart(HValue* value); | 2780 MUST_USE_RESULT LOperand* UseAtStart(HValue* value); |
| 2781 | 2781 |
| 2782 // An input operand in a register, stack slot or a constant operand. | 2782 // An input operand in a register, stack slot or a constant operand. |
| 2783 MUST_USE_RESULT LOperand* UseOrConstant(HValue* value); | 2783 MUST_USE_RESULT LOperand* UseOrConstant(HValue* value); |
| 2784 MUST_USE_RESULT LOperand* UseOrConstantAtStart(HValue* value); | 2784 MUST_USE_RESULT LOperand* UseOrConstantAtStart(HValue* value); |
| 2785 | 2785 |
| 2786 // An input operand in a register or a constant operand. | 2786 // An input operand in a register or a constant operand. |
| 2787 MUST_USE_RESULT LOperand* UseRegisterOrConstant(HValue* value); | 2787 MUST_USE_RESULT LOperand* UseRegisterOrConstant(HValue* value); |
| 2788 MUST_USE_RESULT LOperand* UseRegisterOrConstantAtStart(HValue* value); | 2788 MUST_USE_RESULT LOperand* UseRegisterOrConstantAtStart(HValue* value); |
| 2789 | 2789 |
| 2790 // An input operand in a constant operand. |
| 2791 MUST_USE_RESULT LOperand* UseConstant(HValue* value); |
| 2792 |
| 2790 // An input operand in register, stack slot or a constant operand. | 2793 // An input operand in register, stack slot or a constant operand. |
| 2791 // Will not be moved to a register even if one is freely available. | 2794 // Will not be moved to a register even if one is freely available. |
| 2792 MUST_USE_RESULT LOperand* UseAny(HValue* value); | 2795 MUST_USE_RESULT LOperand* UseAny(HValue* value); |
| 2793 | 2796 |
| 2794 // Temporary operand that must be in a register. | 2797 // Temporary operand that must be in a register. |
| 2795 MUST_USE_RESULT LUnallocated* TempRegister(); | 2798 MUST_USE_RESULT LUnallocated* TempRegister(); |
| 2796 MUST_USE_RESULT LOperand* FixedTemp(Register reg); | 2799 MUST_USE_RESULT LOperand* FixedTemp(Register reg); |
| 2797 MUST_USE_RESULT LOperand* FixedTemp(DoubleRegister reg); | 2800 MUST_USE_RESULT LOperand* FixedTemp(DoubleRegister reg); |
| 2798 | 2801 |
| 2799 // Methods for setting up define-use relationships. | 2802 // Methods for setting up define-use relationships. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2855 | 2858 |
| 2856 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2859 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2857 }; | 2860 }; |
| 2858 | 2861 |
| 2859 #undef DECLARE_HYDROGEN_ACCESSOR | 2862 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2860 #undef DECLARE_CONCRETE_INSTRUCTION | 2863 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2861 | 2864 |
| 2862 } } // namespace v8::internal | 2865 } } // namespace v8::internal |
| 2863 | 2866 |
| 2864 #endif // V8_ARM_LITHIUM_ARM_H_ | 2867 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |