| Index: src/IceTargetLoweringX8632.h
|
| diff --git a/src/IceTargetLoweringX8632.h b/src/IceTargetLoweringX8632.h
|
| index 4c2c527042dcffacf68e71f209c6eeea64acf7c3..92abf754222a80c8df8dfa2d2e3d26cfa2e2a346 100644
|
| --- a/src/IceTargetLoweringX8632.h
|
| +++ b/src/IceTargetLoweringX8632.h
|
| @@ -46,6 +46,7 @@ public:
|
| return (typeWidthInBytes(Ty) + 3) & ~3;
|
| }
|
| virtual void emitVariable(const Variable *Var, const Cfg *Func) const;
|
| + virtual void lowerArguments();
|
| virtual void addProlog(CfgNode *Node);
|
| virtual void addEpilog(CfgNode *Node);
|
| virtual void emitConstants() const;
|
| @@ -56,8 +57,8 @@ public:
|
| // function calls using the 32-bit push instruction (though the
|
| // latter could be done by directly writing to the stack).
|
| void split64(Variable *Var);
|
| - void setArgOffsetAndCopy(Variable *Arg, Variable *FramePtr,
|
| - size_t BasicFrameOffset, size_t &InArgsSizeBytes);
|
| + void finishArgumentLowering(Variable *Arg, Variable *FramePtr,
|
| + size_t BasicFrameOffset, size_t &InArgsSizeBytes);
|
| Operand *loOperand(Operand *Operand);
|
| Operand *hiOperand(Operand *Operand);
|
|
|
| @@ -255,6 +256,9 @@ protected:
|
| void _store(Operand *Value, OperandX8632 *Mem) {
|
| Context.insert(InstX8632Store::create(Func, Value, Mem));
|
| }
|
| + void _storep(Operand *Value, OperandX8632 *Mem) {
|
| + Context.insert(InstX8632Storep::create(Func, Value, Mem));
|
| + }
|
| void _storeq(Operand *Value, OperandX8632 *Mem) {
|
| Context.insert(InstX8632StoreQ::create(Func, Value, Mem));
|
| }
|
|
|