https://github.com/cdevadas created https://github.com/llvm/llvm-project/pull/104038
This definition shouldn't be in AMDGPU TM. >From 6ab7119cd8b4e63dad2625b0aa9416e2898a3bbc Mon Sep 17 00:00:00 2001 From: Christudasan Devadasan <christudasan.devada...@amd.com> Date: Wed, 14 Aug 2024 20:50:30 +0530 Subject: [PATCH] [AMDGPU][R600] Move createMachineFunctionInfo into R600 TM. This definition shouldn't be in AMDGPU TM. --- llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 8 -------- llvm/lib/Target/AMDGPU/R600TargetMachine.cpp | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp b/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp index bcedc3623d3ed..f5da459a43c59 100644 --- a/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp +++ b/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp @@ -32,7 +32,6 @@ #include "GCNSchedStrategy.h" #include "GCNVOPDUtils.h" #include "R600.h" -#include "R600MachineFunctionInfo.h" #include "R600TargetMachine.h" #include "SIFixSGPRCopies.h" #include "SIMachineFunctionInfo.h" @@ -1193,13 +1192,6 @@ AMDGPUPassConfig::createMachineScheduler(MachineSchedContext *C) const { return DAG; } -MachineFunctionInfo *R600TargetMachine::createMachineFunctionInfo( - BumpPtrAllocator &Allocator, const Function &F, - const TargetSubtargetInfo *STI) const { - return R600MachineFunctionInfo::create<R600MachineFunctionInfo>( - Allocator, F, static_cast<const R600Subtarget *>(STI)); -} - //===----------------------------------------------------------------------===// // GCN Legacy Pass Setup //===----------------------------------------------------------------------===// diff --git a/llvm/lib/Target/AMDGPU/R600TargetMachine.cpp b/llvm/lib/Target/AMDGPU/R600TargetMachine.cpp index 06ae5f7289360..a1a60b8bdfa9e 100644 --- a/llvm/lib/Target/AMDGPU/R600TargetMachine.cpp +++ b/llvm/lib/Target/AMDGPU/R600TargetMachine.cpp @@ -16,6 +16,7 @@ #include "R600TargetMachine.h" #include "R600.h" +#include "R600MachineFunctionInfo.h" #include "R600MachineScheduler.h" #include "R600TargetTransformInfo.h" #include "llvm/Transforms/Scalar.h" @@ -154,6 +155,13 @@ Error R600TargetMachine::buildCodeGenPipeline( return CGPB.buildPipeline(MPM, Out, DwoOut, FileType); } +MachineFunctionInfo *R600TargetMachine::createMachineFunctionInfo( + BumpPtrAllocator &Allocator, const Function &F, + const TargetSubtargetInfo *STI) const { + return R600MachineFunctionInfo::create<R600MachineFunctionInfo>( + Allocator, F, static_cast<const R600Subtarget *>(STI)); +} + //===----------------------------------------------------------------------===// // R600 CodeGen Pass Builder interface. //===----------------------------------------------------------------------===// _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits