OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 | 270 |
271 void RecordSafepointWithLazyDeopt(LInstruction* instr, | 271 void RecordSafepointWithLazyDeopt(LInstruction* instr, |
272 SafepointMode safepoint_mode); | 272 SafepointMode safepoint_mode); |
273 | 273 |
274 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, | 274 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, |
275 Safepoint::DeoptMode mode); | 275 Safepoint::DeoptMode mode); |
276 void DeoptimizeIf(Condition cc, | 276 void DeoptimizeIf(Condition cc, |
277 LEnvironment* environment, | 277 LEnvironment* environment, |
278 Deoptimizer::BailoutType bailout_type); | 278 Deoptimizer::BailoutType bailout_type); |
279 void DeoptimizeIf(Condition cc, LEnvironment* environment); | 279 void DeoptimizeIf(Condition cc, LEnvironment* environment); |
| 280 void ApplyCheckIf(Condition cc, LBoundsCheck* check); |
280 void SoftDeoptimize(LEnvironment* environment); | 281 void SoftDeoptimize(LEnvironment* environment); |
281 | 282 |
282 void AddToTranslation(Translation* translation, | 283 void AddToTranslation(Translation* translation, |
283 LOperand* op, | 284 LOperand* op, |
284 bool is_tagged, | 285 bool is_tagged, |
285 bool is_uint32); | 286 bool is_uint32); |
286 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); | 287 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); |
287 void PopulateDeoptimizationData(Handle<Code> code); | 288 void PopulateDeoptimizationData(Handle<Code> code); |
288 int DefineDeoptimizationLiteral(Handle<Object> literal); | 289 int DefineDeoptimizationLiteral(Handle<Object> literal); |
289 | 290 |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 LCodeGen* codegen_; | 476 LCodeGen* codegen_; |
476 Label entry_; | 477 Label entry_; |
477 Label exit_; | 478 Label exit_; |
478 Label* external_exit_; | 479 Label* external_exit_; |
479 int instruction_index_; | 480 int instruction_index_; |
480 }; | 481 }; |
481 | 482 |
482 } } // namespace v8::internal | 483 } } // namespace v8::internal |
483 | 484 |
484 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 485 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
OLD | NEW |