Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: src/IceTargetLoweringARM32.h

Issue 1639403004: ARM32 vorr lowering (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Alphabetizing Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/IceInstARM32.cpp ('k') | src/IceTargetLoweringARM32.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/IceInstARM32.cpp ('k') | src/IceTargetLoweringARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698