| 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 2003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2014 LInstruction* instr, | 2014 LInstruction* instr, |
| 2015 HInstruction* hinstr, | 2015 HInstruction* hinstr, |
| 2016 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); | 2016 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); |
| 2017 | 2017 |
| 2018 LInstruction* SetInstructionPendingDeoptimizationEnvironment( | 2018 LInstruction* SetInstructionPendingDeoptimizationEnvironment( |
| 2019 LInstruction* instr, int ast_id); | 2019 LInstruction* instr, int ast_id); |
| 2020 void ClearInstructionPendingDeoptimizationEnvironment(); | 2020 void ClearInstructionPendingDeoptimizationEnvironment(); |
| 2021 | 2021 |
| 2022 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env); | 2022 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env); |
| 2023 | 2023 |
| 2024 // Temporary operand that may be a memory location. | |
| 2025 LOperand* Temp(); | |
| 2026 // Temporary operand that must be in a register. | 2024 // Temporary operand that must be in a register. |
| 2027 LUnallocated* TempRegister(); | 2025 LUnallocated* TempRegister(); |
| 2028 LOperand* FixedTemp(Register reg); | 2026 LOperand* FixedTemp(Register reg); |
| 2029 LOperand* FixedTemp(DoubleRegister reg); | 2027 LOperand* FixedTemp(DoubleRegister reg); |
| 2030 | 2028 |
| 2031 void VisitInstruction(HInstruction* current); | 2029 void VisitInstruction(HInstruction* current); |
| 2032 | 2030 |
| 2033 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); | 2031 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); |
| 2034 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); | 2032 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); |
| 2035 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); | 2033 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 2053 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2051 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2054 }; | 2052 }; |
| 2055 | 2053 |
| 2056 #undef DECLARE_HYDROGEN_ACCESSOR | 2054 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2057 #undef DECLARE_INSTRUCTION | 2055 #undef DECLARE_INSTRUCTION |
| 2058 #undef DECLARE_CONCRETE_INSTRUCTION | 2056 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2059 | 2057 |
| 2060 } } // namespace v8::internal | 2058 } } // namespace v8::internal |
| 2061 | 2059 |
| 2062 #endif // V8_ARM_LITHIUM_ARM_H_ | 2060 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |