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

Side by Side Diff: src/IceTargetLoweringX8664Traits.h

Issue 1497033002: Fuse icmp/fcmp with select (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes. Created 5 years 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
OLDNEW
1 //===- subzero/src/IceTargetLoweringX8664Traits.h - x86-64 traits -*- C++ -*-=// 1 //===- subzero/src/IceTargetLoweringX8664Traits.h - x86-64 traits -*- 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 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 const char *EmitString; 825 const char *EmitString;
826 } InstBrAttributes[]; 826 } InstBrAttributes[];
827 827
828 static const struct InstCmppsAttributesType { 828 static const struct InstCmppsAttributesType {
829 const char *EmitString; 829 const char *EmitString;
830 } InstCmppsAttributes[]; 830 } InstCmppsAttributes[];
831 831
832 static const struct TypeAttributesType { 832 static const struct TypeAttributesType {
833 const char *CvtString; // i (integer), s (single FP), d (double FP) 833 const char *CvtString; // i (integer), s (single FP), d (double FP)
834 const char *SdSsString; // ss, sd, or <blank> 834 const char *SdSsString; // ss, sd, or <blank>
835 const char *PdPsString; // ps, pd, or <blank>
836 const char *SpSdString; // ss, sd, ps, pd, or <blank>
835 const char *PackString; // b, w, d, or <blank> 837 const char *PackString; // b, w, d, or <blank>
836 const char *WidthString; // b, w, l, q, or <blank> 838 const char *WidthString; // b, w, l, q, or <blank>
837 const char *FldString; // s, l, or <blank> 839 const char *FldString; // s, l, or <blank>
838 } TypeAttributes[]; 840 } TypeAttributes[];
839 }; 841 };
840 842
841 } // end of namespace X86Internal 843 } // end of namespace X86Internal
842 844
843 namespace X8664 { 845 namespace X8664 {
844 using Traits = ::Ice::X86Internal::MachineTraits<TargetX8664>; 846 using Traits = ::Ice::X86Internal::MachineTraits<TargetX8664>;
845 } // end of namespace X8664 847 } // end of namespace X8664
846 848
847 } // end of namespace Ice 849 } // end of namespace Ice
848 850
849 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8664TRAITS_H 851 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8664TRAITS_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698