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

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

Issue 14791014: Deoptimized by soft deoptimize should not affect the opt count (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 7 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 | « no previous file | src/ia32/lithium-codegen-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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 int arity, 269 int arity,
270 LInstruction* instr, 270 LInstruction* instr,
271 CallKind call_kind, 271 CallKind call_kind,
272 EDIState edi_state); 272 EDIState edi_state);
273 273
274 void RecordSafepointWithLazyDeopt(LInstruction* instr, 274 void RecordSafepointWithLazyDeopt(LInstruction* instr,
275 SafepointMode safepoint_mode); 275 SafepointMode safepoint_mode);
276 276
277 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, 277 void RegisterEnvironmentForDeoptimization(LEnvironment* environment,
278 Safepoint::DeoptMode mode); 278 Safepoint::DeoptMode mode);
279 void DeoptimizeIf(Condition cc, LEnvironment* environment); 279 void DeoptimizeIf(Condition cc, LEnvironment* environment,
280 bool soft_deopt = false);
280 281
281 void AddToTranslation(Translation* translation, 282 void AddToTranslation(Translation* translation,
282 LOperand* op, 283 LOperand* op,
283 bool is_tagged, 284 bool is_tagged,
284 bool is_uint32, 285 bool is_uint32,
285 bool arguments_known, 286 bool arguments_known,
286 int arguments_index, 287 int arguments_index,
287 int arguments_count); 288 int arguments_count);
288 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); 289 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code);
289 void PopulateDeoptimizationData(Handle<Code> code); 290 void PopulateDeoptimizationData(Handle<Code> code);
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 LCodeGen* codegen_; 492 LCodeGen* codegen_;
492 Label entry_; 493 Label entry_;
493 Label exit_; 494 Label exit_;
494 Label* external_exit_; 495 Label* external_exit_;
495 int instruction_index_; 496 int instruction_index_;
496 }; 497 };
497 498
498 } } // namespace v8::internal 499 } } // namespace v8::internal
499 500
500 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 501 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698