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

Side by Side Diff: src/IceTargetLoweringX8632Traits.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/IceTargetLoweringX8632Traits.h - x86-32 traits -*- C++ -*-=// 1 //===- subzero/src/IceTargetLoweringX8632Traits.h - x86-32 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 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 const char *EmitString; 846 const char *EmitString;
847 } InstBrAttributes[]; 847 } InstBrAttributes[];
848 848
849 static const struct InstCmppsAttributesType { 849 static const struct InstCmppsAttributesType {
850 const char *EmitString; 850 const char *EmitString;
851 } InstCmppsAttributes[]; 851 } InstCmppsAttributes[];
852 852
853 static const struct TypeAttributesType { 853 static const struct TypeAttributesType {
854 const char *CvtString; // i (integer), s (single FP), d (double FP) 854 const char *CvtString; // i (integer), s (single FP), d (double FP)
855 const char *SdSsString; // ss, sd, or <blank> 855 const char *SdSsString; // ss, sd, or <blank>
856 const char *PdPsString; // ps, pd, or <blank>
857 const char *SpsdString; // ss, sd, ps, pd, or <blank>
856 const char *PackString; // b, w, d, or <blank> 858 const char *PackString; // b, w, d, or <blank>
857 const char *WidthString; // b, w, l, q, or <blank> 859 const char *WidthString; // b, w, l, q, or <blank>
858 const char *FldString; // s, l, or <blank> 860 const char *FldString; // s, l, or <blank>
859 } TypeAttributes[]; 861 } TypeAttributes[];
860 862
861 static const char *InstSegmentRegNames[]; 863 static const char *InstSegmentRegNames[];
862 864
863 static uint8_t InstSegmentPrefixes[]; 865 static uint8_t InstSegmentPrefixes[];
864 }; 866 };
865 867
866 } // end of namespace X86Internal 868 } // end of namespace X86Internal
867 869
868 namespace X8632 { 870 namespace X8632 {
869 using Traits = ::Ice::X86Internal::MachineTraits<TargetX8632>; 871 using Traits = ::Ice::X86Internal::MachineTraits<TargetX8632>;
870 } // end of namespace X8632 872 } // end of namespace X8632
871 873
872 } // end of namespace Ice 874 } // end of namespace Ice
873 875
874 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632TRAITS_H 876 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632TRAITS_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698