| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 int arity, | 269 int arity, |
| 270 LInstruction* instr, | 270 LInstruction* instr, |
| 271 CallKind call_kind, | 271 CallKind call_kind, |
| 272 EDIState edi_state); | 272 EDIState edi_state); |
| 273 | 273 |
| 274 void RecordSafepointWithLazyDeopt(LInstruction* instr, | 274 void RecordSafepointWithLazyDeopt(LInstruction* instr, |
| 275 SafepointMode safepoint_mode); | 275 SafepointMode safepoint_mode); |
| 276 | 276 |
| 277 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, | 277 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, |
| 278 Safepoint::DeoptMode mode); | 278 Safepoint::DeoptMode mode); |
| 279 void DeoptimizeIf(Condition cc, LEnvironment* environment); | 279 void DeoptimizeIf(Condition cc, LEnvironment* environment, |
| 280 bool soft_deopt = false); |
| 280 | 281 |
| 281 void AddToTranslation(Translation* translation, | 282 void AddToTranslation(Translation* translation, |
| 282 LOperand* op, | 283 LOperand* op, |
| 283 bool is_tagged, | 284 bool is_tagged, |
| 284 bool is_uint32, | 285 bool is_uint32, |
| 285 bool arguments_known, | 286 bool arguments_known, |
| 286 int arguments_index, | 287 int arguments_index, |
| 287 int arguments_count); | 288 int arguments_count); |
| 288 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); | 289 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); |
| 289 void PopulateDeoptimizationData(Handle<Code> code); | 290 void PopulateDeoptimizationData(Handle<Code> code); |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 LCodeGen* codegen_; | 492 LCodeGen* codegen_; |
| 492 Label entry_; | 493 Label entry_; |
| 493 Label exit_; | 494 Label exit_; |
| 494 Label* external_exit_; | 495 Label* external_exit_; |
| 495 int instruction_index_; | 496 int instruction_index_; |
| 496 }; | 497 }; |
| 497 | 498 |
| 498 } } // namespace v8::internal | 499 } } // namespace v8::internal |
| 499 | 500 |
| 500 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 501 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |