| 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 2247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2258 LInstruction* MarkAsCall( | 2258 LInstruction* MarkAsCall( |
| 2259 LInstruction* instr, | 2259 LInstruction* instr, |
| 2260 HInstruction* hinstr, | 2260 HInstruction* hinstr, |
| 2261 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); | 2261 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); |
| 2262 LInstruction* MarkAsSaveDoubles(LInstruction* instr); | 2262 LInstruction* MarkAsSaveDoubles(LInstruction* instr); |
| 2263 | 2263 |
| 2264 LInstruction* SetInstructionPendingDeoptimizationEnvironment( | 2264 LInstruction* SetInstructionPendingDeoptimizationEnvironment( |
| 2265 LInstruction* instr, int ast_id); | 2265 LInstruction* instr, int ast_id); |
| 2266 void ClearInstructionPendingDeoptimizationEnvironment(); | 2266 void ClearInstructionPendingDeoptimizationEnvironment(); |
| 2267 | 2267 |
| 2268 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env); | 2268 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env, |
| 2269 int* argument_index_accumulator); |
| 2269 | 2270 |
| 2270 void VisitInstruction(HInstruction* current); | 2271 void VisitInstruction(HInstruction* current); |
| 2271 | 2272 |
| 2272 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); | 2273 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); |
| 2273 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); | 2274 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); |
| 2274 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); | 2275 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); |
| 2275 LInstruction* DoArithmeticD(Token::Value op, | 2276 LInstruction* DoArithmeticD(Token::Value op, |
| 2276 HArithmeticBinaryOperation* instr); | 2277 HArithmeticBinaryOperation* instr); |
| 2277 LInstruction* DoArithmeticT(Token::Value op, | 2278 LInstruction* DoArithmeticT(Token::Value op, |
| 2278 HArithmeticBinaryOperation* instr); | 2279 HArithmeticBinaryOperation* instr); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2292 | 2293 |
| 2293 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2294 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2294 }; | 2295 }; |
| 2295 | 2296 |
| 2296 #undef DECLARE_HYDROGEN_ACCESSOR | 2297 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2297 #undef DECLARE_CONCRETE_INSTRUCTION | 2298 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2298 | 2299 |
| 2299 } } // namespace v8::internal | 2300 } } // namespace v8::internal |
| 2300 | 2301 |
| 2301 #endif // V8_IA32_LITHIUM_IA32_H_ | 2302 #endif // V8_IA32_LITHIUM_IA32_H_ |
| OLD | NEW |