| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 2058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2069 LOperand* UseOrConstantAtStart(HValue* value); | 2069 LOperand* UseOrConstantAtStart(HValue* value); |
| 2070 LOperand* UseRegisterOrConstant(HValue* value); | 2070 LOperand* UseRegisterOrConstant(HValue* value); |
| 2071 LOperand* UseRegisterOrConstantAtStart(HValue* value); | 2071 LOperand* UseRegisterOrConstantAtStart(HValue* value); |
| 2072 | 2072 |
| 2073 // Methods for setting up define-use relationships. | 2073 // Methods for setting up define-use relationships. |
| 2074 // Return the same instruction that they are passed. | 2074 // Return the same instruction that they are passed. |
| 2075 LInstruction* Define(LInstruction* instr, LUnallocated* result); | 2075 LInstruction* Define(LInstruction* instr, LUnallocated* result); |
| 2076 LInstruction* Define(LInstruction* instr); | 2076 LInstruction* Define(LInstruction* instr); |
| 2077 LInstruction* DefineAsRegister(LInstruction* instr); | 2077 LInstruction* DefineAsRegister(LInstruction* instr); |
| 2078 LInstruction* DefineAsSpilled(LInstruction* instr, int index); | 2078 LInstruction* DefineAsSpilled(LInstruction* instr, int index); |
| 2079 LInstruction* DefineSameAsAny(LInstruction* instr); | |
| 2080 LInstruction* DefineSameAsFirst(LInstruction* instr); | 2079 LInstruction* DefineSameAsFirst(LInstruction* instr); |
| 2081 LInstruction* DefineFixed(LInstruction* instr, Register reg); | 2080 LInstruction* DefineFixed(LInstruction* instr, Register reg); |
| 2082 LInstruction* DefineFixedDouble(LInstruction* instr, DoubleRegister reg); | 2081 LInstruction* DefineFixedDouble(LInstruction* instr, DoubleRegister reg); |
| 2083 LInstruction* AssignEnvironment(LInstruction* instr); | 2082 LInstruction* AssignEnvironment(LInstruction* instr); |
| 2084 LInstruction* AssignPointerMap(LInstruction* instr); | 2083 LInstruction* AssignPointerMap(LInstruction* instr); |
| 2085 | 2084 |
| 2086 enum CanDeoptimize { CAN_DEOPTIMIZE_EAGERLY, CANNOT_DEOPTIMIZE_EAGERLY }; | 2085 enum CanDeoptimize { CAN_DEOPTIMIZE_EAGERLY, CANNOT_DEOPTIMIZE_EAGERLY }; |
| 2087 | 2086 |
| 2088 // By default we assume that instruction sequences generated for calls | 2087 // By default we assume that instruction sequences generated for calls |
| 2089 // cannot deoptimize eagerly and we do not attach environment to this | 2088 // cannot deoptimize eagerly and we do not attach environment to this |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2131 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2130 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2132 }; | 2131 }; |
| 2133 | 2132 |
| 2134 #undef DECLARE_HYDROGEN_ACCESSOR | 2133 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2135 #undef DECLARE_INSTRUCTION | 2134 #undef DECLARE_INSTRUCTION |
| 2136 #undef DECLARE_CONCRETE_INSTRUCTION | 2135 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2137 | 2136 |
| 2138 } } // namespace v8::internal | 2137 } } // namespace v8::internal |
| 2139 | 2138 |
| 2140 #endif // V8_ARM_LITHIUM_ARM_H_ | 2139 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |