OLD | NEW |
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/mips/lithium-gap-resolver-mips.h" | 10 #include "src/mips/lithium-gap-resolver-mips.h" |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 int arity, | 222 int arity, |
223 LInstruction* instr, | 223 LInstruction* instr, |
224 A1State a1_state); | 224 A1State a1_state); |
225 | 225 |
226 void RecordSafepointWithLazyDeopt(LInstruction* instr, | 226 void RecordSafepointWithLazyDeopt(LInstruction* instr, |
227 SafepointMode safepoint_mode); | 227 SafepointMode safepoint_mode); |
228 | 228 |
229 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, | 229 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, |
230 Safepoint::DeoptMode mode); | 230 Safepoint::DeoptMode mode); |
231 void DeoptimizeIf(Condition condition, LInstruction* instr, | 231 void DeoptimizeIf(Condition condition, LInstruction* instr, |
232 Deoptimizer::BailoutType bailout_type, | 232 Deoptimizer::BailoutType bailout_type, const char* detail, |
233 Register src1 = zero_reg, | 233 Register src1 = zero_reg, |
234 const Operand& src2 = Operand(zero_reg), | 234 const Operand& src2 = Operand(zero_reg)); |
235 const char* detail = NULL); | |
236 void DeoptimizeIf(Condition condition, LInstruction* instr, | 235 void DeoptimizeIf(Condition condition, LInstruction* instr, |
237 Register src1 = zero_reg, | 236 const char* detail = NULL, Register src1 = zero_reg, |
238 const Operand& src2 = Operand(zero_reg), | 237 const Operand& src2 = Operand(zero_reg)); |
239 const char* detail = NULL); | |
240 | 238 |
241 void AddToTranslation(LEnvironment* environment, | 239 void AddToTranslation(LEnvironment* environment, |
242 Translation* translation, | 240 Translation* translation, |
243 LOperand* op, | 241 LOperand* op, |
244 bool is_tagged, | 242 bool is_tagged, |
245 bool is_uint32, | 243 bool is_uint32, |
246 int* object_index_pointer, | 244 int* object_index_pointer, |
247 int* dematerialized_index_pointer); | 245 int* dematerialized_index_pointer); |
248 void PopulateDeoptimizationData(Handle<Code> code); | 246 void PopulateDeoptimizationData(Handle<Code> code); |
249 int DefineDeoptimizationLiteral(Handle<Object> literal); | 247 int DefineDeoptimizationLiteral(Handle<Object> literal); |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 LCodeGen* codegen_; | 438 LCodeGen* codegen_; |
441 Label entry_; | 439 Label entry_; |
442 Label exit_; | 440 Label exit_; |
443 Label* external_exit_; | 441 Label* external_exit_; |
444 int instruction_index_; | 442 int instruction_index_; |
445 }; | 443 }; |
446 | 444 |
447 } } // namespace v8::internal | 445 } } // namespace v8::internal |
448 | 446 |
449 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 447 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
OLD | NEW |