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

Side by Side Diff: src/IceInstX8632.cpp

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/IceInstX8632.cpp - X86-32 instruction implementation ---===// 1 //===- subzero/src/IceInstX8632.cpp - X86-32 instruction implementation ---===//
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 MachineTraits<TargetX8632>::InstCmppsAttributes[] = { 43 MachineTraits<TargetX8632>::InstCmppsAttributes[] = {
44 #define X(val, emit) \ 44 #define X(val, emit) \
45 { emit } \ 45 { emit } \
46 , 46 ,
47 ICEINSTX8632CMPPS_TABLE 47 ICEINSTX8632CMPPS_TABLE
48 #undef X 48 #undef X
49 }; 49 };
50 50
51 const MachineTraits<TargetX8632>::TypeAttributesType 51 const MachineTraits<TargetX8632>::TypeAttributesType
52 MachineTraits<TargetX8632>::TypeAttributes[] = { 52 MachineTraits<TargetX8632>::TypeAttributes[] = {
53 #define X(tag, elementty, cvt, sdss, pack, width, fld) \ 53 #define X(tag, elementty, cvt, sdss, pdps, spsd, pack, width, fld) \
54 { cvt, sdss, pack, width, fld } \ 54 { cvt, sdss, pdps, spsd, pack, width, fld } \
55 , 55 ,
56 ICETYPEX8632_TABLE 56 ICETYPEX8632_TABLE
57 #undef X 57 #undef X
58 }; 58 };
59 59
60 const char *MachineTraits<TargetX8632>::InstSegmentRegNames[] = { 60 const char *MachineTraits<TargetX8632>::InstSegmentRegNames[] = {
61 #define X(val, name, prefix) name, 61 #define X(val, name, prefix) name,
62 SEG_REGX8632_TABLE 62 SEG_REGX8632_TABLE
63 #undef X 63 #undef X
64 }; 64 };
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 Var->dump(Func); 324 Var->dump(Func);
325 else 325 else
326 Var->dump(Str); 326 Var->dump(Str);
327 Str << ")"; 327 Str << ")";
328 } 328 }
329 329
330 } // namespace X86Internal 330 } // namespace X86Internal
331 } // end of namespace Ice 331 } // end of namespace Ice
332 332
333 X86INSTS_DEFINE_STATIC_DATA(TargetX8632) 333 X86INSTS_DEFINE_STATIC_DATA(TargetX8632)
OLDNEW
« no previous file with comments | « src/IceAssemblerX86BaseImpl.h ('k') | src/IceInstX8632.def » ('j') | src/IceInstX86BaseImpl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698