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

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

Issue 582743002: Emit comment with instruction+reason before deopt calls. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased Created 6 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/mips/lithium-codegen-mips.cc ('k') | src/mips64/lithium-codegen-mips64.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 5 #ifndef V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
6 #define V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 6 #define V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
7 7
8 #include "src/deoptimizer.h" 8 #include "src/deoptimizer.h"
9 #include "src/lithium-codegen.h" 9 #include "src/lithium-codegen.h"
10 #include "src/mips64/lithium-gap-resolver-mips64.h" 10 #include "src/mips64/lithium-gap-resolver-mips64.h"
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 A1State a1_state); 225 A1State a1_state);
226 226
227 void RecordSafepointWithLazyDeopt(LInstruction* instr, 227 void RecordSafepointWithLazyDeopt(LInstruction* instr,
228 SafepointMode safepoint_mode); 228 SafepointMode safepoint_mode);
229 229
230 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, 230 void RegisterEnvironmentForDeoptimization(LEnvironment* environment,
231 Safepoint::DeoptMode mode); 231 Safepoint::DeoptMode mode);
232 void DeoptimizeIf(Condition condition, LInstruction* instr, 232 void DeoptimizeIf(Condition condition, LInstruction* instr,
233 Deoptimizer::BailoutType bailout_type, 233 Deoptimizer::BailoutType bailout_type,
234 Register src1 = zero_reg, 234 Register src1 = zero_reg,
235 const Operand& src2 = Operand(zero_reg)); 235 const Operand& src2 = Operand(zero_reg),
236 const char* reason = NULL);
236 void DeoptimizeIf(Condition condition, LInstruction* instr, 237 void DeoptimizeIf(Condition condition, LInstruction* instr,
237 Register src1 = zero_reg, 238 Register src1 = zero_reg,
238 const Operand& src2 = Operand(zero_reg)); 239 const Operand& src2 = Operand(zero_reg),
240 const char* reason = NULL);
239 241
240 void AddToTranslation(LEnvironment* environment, 242 void AddToTranslation(LEnvironment* environment,
241 Translation* translation, 243 Translation* translation,
242 LOperand* op, 244 LOperand* op,
243 bool is_tagged, 245 bool is_tagged,
244 bool is_uint32, 246 bool is_uint32,
245 int* object_index_pointer, 247 int* object_index_pointer,
246 int* dematerialized_index_pointer); 248 int* dematerialized_index_pointer);
247 void PopulateDeoptimizationData(Handle<Code> code); 249 void PopulateDeoptimizationData(Handle<Code> code);
248 int DefineDeoptimizationLiteral(Handle<Object> literal); 250 int DefineDeoptimizationLiteral(Handle<Object> literal);
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 LCodeGen* codegen_; 441 LCodeGen* codegen_;
440 Label entry_; 442 Label entry_;
441 Label exit_; 443 Label exit_;
442 Label* external_exit_; 444 Label* external_exit_;
443 int instruction_index_; 445 int instruction_index_;
444 }; 446 };
445 447
446 } } // namespace v8::internal 448 } } // namespace v8::internal
447 449
448 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 450 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-codegen-mips.cc ('k') | src/mips64/lithium-codegen-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698