| 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 ZoneList<LEnvironment*> deoptimizations_; | 351 ZoneList<LEnvironment*> deoptimizations_; |
| 352 ZoneList<Handle<Object> > deoptimization_literals_; | 352 ZoneList<Handle<Object> > deoptimization_literals_; |
| 353 int inlined_function_count_; | 353 int inlined_function_count_; |
| 354 Scope* const scope_; | 354 Scope* const scope_; |
| 355 Status status_; | 355 Status status_; |
| 356 TranslationBuffer translations_; | 356 TranslationBuffer translations_; |
| 357 ZoneList<LDeferredCode*> deferred_; | 357 ZoneList<LDeferredCode*> deferred_; |
| 358 bool dynamic_frame_alignment_; | 358 bool dynamic_frame_alignment_; |
| 359 int osr_pc_offset_; | 359 int osr_pc_offset_; |
| 360 int last_lazy_deopt_pc_; | 360 int last_lazy_deopt_pc_; |
| 361 Handle<FixedArray> handler_table_; |
| 361 | 362 |
| 362 // Builder that keeps track of safepoints in the code. The table | 363 // Builder that keeps track of safepoints in the code. The table |
| 363 // itself is emitted at the end of the generated code. | 364 // itself is emitted at the end of the generated code. |
| 364 SafepointTableBuilder safepoints_; | 365 SafepointTableBuilder safepoints_; |
| 365 | 366 |
| 366 // Compiler from a set of parallel moves to a sequential list of moves. | 367 // Compiler from a set of parallel moves to a sequential list of moves. |
| 367 LGapResolver resolver_; | 368 LGapResolver resolver_; |
| 368 | 369 |
| 369 Safepoint::Kind expected_safepoint_kind_; | 370 Safepoint::Kind expected_safepoint_kind_; |
| 370 | 371 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 LCodeGen* codegen_; | 421 LCodeGen* codegen_; |
| 421 Label entry_; | 422 Label entry_; |
| 422 Label exit_; | 423 Label exit_; |
| 423 Label* external_exit_; | 424 Label* external_exit_; |
| 424 int instruction_index_; | 425 int instruction_index_; |
| 425 }; | 426 }; |
| 426 | 427 |
| 427 } } // namespace v8::internal | 428 } } // namespace v8::internal |
| 428 | 429 |
| 429 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 430 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |