| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 int* offset); | 298 int* offset); |
| 299 | 299 |
| 300 struct JumpTableEntry { | 300 struct JumpTableEntry { |
| 301 explicit inline JumpTableEntry(Address entry) | 301 explicit inline JumpTableEntry(Address entry) |
| 302 : label(), | 302 : label(), |
| 303 address(entry) { } | 303 address(entry) { } |
| 304 Label label; | 304 Label label; |
| 305 Address address; | 305 Address address; |
| 306 }; | 306 }; |
| 307 | 307 |
| 308 void EnsureSpaceForLazyDeopt(); | 308 void EnsureSpaceForLazyDeopt(int space_needed); |
| 309 | 309 |
| 310 LChunk* const chunk_; | 310 LChunk* const chunk_; |
| 311 MacroAssembler* const masm_; | 311 MacroAssembler* const masm_; |
| 312 CompilationInfo* const info_; | 312 CompilationInfo* const info_; |
| 313 | 313 |
| 314 int current_block_; | 314 int current_block_; |
| 315 int current_instruction_; | 315 int current_instruction_; |
| 316 const ZoneList<LInstruction*>* instructions_; | 316 const ZoneList<LInstruction*>* instructions_; |
| 317 ZoneList<LEnvironment*> deoptimizations_; | 317 ZoneList<LEnvironment*> deoptimizations_; |
| 318 ZoneList<JumpTableEntry> jump_table_; | 318 ZoneList<JumpTableEntry> jump_table_; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 LCodeGen* codegen_; | 386 LCodeGen* codegen_; |
| 387 Label entry_; | 387 Label entry_; |
| 388 Label exit_; | 388 Label exit_; |
| 389 Label* external_exit_; | 389 Label* external_exit_; |
| 390 int instruction_index_; | 390 int instruction_index_; |
| 391 }; | 391 }; |
| 392 | 392 |
| 393 } } // namespace v8::internal | 393 } } // namespace v8::internal |
| 394 | 394 |
| 395 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 395 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
| OLD | NEW |