Skip to content
Snippets Groups Projects
Commit e8e4ef10 authored by Akira Hatanaka's avatar Akira Hatanaka
Browse files

In MipsDAGToDAGISel::SelectAddr, fold add node into address operand, if its

second operand is MipsISD::GPRel.

llvm-svn: 162584
parent fd5cf6cf
No related branches found
No related tags found
No related merge requests found
......@@ -337,8 +337,9 @@ SelectAddr(SDNode *Parent, SDValue Addr, SDValue &Base, SDValue &Offset) {
// Generate:
// lui $2, %hi($CPI1_0)
// lwc1 $f0, %lo($CPI1_0)($2)
if (Addr.getOperand(1).getOpcode() == MipsISD::Lo) {
SDValue LoVal = Addr.getOperand(1), Opnd0 = LoVal.getOperand(0);
if (Addr.getOperand(1).getOpcode() == MipsISD::Lo ||
Addr.getOperand(1).getOpcode() == MipsISD::GPRel) {
SDValue Opnd0 = Addr.getOperand(1).getOperand(0);
if (isa<ConstantPoolSDNode>(Opnd0) || isa<GlobalAddressSDNode>(Opnd0) ||
isa<JumpTableSDNode>(Opnd0)) {
Base = Addr.getOperand(0);
......
......@@ -5,7 +5,7 @@
define i32 @geti() nounwind readonly {
entry:
; CHECK: addiu ${{[0-9]+}}, $gp, %gp_rel(i)
; CHECK: lw ${{[0-9]+}}, %gp_rel(i)($gp)
%0 = load i32* @i, align 4
ret i32 %0
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment