| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 LInstruction* instr, | 204 LInstruction* instr, |
| 205 EDIState edi_state); | 205 EDIState edi_state); |
| 206 | 206 |
| 207 void RecordSafepointWithLazyDeopt(LInstruction* instr, | 207 void RecordSafepointWithLazyDeopt(LInstruction* instr, |
| 208 SafepointMode safepoint_mode); | 208 SafepointMode safepoint_mode); |
| 209 | 209 |
| 210 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, | 210 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, |
| 211 Safepoint::DeoptMode mode); | 211 Safepoint::DeoptMode mode); |
| 212 void DeoptimizeIf(Condition cc, LInstruction* instr, const char* detail, | 212 void DeoptimizeIf(Condition cc, LInstruction* instr, const char* detail, |
| 213 Deoptimizer::BailoutType bailout_type); | 213 Deoptimizer::BailoutType bailout_type); |
| 214 void DeoptimizeIf(Condition cc, LInstruction* instr, | 214 void DeoptimizeIf(Condition cc, LInstruction* instr, const char* detail); |
| 215 const char* detail = NULL); | |
| 216 | 215 |
| 217 bool DeoptEveryNTimes() { | 216 bool DeoptEveryNTimes() { |
| 218 return FLAG_deopt_every_n_times != 0 && !info()->IsStub(); | 217 return FLAG_deopt_every_n_times != 0 && !info()->IsStub(); |
| 219 } | 218 } |
| 220 | 219 |
| 221 void AddToTranslation(LEnvironment* environment, | 220 void AddToTranslation(LEnvironment* environment, |
| 222 Translation* translation, | 221 Translation* translation, |
| 223 LOperand* op, | 222 LOperand* op, |
| 224 bool is_tagged, | 223 bool is_tagged, |
| 225 bool is_uint32, | 224 bool is_uint32, |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 Label entry_; | 407 Label entry_; |
| 409 Label exit_; | 408 Label exit_; |
| 410 Label* external_exit_; | 409 Label* external_exit_; |
| 411 Label done_; | 410 Label done_; |
| 412 int instruction_index_; | 411 int instruction_index_; |
| 413 }; | 412 }; |
| 414 | 413 |
| 415 } } // namespace v8::internal | 414 } } // namespace v8::internal |
| 416 | 415 |
| 417 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 416 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |