Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NFC][SPIRV] Misc code cleanup in SPIRV Target #133764

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 14 additions & 16 deletions llvm/lib/Target/SPIRV/Analysis/SPIRVConvergenceRegionAnalysis.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===- ConvergenceRegionAnalysis.h -----------------------------*- C++ -*--===//
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand All @@ -24,6 +24,7 @@
#define DEBUG_TYPE "spirv-convergence-region-analysis"

using namespace llvm;
using namespace SPIRV;

namespace llvm {
void initializeSPIRVConvergenceRegionAnalysisWrapperPassPass(PassRegistry &);
Expand All @@ -39,8 +40,6 @@ INITIALIZE_PASS_END(SPIRVConvergenceRegionAnalysisWrapperPass,
"convergence-region", "SPIRV convergence regions analysis",
true, true)

namespace llvm {
namespace SPIRV {
namespace {

template <typename BasicBlockType, typename IntrinsicInstType>
Expand Down Expand Up @@ -74,12 +73,13 @@ getConvergenceTokenInternal(BasicBlockType *BB) {

return std::nullopt;
}
} // anonymous namespace

// Given a ConvergenceRegion tree with |Start| as its root, finds the smallest
// region |Entry| belongs to. If |Entry| does not belong to the region defined
// by |Start|, this function returns |nullptr|.
ConvergenceRegion *findParentRegion(ConvergenceRegion *Start,
BasicBlock *Entry) {
static ConvergenceRegion *findParentRegion(ConvergenceRegion *Start,
BasicBlock *Entry) {
ConvergenceRegion *Candidate = nullptr;
ConvergenceRegion *NextCandidate = Start;

Expand All @@ -102,13 +102,13 @@ ConvergenceRegion *findParentRegion(ConvergenceRegion *Start,
return Candidate;
}

} // anonymous namespace

std::optional<IntrinsicInst *> getConvergenceToken(BasicBlock *BB) {
std::optional<IntrinsicInst *>
llvm::SPIRV::getConvergenceToken(BasicBlock *BB) {
return getConvergenceTokenInternal<BasicBlock, IntrinsicInst>(BB);
}

std::optional<const IntrinsicInst *> getConvergenceToken(const BasicBlock *BB) {
std::optional<const IntrinsicInst *>
llvm::SPIRV::getConvergenceToken(const BasicBlock *BB) {
return getConvergenceTokenInternal<const BasicBlock, const IntrinsicInst>(BB);
}

Expand Down Expand Up @@ -187,8 +187,8 @@ void ConvergenceRegion::dump(const unsigned IndentSize) const {
dbgs() << Indent << "}\n";
}

namespace {
class ConvergenceRegionAnalyzer {

public:
ConvergenceRegionAnalyzer(Function &F, DominatorTree &DT, LoopInfo &LI)
: DT(DT), LI(LI), F(F) {}
Expand Down Expand Up @@ -305,15 +305,15 @@ class ConvergenceRegionAnalyzer {
LoopInfo &LI;
Function &F;
};
} // anonymous namespace

ConvergenceRegionInfo getConvergenceRegions(Function &F, DominatorTree &DT,
LoopInfo &LI) {
ConvergenceRegionInfo llvm::SPIRV::getConvergenceRegions(Function &F,
DominatorTree &DT,
LoopInfo &LI) {
ConvergenceRegionAnalyzer Analyzer(F, DT, LI);
return Analyzer.analyze();
}

} // namespace SPIRV

char SPIRVConvergenceRegionAnalysisWrapperPass::ID = 0;

SPIRVConvergenceRegionAnalysisWrapperPass::
Expand All @@ -339,5 +339,3 @@ SPIRVConvergenceRegionAnalysis::run(Function &F, FunctionAnalysisManager &AM) {
}

AnalysisKey SPIRVConvergenceRegionAnalysis::Key;

} // namespace llvm
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@
#include "llvm/Analysis/CFG.h"
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/IR/Dominators.h"
#include "llvm/IR/IntrinsicInst.h"
#include <iostream>
#include <optional>
#include <unordered_set>

namespace llvm {
class IntrinsicInst;
class SPIRVSubtarget;
class MachineFunction;
class MachineModuleInfo;
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Target/SPIRV/SPIRVBuiltins.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3048,7 +3048,7 @@ static SPIRVType *getInlineSpirvType(const TargetExtType *ExtensionType,
auto Opcode = ExtensionType->getIntParameter(0);

SmallVector<MCOperand> Operands;
for (llvm::Type *Param : ExtensionType->type_params()) {
for (Type *Param : ExtensionType->type_params()) {
if (const TargetExtType *ParamEType = dyn_cast<TargetExtType>(Param)) {
if (ParamEType->getName() == "spirv.IntegralConstant") {
assert(ParamEType->getNumTypeParameters() == 1 &&
Expand Down
10 changes: 5 additions & 5 deletions llvm/lib/Target/SPIRV/SPIRVCommandLine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ static const std::map<std::string, SPIRV::Extension::Extension, std::less<>>
{"SPV_INTEL_fp_max_error",
SPIRV::Extension::Extension::SPV_INTEL_fp_max_error}};

bool SPIRVExtensionsParser::parse(cl::Option &O, llvm::StringRef ArgName,
llvm::StringRef ArgValue,
bool SPIRVExtensionsParser::parse(cl::Option &O, StringRef ArgName,
StringRef ArgValue,
std::set<SPIRV::Extension::Extension> &Vals) {
llvm::SmallVector<llvm::StringRef, 10> Tokens;
SmallVector<StringRef, 10> Tokens;
ArgValue.split(Tokens, ",", -1, false);
std::sort(Tokens.begin(), Tokens.end());

Expand All @@ -114,7 +114,7 @@ bool SPIRVExtensionsParser::parse(cl::Option &O, llvm::StringRef ArgName,
if (Token.empty() || (!Token.starts_with("+") && !Token.starts_with("-")))
return O.error("Invalid extension list format: " + Token.str());

llvm::StringRef ExtensionName = Token.substr(1);
StringRef ExtensionName = Token.substr(1);
auto NameValuePair = SPIRVExtensionMap.find(ExtensionName);

if (NameValuePair == SPIRVExtensionMap.end())
Expand All @@ -137,7 +137,7 @@ bool SPIRVExtensionsParser::parse(cl::Option &O, llvm::StringRef ArgName,
return false;
}

llvm::StringRef SPIRVExtensionsParser::checkExtensions(
StringRef SPIRVExtensionsParser::checkExtensions(
const std::vector<std::string> &ExtNames,
std::set<SPIRV::Extension::Extension> &AllowedExtensions) {
for (const auto &Ext : ExtNames) {
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Target/SPIRV/SPIRVCommandLine.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct SPIRVExtensionsParser
///
/// \return Returns a reference to the unknown SPIR-V extension name from the
/// list if present, or an empty StringRef on success.
static llvm::StringRef
static StringRef
checkExtensions(const std::vector<std::string> &ExtNames,
std::set<SPIRV::Extension::Extension> &AllowedExtensions);
};
Expand Down
5 changes: 2 additions & 3 deletions llvm/lib/Target/SPIRV/SPIRVEmitIntrinsics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,7 @@ static void setInsertPointAfterDef(IRBuilder<> &B, Instruction *I) {
}

static bool requireAssignType(Instruction *I) {
IntrinsicInst *Intr = dyn_cast<IntrinsicInst>(I);
if (Intr) {
if (const auto *Intr = dyn_cast<IntrinsicInst>(I)) {
switch (Intr->getIntrinsicID()) {
case Intrinsic::invariant_start:
case Intrinsic::invariant_end:
Expand Down Expand Up @@ -725,7 +724,7 @@ Type *SPIRVEmitIntrinsics::deduceNestedTypeHelper(
if (!Visited.insert(U).second)
return OrigTy;

if (dyn_cast<StructType>(OrigTy)) {
if (isa<StructType>(OrigTy)) {
SmallVector<Type *> Tys;
bool Change = false;
for (unsigned i = 0; i < U->getNumOperands(); ++i) {
Expand Down
8 changes: 4 additions & 4 deletions llvm/lib/Target/SPIRV/SPIRVEmitNonSemanticDI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@

#define DEBUG_TYPE "spirv-nonsemantic-debug-info"

namespace llvm {
using namespace llvm;

namespace {
struct SPIRVEmitNonSemanticDI : public MachineFunctionPass {
static char ID;
SPIRVTargetMachine *TM;
Expand All @@ -40,9 +42,7 @@ struct SPIRVEmitNonSemanticDI : public MachineFunctionPass {
bool IsGlobalDIEmitted = false;
bool emitGlobalDI(MachineFunction &MF);
};
} // namespace llvm

using namespace llvm;
} // anonymous namespace

INITIALIZE_PASS(SPIRVEmitNonSemanticDI, DEBUG_TYPE,
"SPIRV NonSemantic.Shader.DebugInfo.100 emitter", false, false)
Expand Down
11 changes: 3 additions & 8 deletions llvm/lib/Target/SPIRV/SPIRVGlobalRegistry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,18 @@

using namespace llvm;

namespace {

bool allowEmitFakeUse(const Value *Arg) {
static bool allowEmitFakeUse(const Value *Arg) {
if (isSpvIntrinsic(Arg))
return false;
if (dyn_cast<AtomicCmpXchgInst>(Arg) || dyn_cast<InsertValueInst>(Arg) ||
dyn_cast<UndefValue>(Arg))
if (isa<AtomicCmpXchgInst, InsertValueInst, UndefValue>(Arg))
return false;
if (const auto *LI = dyn_cast<LoadInst>(Arg))
if (LI->getType()->isAggregateType())
return false;
return true;
}

inline unsigned typeToAddressSpace(const Type *Ty) {
static unsigned typeToAddressSpace(const Type *Ty) {
if (auto PType = dyn_cast<TypedPointerType>(Ty))
return PType->getAddressSpace();
if (auto PType = dyn_cast<PointerType>(Ty))
Expand All @@ -57,8 +54,6 @@ inline unsigned typeToAddressSpace(const Type *Ty) {
report_fatal_error("Unable to convert LLVM type to SPIRVType", true);
}

} // anonymous namespace

SPIRVGlobalRegistry::SPIRVGlobalRegistry(unsigned PointerSize)
: PointerSize(PointerSize), Bound(0) {}

Expand Down
Loading