| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 lowering ----*- C++ -*-===// | 1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 } | 558 } |
| 559 void _pand(Variable *Dest, Operand *Src0) { | 559 void _pand(Variable *Dest, Operand *Src0) { |
| 560 Context.insert<typename Traits::Insts::Pand>(Dest, Src0); | 560 Context.insert<typename Traits::Insts::Pand>(Dest, Src0); |
| 561 } | 561 } |
| 562 void _pandn(Variable *Dest, Operand *Src0) { | 562 void _pandn(Variable *Dest, Operand *Src0) { |
| 563 Context.insert<typename Traits::Insts::Pandn>(Dest, Src0); | 563 Context.insert<typename Traits::Insts::Pandn>(Dest, Src0); |
| 564 } | 564 } |
| 565 void _pblendvb(Variable *Dest, Operand *Src0, Operand *Src1) { | 565 void _pblendvb(Variable *Dest, Operand *Src0, Operand *Src1) { |
| 566 Context.insert<typename Traits::Insts::Pblendvb>(Dest, Src0, Src1); | 566 Context.insert<typename Traits::Insts::Pblendvb>(Dest, Src0, Src1); |
| 567 } | 567 } |
| 568 void _pcmpeq(Variable *Dest, Operand *Src0) { | 568 void _pcmpeq(Variable *Dest, Operand *Src0, |
| 569 Context.insert<typename Traits::Insts::Pcmpeq>(Dest, Src0); | 569 Type ArithmeticTypeOverride = IceType_void) { |
| 570 Context.insert<typename Traits::Insts::Pcmpeq>(Dest, Src0, |
| 571 ArithmeticTypeOverride); |
| 570 } | 572 } |
| 571 void _pcmpgt(Variable *Dest, Operand *Src0) { | 573 void _pcmpgt(Variable *Dest, Operand *Src0) { |
| 572 Context.insert<typename Traits::Insts::Pcmpgt>(Dest, Src0); | 574 Context.insert<typename Traits::Insts::Pcmpgt>(Dest, Src0); |
| 573 } | 575 } |
| 574 void _pextr(Variable *Dest, Operand *Src0, Operand *Src1) { | 576 void _pextr(Variable *Dest, Operand *Src0, Operand *Src1) { |
| 575 Context.insert<typename Traits::Insts::Pextr>(Dest, Src0, Src1); | 577 Context.insert<typename Traits::Insts::Pextr>(Dest, Src0, Src1); |
| 576 } | 578 } |
| 577 void _pinsr(Variable *Dest, Operand *Src0, Operand *Src1) { | 579 void _pinsr(Variable *Dest, Operand *Src0, Operand *Src1) { |
| 578 Context.insert<typename Traits::Insts::Pinsr>(Dest, Src0, Src1); | 580 Context.insert<typename Traits::Insts::Pinsr>(Dest, Src0, Src1); |
| 579 } | 581 } |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 | 841 |
| 840 static FixupKind PcRelFixup; | 842 static FixupKind PcRelFixup; |
| 841 static FixupKind AbsFixup; | 843 static FixupKind AbsFixup; |
| 842 }; | 844 }; |
| 843 } // end of namespace X86NAMESPACE | 845 } // end of namespace X86NAMESPACE |
| 844 } // end of namespace Ice | 846 } // end of namespace Ice |
| 845 | 847 |
| 846 #include "IceTargetLoweringX86BaseImpl.h" | 848 #include "IceTargetLoweringX86BaseImpl.h" |
| 847 | 849 |
| 848 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H | 850 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H |
| OLD | NEW |