| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 Register temporary, | 217 Register temporary, |
| 218 Register temporary2); | 218 Register temporary2); |
| 219 | 219 |
| 220 int GetStackSlotCount() const { return chunk()->spill_slot_count(); } | 220 int GetStackSlotCount() const { return chunk()->spill_slot_count(); } |
| 221 | 221 |
| 222 void Abort(BailoutReason reason); | 222 void Abort(BailoutReason reason); |
| 223 void FPRINTF_CHECKING Comment(const char* format, ...); | 223 void FPRINTF_CHECKING Comment(const char* format, ...); |
| 224 | 224 |
| 225 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); } | 225 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); } |
| 226 | 226 |
| 227 void SaveCallerDoubles(); |
| 228 void RestoreCallerDoubles(); |
| 229 |
| 227 // Code generation passes. Returns true if code generation should | 230 // Code generation passes. Returns true if code generation should |
| 228 // continue. | 231 // continue. |
| 229 bool GeneratePrologue(); | 232 bool GeneratePrologue(); |
| 230 bool GenerateBody(); | 233 bool GenerateBody(); |
| 231 bool GenerateDeferredCode(); | 234 bool GenerateDeferredCode(); |
| 232 bool GenerateJumpTable(); | 235 bool GenerateJumpTable(); |
| 233 bool GenerateSafepointTable(); | 236 bool GenerateSafepointTable(); |
| 234 | 237 |
| 235 // Generates the custom OSR entrypoint and sets the osr_pc_offset. | 238 // Generates the custom OSR entrypoint and sets the osr_pc_offset. |
| 236 void GenerateOsrPrologue(); | 239 void GenerateOsrPrologue(); |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 Label exit_; | 568 Label exit_; |
| 566 Label* external_exit_; | 569 Label* external_exit_; |
| 567 Label done_; | 570 Label done_; |
| 568 int instruction_index_; | 571 int instruction_index_; |
| 569 LCodeGen::X87Stack x87_stack_; | 572 LCodeGen::X87Stack x87_stack_; |
| 570 }; | 573 }; |
| 571 | 574 |
| 572 } } // namespace v8::internal | 575 } } // namespace v8::internal |
| 573 | 576 |
| 574 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 577 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |