| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringARM32.h - ARM32 lowering ----*- C++ -*-===// | 1 //===- subzero/src/IceTargetLoweringARM32.h - ARM32 lowering ----*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 /// | 9 /// |
| 10 /// \file | 10 /// \file |
| (...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 } | 795 } |
| 796 void _vmla(Variable *Dest, Variable *Src0, Variable *Src1) { | 796 void _vmla(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 797 Context.insert<InstARM32Vmla>(Dest, Src0, Src1); | 797 Context.insert<InstARM32Vmla>(Dest, Src0, Src1); |
| 798 } | 798 } |
| 799 void _vmls(Variable *Dest, Variable *Src0, Variable *Src1) { | 799 void _vmls(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 800 Context.insert<InstARM32Vmls>(Dest, Src0, Src1); | 800 Context.insert<InstARM32Vmls>(Dest, Src0, Src1); |
| 801 } | 801 } |
| 802 void _vmul(Variable *Dest, Variable *Src0, Variable *Src1) { | 802 void _vmul(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 803 Context.insert<InstARM32Vmul>(Dest, Src0, Src1); | 803 Context.insert<InstARM32Vmul>(Dest, Src0, Src1); |
| 804 } | 804 } |
| 805 void _vorr(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 806 Context.insert<InstARM32Vorr>(Dest, Src0, Src1); |
| 807 } |
| 805 void _vsqrt(Variable *Dest, Variable *Src, | 808 void _vsqrt(Variable *Dest, Variable *Src, |
| 806 CondARM32::Cond Pred = CondARM32::AL) { | 809 CondARM32::Cond Pred = CondARM32::AL) { |
| 807 Context.insert<InstARM32Vsqrt>(Dest, Src, Pred); | 810 Context.insert<InstARM32Vsqrt>(Dest, Src, Pred); |
| 808 } | 811 } |
| 809 void _vsub(Variable *Dest, Variable *Src0, Variable *Src1) { | 812 void _vsub(Variable *Dest, Variable *Src0, Variable *Src1) { |
| 810 Context.insert<InstARM32Vsub>(Dest, Src0, Src1); | 813 Context.insert<InstARM32Vsub>(Dest, Src0, Src1); |
| 811 } | 814 } |
| 812 | 815 |
| 813 // Iterates over the CFG and determines the maximum outgoing stack arguments | 816 // Iterates over the CFG and determines the maximum outgoing stack arguments |
| 814 // bytes. This information is later used during addProlog() to pre-allocate | 817 // bytes. This information is later used during addProlog() to pre-allocate |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1205 private: | 1208 private: |
| 1206 ~TargetHeaderARM32() = default; | 1209 ~TargetHeaderARM32() = default; |
| 1207 | 1210 |
| 1208 TargetARM32Features CPUFeatures; | 1211 TargetARM32Features CPUFeatures; |
| 1209 }; | 1212 }; |
| 1210 | 1213 |
| 1211 } // end of namespace ARM32 | 1214 } // end of namespace ARM32 |
| 1212 } // end of namespace Ice | 1215 } // end of namespace Ice |
| 1213 | 1216 |
| 1214 #endif // SUBZERO_SRC_ICETARGETLOWERINGARM32_H | 1217 #endif // SUBZERO_SRC_ICETARGETLOWERINGARM32_H |
| OLD | NEW |