| 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_IA32_LITHIUM_CODEGEN_IA32_H_ | 5 #ifndef V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| 6 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 6 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| 7 | 7 |
| 8 #include "src/ia32/lithium-ia32.h" | 8 #include "src/ia32/lithium-ia32.h" |
| 9 | 9 |
| 10 #include "src/base/logging.h" | 10 #include "src/base/logging.h" |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 // to be in edi. | 195 // to be in edi. |
| 196 void CallKnownFunction(Handle<JSFunction> function, | 196 void CallKnownFunction(Handle<JSFunction> function, |
| 197 int formal_parameter_count, int arity, | 197 int formal_parameter_count, int arity, |
| 198 LInstruction* instr); | 198 LInstruction* instr); |
| 199 | 199 |
| 200 void RecordSafepointWithLazyDeopt(LInstruction* instr, | 200 void RecordSafepointWithLazyDeopt(LInstruction* instr, |
| 201 SafepointMode safepoint_mode); | 201 SafepointMode safepoint_mode); |
| 202 | 202 |
| 203 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, | 203 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, |
| 204 Safepoint::DeoptMode mode); | 204 Safepoint::DeoptMode mode); |
| 205 void DeoptimizeIf(Condition cc, LInstruction* instr, | 205 void DeoptimizeIf(Condition cc, LInstruction* instr, const char* detail, |
| 206 Deoptimizer::DeoptReason deopt_reason, | |
| 207 Deoptimizer::BailoutType bailout_type); | 206 Deoptimizer::BailoutType bailout_type); |
| 208 void DeoptimizeIf(Condition cc, LInstruction* instr, | 207 void DeoptimizeIf(Condition cc, LInstruction* instr, const char* detail); |
| 209 Deoptimizer::DeoptReason deopt_reason); | |
| 210 | 208 |
| 211 bool DeoptEveryNTimes() { | 209 bool DeoptEveryNTimes() { |
| 212 return FLAG_deopt_every_n_times != 0 && !info()->IsStub(); | 210 return FLAG_deopt_every_n_times != 0 && !info()->IsStub(); |
| 213 } | 211 } |
| 214 | 212 |
| 215 void AddToTranslation(LEnvironment* environment, | 213 void AddToTranslation(LEnvironment* environment, |
| 216 Translation* translation, | 214 Translation* translation, |
| 217 LOperand* op, | 215 LOperand* op, |
| 218 bool is_tagged, | 216 bool is_tagged, |
| 219 bool is_uint32, | 217 bool is_uint32, |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 Label entry_; | 400 Label entry_; |
| 403 Label exit_; | 401 Label exit_; |
| 404 Label* external_exit_; | 402 Label* external_exit_; |
| 405 Label done_; | 403 Label done_; |
| 406 int instruction_index_; | 404 int instruction_index_; |
| 407 }; | 405 }; |
| 408 | 406 |
| 409 } } // namespace v8::internal | 407 } } // namespace v8::internal |
| 410 | 408 |
| 411 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 409 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |