| 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 2061 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2072       HInstruction* hinstr, | 2072       HInstruction* hinstr, | 
| 2073       CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); | 2073       CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); | 
| 2074   LInstruction* MarkAsSaveDoubles(LInstruction* instr); | 2074   LInstruction* MarkAsSaveDoubles(LInstruction* instr); | 
| 2075 | 2075 | 
| 2076   LInstruction* SetInstructionPendingDeoptimizationEnvironment( | 2076   LInstruction* SetInstructionPendingDeoptimizationEnvironment( | 
| 2077       LInstruction* instr, int ast_id); | 2077       LInstruction* instr, int ast_id); | 
| 2078   void ClearInstructionPendingDeoptimizationEnvironment(); | 2078   void ClearInstructionPendingDeoptimizationEnvironment(); | 
| 2079 | 2079 | 
| 2080   LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env); | 2080   LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env); | 
| 2081 | 2081 | 
| 2082   // Temporary operand that may be a memory location. |  | 
| 2083   LOperand* Temp(); |  | 
| 2084   // Temporary operand that must be in a register. | 2082   // Temporary operand that must be in a register. | 
| 2085   LUnallocated* TempRegister(); | 2083   LUnallocated* TempRegister(); | 
| 2086   LOperand* FixedTemp(Register reg); | 2084   LOperand* FixedTemp(Register reg); | 
| 2087   LOperand* FixedTemp(XMMRegister reg); | 2085   LOperand* FixedTemp(XMMRegister reg); | 
| 2088 | 2086 | 
| 2089   void VisitInstruction(HInstruction* current); | 2087   void VisitInstruction(HInstruction* current); | 
| 2090 | 2088 | 
| 2091   void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); | 2089   void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); | 
| 2092   LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); | 2090   LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); | 
| 2093   LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); | 2091   LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); | 
| (...skipping 17 matching lines...) Expand all  Loading... | 
| 2111   DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2109   DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 
| 2112 }; | 2110 }; | 
| 2113 | 2111 | 
| 2114 #undef DECLARE_HYDROGEN_ACCESSOR | 2112 #undef DECLARE_HYDROGEN_ACCESSOR | 
| 2115 #undef DECLARE_INSTRUCTION | 2113 #undef DECLARE_INSTRUCTION | 
| 2116 #undef DECLARE_CONCRETE_INSTRUCTION | 2114 #undef DECLARE_CONCRETE_INSTRUCTION | 
| 2117 | 2115 | 
| 2118 } }  // namespace v8::internal | 2116 } }  // namespace v8::internal | 
| 2119 | 2117 | 
| 2120 #endif  // V8_IA32_LITHIUM_IA32_H_ | 2118 #endif  // V8_IA32_LITHIUM_IA32_H_ | 
| OLD | NEW | 
|---|