| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 void DoDeferredNumberTagI(LInstruction* instr, | 168 void DoDeferredNumberTagI(LInstruction* instr, |
| 169 LOperand* value, | 169 LOperand* value, |
| 170 LOperand* temp1, | 170 LOperand* temp1, |
| 171 LOperand* temp2, | 171 LOperand* temp2, |
| 172 IntegerSignedness signedness); | 172 IntegerSignedness signedness); |
| 173 void DoDeferredTaggedToI(LTaggedToI* instr, | 173 void DoDeferredTaggedToI(LTaggedToI* instr, |
| 174 LOperand* value, | 174 LOperand* value, |
| 175 LOperand* temp1, | 175 LOperand* temp1, |
| 176 LOperand* temp2); | 176 LOperand* temp2); |
| 177 void DoDeferredAllocate(LAllocate* instr); | 177 void DoDeferredAllocate(LAllocate* instr); |
| 178 void DoDeferredAllocateObject(LAllocateObject* instr); | |
| 179 | 178 |
| 180 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 179 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 181 Label* map_check); | 180 Label* map_check); |
| 182 | 181 |
| 183 static Condition TokenToCondition(Token::Value op, bool is_unsigned); | 182 static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
| 184 void EmitGoto(int block); | 183 void EmitGoto(int block); |
| 185 int GetNextEmittedBlock() const; | 184 int GetNextEmittedBlock() const; |
| 186 void DoGap(LGap* instr); | 185 void DoGap(LGap* instr); |
| 187 | 186 |
| 188 // Generic version of EmitBranch. It contains some code to avoid emitting a | 187 // Generic version of EmitBranch. It contains some code to avoid emitting a |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 | 477 |
| 479 protected: | 478 protected: |
| 480 MacroAssembler* masm() const { return codegen_->masm(); } | 479 MacroAssembler* masm() const { return codegen_->masm(); } |
| 481 | 480 |
| 482 LCodeGen* codegen_; | 481 LCodeGen* codegen_; |
| 483 }; | 482 }; |
| 484 | 483 |
| 485 } } // namespace v8::internal | 484 } } // namespace v8::internal |
| 486 | 485 |
| 487 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ | 486 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ |
| OLD | NEW |