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

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

Issue 263803005: Fix crash in debug builds introduced with r21110. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « src/lithium-codegen.cc ('k') | src/mips/lithium-codegen-mips.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 "deoptimizer.h" 8 #include "deoptimizer.h"
9 #include "mips/lithium-gap-resolver-mips.h" 9 #include "mips/lithium-gap-resolver-mips.h"
10 #include "mips/lithium-mips.h" 10 #include "mips/lithium-mips.h"
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 156
157 void EmitClassOfTest(Label* if_true, 157 void EmitClassOfTest(Label* if_true,
158 Label* if_false, 158 Label* if_false,
159 Handle<String> class_name, 159 Handle<String> class_name,
160 Register input, 160 Register input,
161 Register temporary, 161 Register temporary,
162 Register temporary2); 162 Register temporary2);
163 163
164 int GetStackSlotCount() const { return chunk()->spill_slot_count(); } 164 int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
165 165
166 void Abort(BailoutReason reason);
167
168 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); } 166 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
169 167
170 void SaveCallerDoubles(); 168 void SaveCallerDoubles();
171 void RestoreCallerDoubles(); 169 void RestoreCallerDoubles();
172 170
173 // Code generation passes. Returns true if code generation should 171 // Code generation passes. Returns true if code generation should
174 // continue. 172 // continue.
175 void GenerateBodyInstructionPre(LInstruction* instr) V8_OVERRIDE; 173 void GenerateBodyInstructionPre(LInstruction* instr) V8_OVERRIDE;
176 bool GeneratePrologue(); 174 bool GeneratePrologue();
177 bool GenerateDeferredCode(); 175 bool GenerateDeferredCode();
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 LCodeGen* codegen_; 477 LCodeGen* codegen_;
480 Label entry_; 478 Label entry_;
481 Label exit_; 479 Label exit_;
482 Label* external_exit_; 480 Label* external_exit_;
483 int instruction_index_; 481 int instruction_index_;
484 }; 482 };
485 483
486 } } // namespace v8::internal 484 } } // namespace v8::internal
487 485
488 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 486 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
OLDNEW
« no previous file with comments | « src/lithium-codegen.cc ('k') | src/mips/lithium-codegen-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698