diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-10-29 00:27:31 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-10-29 00:27:31 +0000 |
| commit | 5d6f6a061b5fa81addedba29ca26a276fd51e7cc (patch) | |
| tree | dbcaae17f4df31c954d84d31444b197a75a4d85c /llvm/lib | |
| parent | fc1b990b1ddc251442ba2c22b646836e92038da1 (diff) | |
| download | bcm5719-llvm-5d6f6a061b5fa81addedba29ca26a276fd51e7cc.tar.gz bcm5719-llvm-5d6f6a061b5fa81addedba29ca26a276fd51e7cc.zip | |
add simple support for addrmode5 operands, allowing
vldr.64 to work. I have no idea if this is fully right, but
it is in the right direction.
llvm-svn: 117626
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMInstrInfo.td | 6 | ||||
| -rw-r--r-- | llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 35 |
2 files changed, 31 insertions, 10 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td index dd38119c31e..40c099e6af2 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.td +++ b/llvm/lib/Target/ARM/ARMInstrInfo.td @@ -456,12 +456,18 @@ def addrmode4 : Operand<i32>, let MIOperandInfo = (ops GPR:$addr, i32imm); } +def ARMMemMode5AsmOperand : AsmOperandClass { + let Name = "MemMode5"; + let SuperClasses = []; +} + // addrmode5 := reg +/- imm8*4 // def addrmode5 : Operand<i32>, ComplexPattern<i32, 2, "SelectAddrMode5", []> { let PrintMethod = "printAddrMode5Operand"; let MIOperandInfo = (ops GPR:$base, i32imm); + let ParserMatchClass = ARMMemMode5AsmOperand; } // addrmode6 := reg with optional writeback diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 88b2c61604f..648b54a0338 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -153,9 +153,6 @@ public: }; - //ARMOperand(KindTy K, SMLoc S, SMLoc E) - // : Kind(K), StartLoc(S), EndLoc(E) {} - ARMOperand(const ARMOperand &o) : MCParsedAsmOperand() { Kind = o.Kind; StartLoc = o.StartLoc; @@ -205,16 +202,16 @@ public: } bool isCondCode() const { return Kind == CondCode; } - bool isImm() const { return Kind == Immediate; } - bool isReg() const { return Kind == Register; } - - bool isToken() const {return Kind == Token; } + bool isToken() const { return Kind == Token; } + bool isMemory() const { return Kind == Memory; } void addExpr(MCInst &Inst, const MCExpr *Expr) const { - // Add as immediates when possible. - if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr)) + // Add as immediates when possible. Null MCExpr = 0. + if (Expr == 0) + Inst.addOperand(MCOperand::CreateImm(0)); + else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr)) Inst.addOperand(MCOperand::CreateImm(CE->getValue())); else Inst.addOperand(MCOperand::CreateExpr(Expr)); @@ -236,6 +233,24 @@ public: assert(N == 1 && "Invalid number of operands!"); addExpr(Inst, getImm()); } + + + bool isMemMode5() const { + // FIXME: Is this right? What about postindexed and Writeback? + if (!isMemory() || Mem.OffsetIsReg || Mem.OffsetRegShifted || + Mem.Preindexed || Mem.Negative) + return false; + + return true; + } + + void addMemMode5Operands(MCInst &Inst, unsigned N) const { + assert(N == 2 && isMemMode5() && "Invalid number of operands!"); + + Inst.addOperand(MCOperand::CreateReg(Mem.BaseRegNum)); + assert(!Mem.OffsetIsReg && "invalid mode 5 operand"); + addExpr(Inst, Mem.Offset); + } virtual void dump(raw_ostream &OS) const; @@ -508,7 +523,7 @@ ARMOperand *ARMAsmParser::ParseMemory() { bool OffsetRegShifted = false; enum ShiftType ShiftType; const MCExpr *ShiftAmount; - const MCExpr *Offset; + const MCExpr *Offset = 0; const AsmToken &NextTok = Parser.getTok(); if (NextTok.isNot(AsmToken::EndOfStatement)) { |

