| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 ZoneList<Handle<Object> > deoptimization_literals_; | 404 ZoneList<Handle<Object> > deoptimization_literals_; |
| 405 int inlined_function_count_; | 405 int inlined_function_count_; |
| 406 Scope* const scope_; | 406 Scope* const scope_; |
| 407 Status status_; | 407 Status status_; |
| 408 TranslationBuffer translations_; | 408 TranslationBuffer translations_; |
| 409 ZoneList<LDeferredCode*> deferred_; | 409 ZoneList<LDeferredCode*> deferred_; |
| 410 bool dynamic_frame_alignment_; | 410 bool dynamic_frame_alignment_; |
| 411 bool support_aligned_spilled_doubles_; | 411 bool support_aligned_spilled_doubles_; |
| 412 int osr_pc_offset_; | 412 int osr_pc_offset_; |
| 413 int last_lazy_deopt_pc_; | 413 int last_lazy_deopt_pc_; |
| 414 Handle<FixedArray> handler_table_; |
| 414 bool frame_is_built_; | 415 bool frame_is_built_; |
| 415 int x87_stack_depth_; | 416 int x87_stack_depth_; |
| 416 | 417 |
| 417 // Builder that keeps track of safepoints in the code. The table | 418 // Builder that keeps track of safepoints in the code. The table |
| 418 // itself is emitted at the end of the generated code. | 419 // itself is emitted at the end of the generated code. |
| 419 SafepointTableBuilder safepoints_; | 420 SafepointTableBuilder safepoints_; |
| 420 | 421 |
| 421 // Compiler from a set of parallel moves to a sequential list of moves. | 422 // Compiler from a set of parallel moves to a sequential list of moves. |
| 422 LGapResolver resolver_; | 423 LGapResolver resolver_; |
| 423 | 424 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 LCodeGen* codegen_; | 477 LCodeGen* codegen_; |
| 477 Label entry_; | 478 Label entry_; |
| 478 Label exit_; | 479 Label exit_; |
| 479 Label* external_exit_; | 480 Label* external_exit_; |
| 480 int instruction_index_; | 481 int instruction_index_; |
| 481 }; | 482 }; |
| 482 | 483 |
| 483 } } // namespace v8::internal | 484 } } // namespace v8::internal |
| 484 | 485 |
| 485 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 486 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |