Index: src/IceTargetLoweringX8632.h |
diff --git a/src/IceTargetLoweringX8632.h b/src/IceTargetLoweringX8632.h |
index 864881ffcdd9740933c79167399d2677b5faa542..49b1f0c49b6d440ab60992adb60d3b65d65e7e3c 100644 |
--- a/src/IceTargetLoweringX8632.h |
+++ b/src/IceTargetLoweringX8632.h |
@@ -108,6 +108,8 @@ protected: |
void expandAtomicRMWAsCmpxchg(LowerBinOp op_lo, LowerBinOp op_hi, |
Variable *Dest, Operand *Ptr, Operand *Val); |
+ void eliminateNextVectorSextInstruction(Variable *SignExtendedResult); |
+ |
// Operand legalization helpers. To deal with address mode |
// constraints, the helpers will create a new Operand and emit |
// instructions that guarantee that the Operand kind is one of those |
@@ -212,6 +214,10 @@ protected: |
void _cmp(Operand *Src0, Operand *Src1) { |
Context.insert(InstX8632Icmp::create(Func, Src0, Src1)); |
} |
+ void _cmpps(Variable *Dest, Operand *Src0, |
+ InstX8632Cmpps::CmppsCond Condition) { |
+ Context.insert(InstX8632Cmpps::create(Func, Dest, Src0, Condition)); |
+ } |
void _cmpxchg(Operand *DestOrAddr, Variable *Eax, Variable *Desired, |
bool Locked) { |
Context.insert( |