| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 LOperand* op, | 269 LOperand* op, |
| 270 bool is_tagged, | 270 bool is_tagged, |
| 271 bool is_uint32, | 271 bool is_uint32, |
| 272 int* object_index_pointer, | 272 int* object_index_pointer, |
| 273 int* dematerialized_index_pointer); | 273 int* dematerialized_index_pointer); |
| 274 | 274 |
| 275 void SaveCallerDoubles(); | 275 void SaveCallerDoubles(); |
| 276 void RestoreCallerDoubles(); | 276 void RestoreCallerDoubles(); |
| 277 | 277 |
| 278 // Code generation steps. Returns true if code generation should continue. | 278 // Code generation steps. Returns true if code generation should continue. |
| 279 void GenerateBodyInstructionPre(LInstruction* instr) V8_OVERRIDE; |
| 279 bool GeneratePrologue(); | 280 bool GeneratePrologue(); |
| 280 bool GenerateDeferredCode(); | 281 bool GenerateDeferredCode(); |
| 281 bool GenerateDeoptJumpTable(); | 282 bool GenerateDeoptJumpTable(); |
| 282 bool GenerateSafepointTable(); | 283 bool GenerateSafepointTable(); |
| 283 | 284 |
| 284 // Generates the custom OSR entrypoint and sets the osr_pc_offset. | 285 // Generates the custom OSR entrypoint and sets the osr_pc_offset. |
| 285 void GenerateOsrPrologue(); | 286 void GenerateOsrPrologue(); |
| 286 | 287 |
| 287 enum SafepointMode { | 288 enum SafepointMode { |
| 288 RECORD_SIMPLE_SAFEPOINT, | 289 RECORD_SIMPLE_SAFEPOINT, |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 | 466 |
| 466 protected: | 467 protected: |
| 467 MacroAssembler* masm() const { return codegen_->masm(); } | 468 MacroAssembler* masm() const { return codegen_->masm(); } |
| 468 | 469 |
| 469 LCodeGen* codegen_; | 470 LCodeGen* codegen_; |
| 470 }; | 471 }; |
| 471 | 472 |
| 472 } } // namespace v8::internal | 473 } } // namespace v8::internal |
| 473 | 474 |
| 474 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ | 475 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ |
| OLD | NEW |