| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 void DoDeferredNumberTagI(LInstruction* instr, | 150 void DoDeferredNumberTagI(LInstruction* instr, |
| 151 LOperand* value, | 151 LOperand* value, |
| 152 IntegerSignedness signedness); | 152 IntegerSignedness signedness); |
| 153 | 153 |
| 154 void DoDeferredTaggedToI(LTaggedToI* instr); | 154 void DoDeferredTaggedToI(LTaggedToI* instr); |
| 155 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); | 155 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
| 156 void DoDeferredStackCheck(LStackCheck* instr); | 156 void DoDeferredStackCheck(LStackCheck* instr); |
| 157 void DoDeferredRandom(LRandom* instr); | 157 void DoDeferredRandom(LRandom* instr); |
| 158 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 158 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
| 159 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 159 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
| 160 void DoDeferredAllocateObject(LAllocateObject* instr); | |
| 161 void DoDeferredAllocate(LAllocate* instr); | 160 void DoDeferredAllocate(LAllocate* instr); |
| 162 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 161 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 163 Label* map_check); | 162 Label* map_check); |
| 164 | 163 |
| 165 void DoCheckMapCommon(Register map_reg, Handle<Map> map, LEnvironment* env); | 164 void DoCheckMapCommon(Register map_reg, Handle<Map> map, LEnvironment* env); |
| 166 | 165 |
| 167 // Parallel move support. | 166 // Parallel move support. |
| 168 void DoParallelMove(LParallelMove* move); | 167 void DoParallelMove(LParallelMove* move); |
| 169 void DoGap(LGap* instr); | 168 void DoGap(LGap* instr); |
| 170 | 169 |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 LCodeGen* codegen_; | 504 LCodeGen* codegen_; |
| 506 Label entry_; | 505 Label entry_; |
| 507 Label exit_; | 506 Label exit_; |
| 508 Label* external_exit_; | 507 Label* external_exit_; |
| 509 int instruction_index_; | 508 int instruction_index_; |
| 510 }; | 509 }; |
| 511 | 510 |
| 512 } } // namespace v8::internal | 511 } } // namespace v8::internal |
| 513 | 512 |
| 514 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 513 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |