Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: src/ia32/lithium-ia32.h

Issue 7932022: Fix a deoptimization bug. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/deoptimizer.cc ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2241 matching lines...) Expand 10 before | Expand all | Expand 10 after
2252 LInstruction* MarkAsCall( 2252 LInstruction* MarkAsCall(
2253 LInstruction* instr, 2253 LInstruction* instr,
2254 HInstruction* hinstr, 2254 HInstruction* hinstr,
2255 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); 2255 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY);
2256 LInstruction* MarkAsSaveDoubles(LInstruction* instr); 2256 LInstruction* MarkAsSaveDoubles(LInstruction* instr);
2257 2257
2258 LInstruction* SetInstructionPendingDeoptimizationEnvironment( 2258 LInstruction* SetInstructionPendingDeoptimizationEnvironment(
2259 LInstruction* instr, int ast_id); 2259 LInstruction* instr, int ast_id);
2260 void ClearInstructionPendingDeoptimizationEnvironment(); 2260 void ClearInstructionPendingDeoptimizationEnvironment();
2261 2261
2262 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env); 2262 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env,
2263 int* argument_index_accumulator);
2263 2264
2264 void VisitInstruction(HInstruction* current); 2265 void VisitInstruction(HInstruction* current);
2265 2266
2266 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); 2267 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block);
2267 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); 2268 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr);
2268 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); 2269 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2269 LInstruction* DoArithmeticD(Token::Value op, 2270 LInstruction* DoArithmeticD(Token::Value op,
2270 HArithmeticBinaryOperation* instr); 2271 HArithmeticBinaryOperation* instr);
2271 LInstruction* DoArithmeticT(Token::Value op, 2272 LInstruction* DoArithmeticT(Token::Value op,
2272 HArithmeticBinaryOperation* instr); 2273 HArithmeticBinaryOperation* instr);
(...skipping 13 matching lines...) Expand all
2286 2287
2287 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2288 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2288 }; 2289 };
2289 2290
2290 #undef DECLARE_HYDROGEN_ACCESSOR 2291 #undef DECLARE_HYDROGEN_ACCESSOR
2291 #undef DECLARE_CONCRETE_INSTRUCTION 2292 #undef DECLARE_CONCRETE_INSTRUCTION
2292 2293
2293 } } // namespace v8::internal 2294 } } // namespace v8::internal
2294 2295
2295 #endif // V8_IA32_LITHIUM_IA32_H_ 2296 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW
« no previous file with comments | « src/deoptimizer.cc ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698