| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 Safepoint::DeoptMode mode); | 340 Safepoint::DeoptMode mode); |
| 341 void RecordSafepointWithRegistersAndDoubles(LPointerMap* pointers, | 341 void RecordSafepointWithRegistersAndDoubles(LPointerMap* pointers, |
| 342 int arguments, | 342 int arguments, |
| 343 Safepoint::DeoptMode mode); | 343 Safepoint::DeoptMode mode); |
| 344 void RecordSafepointWithLazyDeopt(LInstruction* instr, | 344 void RecordSafepointWithLazyDeopt(LInstruction* instr, |
| 345 SafepointMode safepoint_mode); | 345 SafepointMode safepoint_mode); |
| 346 | 346 |
| 347 void EnsureSpaceForLazyDeopt(int space_needed) V8_OVERRIDE; | 347 void EnsureSpaceForLazyDeopt(int space_needed) V8_OVERRIDE; |
| 348 | 348 |
| 349 ZoneList<LEnvironment*> deoptimizations_; | 349 ZoneList<LEnvironment*> deoptimizations_; |
| 350 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; | 350 ZoneList<Deoptimizer::JumpTableEntry*> deopt_jump_table_; |
| 351 ZoneList<Handle<Object> > deoptimization_literals_; | 351 ZoneList<Handle<Object> > deoptimization_literals_; |
| 352 int inlined_function_count_; | 352 int inlined_function_count_; |
| 353 Scope* const scope_; | 353 Scope* const scope_; |
| 354 TranslationBuffer translations_; | 354 TranslationBuffer translations_; |
| 355 ZoneList<LDeferredCode*> deferred_; | 355 ZoneList<LDeferredCode*> deferred_; |
| 356 int osr_pc_offset_; | 356 int osr_pc_offset_; |
| 357 bool frame_is_built_; | 357 bool frame_is_built_; |
| 358 | 358 |
| 359 // Builder that keeps track of safepoints in the code. The table itself is | 359 // Builder that keeps track of safepoints in the code. The table itself is |
| 360 // emitted at the end of the generated code. | 360 // emitted at the end of the generated code. |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 | 466 |
| 467 protected: | 467 protected: |
| 468 MacroAssembler* masm() const { return codegen_->masm(); } | 468 MacroAssembler* masm() const { return codegen_->masm(); } |
| 469 | 469 |
| 470 LCodeGen* codegen_; | 470 LCodeGen* codegen_; |
| 471 }; | 471 }; |
| 472 | 472 |
| 473 } } // namespace v8::internal | 473 } } // namespace v8::internal |
| 474 | 474 |
| 475 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ | 475 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ |
| OLD | NEW |