forked from OSchip/llvm-project
[mips] [IAS] Fix using .cpsetup with local labels (PR22518).
Summary: Parse for an MCExpr instead of an Identifier and use the symbol for relocations, not just the symbol's name. This fixes errors when using local labels in .cpsetup (PR22518). Reviewers: dsanders Reviewed By: dsanders Subscribers: seanbruno, emaste, llvm-commits Differential Revision: http://reviews.llvm.org/D7697 llvm-svn: 229671
This commit is contained in:
parent
bbb377c3a1
commit
8874eac5e6
|
@ -3781,12 +3781,20 @@ bool MipsAsmParser::parseDirectiveCPSetup() {
|
||||||
if (!eatComma("unexpected token, expected comma"))
|
if (!eatComma("unexpected token, expected comma"))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
StringRef Name;
|
const MCExpr *Expr;
|
||||||
if (Parser.parseIdentifier(Name))
|
if (Parser.parseExpression(Expr)) {
|
||||||
reportParseError("expected identifier");
|
reportParseError("expected expression");
|
||||||
MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
getTargetStreamer().emitDirectiveCpsetup(FuncReg, Save, *Sym, SaveIsReg);
|
if (Expr->getKind() != MCExpr::SymbolRef) {
|
||||||
|
reportParseError("expected symbol");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr *>(Expr);
|
||||||
|
|
||||||
|
getTargetStreamer().emitDirectiveCpsetup(FuncReg, Save, Ref->getSymbol(),
|
||||||
|
SaveIsReg);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -706,9 +706,10 @@ void MipsTargetELFStreamer::emitDirectiveCpsetup(unsigned RegNo,
|
||||||
Inst.clear();
|
Inst.clear();
|
||||||
|
|
||||||
const MCSymbolRefExpr *HiExpr = MCSymbolRefExpr::Create(
|
const MCSymbolRefExpr *HiExpr = MCSymbolRefExpr::Create(
|
||||||
Sym.getName(), MCSymbolRefExpr::VK_Mips_GPOFF_HI, MCA.getContext());
|
&Sym, MCSymbolRefExpr::VK_Mips_GPOFF_HI, MCA.getContext());
|
||||||
const MCSymbolRefExpr *LoExpr = MCSymbolRefExpr::Create(
|
const MCSymbolRefExpr *LoExpr = MCSymbolRefExpr::Create(
|
||||||
Sym.getName(), MCSymbolRefExpr::VK_Mips_GPOFF_LO, MCA.getContext());
|
&Sym, MCSymbolRefExpr::VK_Mips_GPOFF_LO, MCA.getContext());
|
||||||
|
|
||||||
// lui $gp, %hi(%neg(%gp_rel(funcSym)))
|
// lui $gp, %hi(%neg(%gp_rel(funcSym)))
|
||||||
Inst.setOpcode(Mips::LUi);
|
Inst.setOpcode(Mips::LUi);
|
||||||
Inst.addOperand(MCOperand::CreateReg(Mips::GP));
|
Inst.addOperand(MCOperand::CreateReg(Mips::GP));
|
||||||
|
|
|
@ -12,3 +12,11 @@ t1:
|
||||||
# ASM: :[[@LINE-1]]:23: error: expected save register or stack offset
|
# ASM: :[[@LINE-1]]:23: error: expected save register or stack offset
|
||||||
.cpsetup $31, $32, __cerror
|
.cpsetup $31, $32, __cerror
|
||||||
# ASM: :[[@LINE-1]]:23: error: invalid register
|
# ASM: :[[@LINE-1]]:23: error: invalid register
|
||||||
|
.cpsetup $25, $2, $3
|
||||||
|
# ASM: :[[@LINE-1]]:28: error: expected expression
|
||||||
|
.cpsetup $25, $2, 4
|
||||||
|
# ASM: :[[@LINE-1]]:28: error: expected symbol
|
||||||
|
.cpsetup $25, $2, 4+65
|
||||||
|
# ASM: :[[@LINE-1]]:31: error: expected symbol
|
||||||
|
.cpsetup $25, $2, foo+4
|
||||||
|
# ASM: :[[@LINE-1]]:32: error: expected symbol
|
||||||
|
|
|
@ -6,14 +6,14 @@
|
||||||
# RUN: FileCheck -check-prefix=ASM %s
|
# RUN: FileCheck -check-prefix=ASM %s
|
||||||
|
|
||||||
# RUN: llvm-mc -triple mips64-unknown-unknown -target-abi n32 -filetype=obj -o - %s | \
|
# RUN: llvm-mc -triple mips64-unknown-unknown -target-abi n32 -filetype=obj -o - %s | \
|
||||||
# RUN: llvm-objdump -d -r -arch=mips64 - | \
|
# RUN: llvm-objdump -d -r -t -arch=mips64 - | \
|
||||||
# RUN: FileCheck -check-prefix=NXX -check-prefix=N32 %s
|
# RUN: FileCheck -check-prefix=NXX -check-prefix=N32 %s
|
||||||
|
|
||||||
# RUN: llvm-mc -triple mips64-unknown-unknown -target-abi n32 %s | \
|
# RUN: llvm-mc -triple mips64-unknown-unknown -target-abi n32 %s | \
|
||||||
# RUN: FileCheck -check-prefix=ASM %s
|
# RUN: FileCheck -check-prefix=ASM %s
|
||||||
|
|
||||||
# RUN: llvm-mc -triple mips64-unknown-unknown %s -filetype=obj -o - | \
|
# RUN: llvm-mc -triple mips64-unknown-unknown %s -filetype=obj -o - | \
|
||||||
# RUN: llvm-objdump -d -r -arch=mips64 - | \
|
# RUN: llvm-objdump -d -r -t -arch=mips64 - | \
|
||||||
# RUN: FileCheck -check-prefix=NXX -check-prefix=N64 %s
|
# RUN: FileCheck -check-prefix=NXX -check-prefix=N64 %s
|
||||||
|
|
||||||
# RUN: llvm-mc -triple mips64-unknown-unknown %s | \
|
# RUN: llvm-mc -triple mips64-unknown-unknown %s | \
|
||||||
|
@ -61,6 +61,35 @@ t2:
|
||||||
|
|
||||||
# ASM: .cpsetup $25, $2, __cerror
|
# ASM: .cpsetup $25, $2, __cerror
|
||||||
|
|
||||||
|
# .cpsetup with local labels (PR22518):
|
||||||
|
1:
|
||||||
|
.cpsetup $25, $2, 1b
|
||||||
|
nop
|
||||||
|
sub $3, $3, $2
|
||||||
|
nop
|
||||||
|
|
||||||
|
# O32: t2:
|
||||||
|
# O32: nop
|
||||||
|
# O32: sub $3, $3, $2
|
||||||
|
# O32: nop
|
||||||
|
|
||||||
|
# FIXME: Direct object emission for N32 is still under development.
|
||||||
|
# N32 doesn't allow 3 operations to be specified in the same relocation
|
||||||
|
# record like N64 does.
|
||||||
|
|
||||||
|
# NXX: move $2, $gp
|
||||||
|
# NXX: lui $gp, 0
|
||||||
|
# NXX: R_MIPS_GPREL16/R_MIPS_SUB/R_MIPS_HI16 $tmp0
|
||||||
|
# NXX: addiu $gp, $gp, 0
|
||||||
|
# NXX: R_MIPS_GPREL16/R_MIPS_SUB/R_MIPS_LO16 $tmp0
|
||||||
|
# N32: addu $gp, $gp, $25
|
||||||
|
# N64: daddu $gp, $gp, $25
|
||||||
|
# NXX: nop
|
||||||
|
# NXX: sub $3, $3, $2
|
||||||
|
# NXX: nop
|
||||||
|
|
||||||
|
# ASM: .cpsetup $25, $2, $tmp0
|
||||||
|
|
||||||
t3:
|
t3:
|
||||||
.option pic0
|
.option pic0
|
||||||
nop
|
nop
|
||||||
|
@ -76,3 +105,7 @@ t3:
|
||||||
# ASM: nop
|
# ASM: nop
|
||||||
# ASM: .cpsetup $25, 8, __cerror
|
# ASM: .cpsetup $25, 8, __cerror
|
||||||
# ASM: nop
|
# ASM: nop
|
||||||
|
|
||||||
|
# For .cpsetup with local labels, we need to check if $tmp0 is in the symbol
|
||||||
|
# table:
|
||||||
|
# NXX: .text 00000000 $tmp0
|
||||||
|
|
Loading…
Reference in New Issue