mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-02 07:17:36 +00:00
[Hexagon] Implement commoning of GetElementPtr instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241714 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -16,6 +16,7 @@ add_llvm_target(HexagonCodeGen
|
|||||||
HexagonAsmPrinter.cpp
|
HexagonAsmPrinter.cpp
|
||||||
HexagonBitTracker.cpp
|
HexagonBitTracker.cpp
|
||||||
HexagonCFGOptimizer.cpp
|
HexagonCFGOptimizer.cpp
|
||||||
|
HexagonCommonGEP.cpp
|
||||||
HexagonCopyToCombine.cpp
|
HexagonCopyToCombine.cpp
|
||||||
HexagonExpandCondsets.cpp
|
HexagonExpandCondsets.cpp
|
||||||
HexagonExpandPredSpillCode.cpp
|
HexagonExpandPredSpillCode.cpp
|
||||||
|
|||||||
1325
lib/Target/Hexagon/HexagonCommonGEP.cpp
Normal file
1325
lib/Target/Hexagon/HexagonCommonGEP.cpp
Normal file
File diff suppressed because it is too large
Load Diff
@@ -40,6 +40,10 @@ static cl::opt<bool> EnableExpandCondsets("hexagon-expand-condsets",
|
|||||||
static cl::opt<bool> EnableGenInsert("hexagon-insert", cl::init(true),
|
static cl::opt<bool> EnableGenInsert("hexagon-insert", cl::init(true),
|
||||||
cl::Hidden, cl::desc("Generate \"insert\" instructions"));
|
cl::Hidden, cl::desc("Generate \"insert\" instructions"));
|
||||||
|
|
||||||
|
static cl::opt<bool> EnableCommGEP("hexagon-commgep", cl::init(true),
|
||||||
|
cl::Hidden, cl::ZeroOrMore, cl::desc("Enable commoning of GEP instructions"));
|
||||||
|
|
||||||
|
|
||||||
/// HexagonTargetMachineModule - Note that this is used on hosts that
|
/// HexagonTargetMachineModule - Note that this is used on hosts that
|
||||||
/// cannot link in a library unless there are references into the
|
/// cannot link in a library unless there are references into the
|
||||||
/// library. In particular, it seems that it is not possible to get
|
/// library. In particular, it seems that it is not possible to get
|
||||||
@@ -62,6 +66,7 @@ SchedCustomRegistry("hexagon", "Run Hexagon's custom scheduler",
|
|||||||
createVLIWMachineSched);
|
createVLIWMachineSched);
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
FunctionPass *createHexagonCommonGEP();
|
||||||
FunctionPass *createHexagonExpandCondsets();
|
FunctionPass *createHexagonExpandCondsets();
|
||||||
FunctionPass *createHexagonISelDag(HexagonTargetMachine &TM,
|
FunctionPass *createHexagonISelDag(HexagonTargetMachine &TM,
|
||||||
CodeGenOpt::Level OptLevel);
|
CodeGenOpt::Level OptLevel);
|
||||||
@@ -124,6 +129,7 @@ public:
|
|||||||
return createVLIWMachineSched(C);
|
return createVLIWMachineSched(C);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void addIRPasses() override;
|
||||||
bool addInstSelector() override;
|
bool addInstSelector() override;
|
||||||
void addPreRegAlloc() override;
|
void addPreRegAlloc() override;
|
||||||
void addPostRegAlloc() override;
|
void addPostRegAlloc() override;
|
||||||
@@ -136,6 +142,14 @@ TargetPassConfig *HexagonTargetMachine::createPassConfig(PassManagerBase &PM) {
|
|||||||
return new HexagonPassConfig(this, PM);
|
return new HexagonPassConfig(this, PM);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void HexagonPassConfig::addIRPasses() {
|
||||||
|
TargetPassConfig::addIRPasses();
|
||||||
|
|
||||||
|
bool NoOpt = (getOptLevel() == CodeGenOpt::None);
|
||||||
|
if (!NoOpt && EnableCommGEP)
|
||||||
|
addPass(createHexagonCommonGEP());
|
||||||
|
}
|
||||||
|
|
||||||
bool HexagonPassConfig::addInstSelector() {
|
bool HexagonPassConfig::addInstSelector() {
|
||||||
HexagonTargetMachine &TM = getHexagonTargetMachine();
|
HexagonTargetMachine &TM = getHexagonTargetMachine();
|
||||||
bool NoOpt = (getOptLevel() == CodeGenOpt::None);
|
bool NoOpt = (getOptLevel() == CodeGenOpt::None);
|
||||||
|
|||||||
37
test/CodeGen/Hexagon/common-gep-basic.ll
Normal file
37
test/CodeGen/Hexagon/common-gep-basic.ll
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
; RUN: llc -O2 -march=hexagon < %s | FileCheck %s
|
||||||
|
; CHECK: mpyi
|
||||||
|
; CHECK-NOT: mpyi
|
||||||
|
; The mpyis from the two GEPs should be commoned out.
|
||||||
|
|
||||||
|
target datalayout = "e-m:e-p:32:32-i64:64-a:0-v32:32-n16:32"
|
||||||
|
target triple = "hexagon-unknown--elf"
|
||||||
|
|
||||||
|
%struct.s_t = type { %struct.anon, i32 }
|
||||||
|
%struct.anon = type { i32, [5 x i32] }
|
||||||
|
|
||||||
|
@g = common global [100 x %struct.s_t] zeroinitializer, align 8
|
||||||
|
|
||||||
|
; Function Attrs: nounwind
|
||||||
|
define void @foo(i32 %x) #0 {
|
||||||
|
entry:
|
||||||
|
%cmp = icmp slt i32 %x, 90
|
||||||
|
br i1 %cmp, label %if.then, label %if.else
|
||||||
|
|
||||||
|
if.then: ; preds = %entry
|
||||||
|
%arrayidx1 = getelementptr inbounds [100 x %struct.s_t], [100 x %struct.s_t]* @g, i32 0, i32 %x, i32 0, i32 1, i32 2
|
||||||
|
tail call void @bar(i32* %arrayidx1) #0
|
||||||
|
br label %if.end
|
||||||
|
|
||||||
|
if.else: ; preds = %entry
|
||||||
|
%arrayidx5 = getelementptr inbounds [100 x %struct.s_t], [100 x %struct.s_t]* @g, i32 0, i32 %x, i32 0, i32 1, i32 3
|
||||||
|
tail call void @bar(i32* %arrayidx5) #0
|
||||||
|
br label %if.end
|
||||||
|
|
||||||
|
if.end: ; preds = %if.else, %if.then
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
declare void @bar(i32*) #0
|
||||||
|
|
||||||
|
attributes #0 = { nounwind }
|
||||||
|
|
||||||
76
test/CodeGen/Hexagon/common-gep-icm.ll
Normal file
76
test/CodeGen/Hexagon/common-gep-icm.ll
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
; RUN: llc -O2 -march=hexagon < %s | FileCheck %s
|
||||||
|
; Rely on the comments generated by llc. Make sure there are no add/addasl
|
||||||
|
; instructions in while.body13 (before the loads).
|
||||||
|
; CHECK: while.body13
|
||||||
|
; CHECK-NOT: add
|
||||||
|
; CHECK: memw
|
||||||
|
|
||||||
|
%struct.1 = type { i32, i32 }
|
||||||
|
%struct.2 = type { [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [24 x i32], [3 x i32], [24 x i32], [8 x %struct.1], [5 x i32] }
|
||||||
|
|
||||||
|
@A1 = global i64 zeroinitializer
|
||||||
|
@A2 = global i64 zeroinitializer
|
||||||
|
@B1 = global i32 zeroinitializer
|
||||||
|
@B2 = global i32 zeroinitializer
|
||||||
|
@C1 = global i8 zeroinitializer
|
||||||
|
|
||||||
|
declare i32 @llvm.hexagon.S2.cl0(i32) nounwind readnone
|
||||||
|
declare i32 @llvm.hexagon.S2.setbit.r(i32, i32) nounwind readnone
|
||||||
|
declare i64 @llvm.hexagon.M2.vmpy2s.s0(i32, i32) nounwind readnone
|
||||||
|
declare i64 @llvm.hexagon.M2.vmac2s.s0(i64, i32, i32) nounwind readnone
|
||||||
|
declare i64 @llvm.hexagon.A2.vaddws(i64, i64) nounwind readnone
|
||||||
|
declare i64 @llvm.hexagon.A2.vsubws(i64, i64) nounwind readnone
|
||||||
|
declare i32 @llvm.hexagon.A4.modwrapu(i32, i32) nounwind readnone
|
||||||
|
|
||||||
|
define void @foo(i32 %n) nounwind {
|
||||||
|
entry:
|
||||||
|
br label %while.body
|
||||||
|
|
||||||
|
while.body:
|
||||||
|
%count = phi i32 [ 0, %entry ], [ %next, %while.end ]
|
||||||
|
%idx = phi i32 [ 0, %entry ], [ %15, %while.end ]
|
||||||
|
%0 = load i32, i32* @B1, align 4
|
||||||
|
%1 = load i32, i32* @B2, align 8
|
||||||
|
%2 = and i32 %1, %0
|
||||||
|
br label %while.body13
|
||||||
|
|
||||||
|
while.body13: ; preds = %while.body, %if.end
|
||||||
|
%3 = phi i64 [ %13, %if.end ], [ 0, %while.body ]
|
||||||
|
%4 = phi i64 [ %14, %if.end ], [ 0, %while.body ]
|
||||||
|
%m = phi i32 [ %6, %if.end ], [ %2, %while.body ]
|
||||||
|
%5 = tail call i32 @llvm.hexagon.S2.cl0(i32 %m)
|
||||||
|
%6 = tail call i32 @llvm.hexagon.S2.setbit.r(i32 %m, i32 %5)
|
||||||
|
%cgep85 = getelementptr [10 x %struct.2], [10 x %struct.2]* inttoptr (i32 -121502345 to [10 x %struct.2]*), i32 0, i32 %idx
|
||||||
|
%cgep90 = getelementptr %struct.2, %struct.2* %cgep85, i32 0, i32 12, i32 %5
|
||||||
|
%7 = load i32, i32* %cgep90, align 4
|
||||||
|
%8 = tail call i64 @llvm.hexagon.M2.vmpy2s.s0(i32 %7, i32 %7)
|
||||||
|
%cgep91 = getelementptr %struct.2, %struct.2* %cgep85, i32 0, i32 13, i32 %5
|
||||||
|
%9 = load i32, i32* %cgep91, align 4
|
||||||
|
%10 = tail call i64 @llvm.hexagon.M2.vmac2s.s0(i64 %8, i32 %9, i32 %9)
|
||||||
|
%11 = load i8, i8* @C1, align 1
|
||||||
|
%and24 = and i8 %11, 1
|
||||||
|
%cmp = icmp eq i8 %and24, 0
|
||||||
|
br i1 %cmp, label %if.then, label %if.end
|
||||||
|
|
||||||
|
if.then: ; preds = %while.body13
|
||||||
|
%12 = tail call i64 @llvm.hexagon.A2.vaddws(i64 %3, i64 %10)
|
||||||
|
store i64 %12, i64* @A1, align 8
|
||||||
|
br label %if.end
|
||||||
|
|
||||||
|
if.end: ; preds = %if.then, %while.body13
|
||||||
|
%13 = phi i64 [ %12, %if.then ], [ %3, %while.body13 ]
|
||||||
|
%14 = tail call i64 @llvm.hexagon.A2.vsubws(i64 %4, i64 %10)
|
||||||
|
%tobool12 = icmp eq i32 %6, 0
|
||||||
|
br i1 %tobool12, label %while.end, label %while.body13
|
||||||
|
|
||||||
|
while.end:
|
||||||
|
%add40 = add i32 %idx, 1
|
||||||
|
%15 = tail call i32 @llvm.hexagon.A4.modwrapu(i32 %add40, i32 10) nounwind
|
||||||
|
%next = add i32 %count, 1
|
||||||
|
%cc = icmp eq i32 %next, %n
|
||||||
|
br i1 %cc, label %end, label %while.body
|
||||||
|
|
||||||
|
end:
|
||||||
|
store i64 %10, i64* @A2, align 8
|
||||||
|
ret void
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user