mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-19 11:55:55 +00:00

to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351636 91177308-0d34-0410-b5e6-96231b3b80d8
97 lines
3.1 KiB
C++
97 lines
3.1 KiB
C++
//===--- AMDGPUMachineModuleInfo.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.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
/// \file
|
|
/// AMDGPU Machine Module Info.
|
|
///
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUMACHINEMODULEINFO_H
|
|
#define LLVM_LIB_TARGET_AMDGPU_AMDGPUMACHINEMODULEINFO_H
|
|
|
|
#include "llvm/ADT/None.h"
|
|
#include "llvm/ADT/Optional.h"
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
|
#include "llvm/CodeGen/MachineModuleInfoImpls.h"
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
namespace llvm {
|
|
|
|
class AMDGPUMachineModuleInfo final : public MachineModuleInfoELF {
|
|
private:
|
|
|
|
// All supported memory/synchronization scopes can be found here:
|
|
// http://llvm.org/docs/AMDGPUUsage.html#memory-scopes
|
|
|
|
/// Agent synchronization scope ID.
|
|
SyncScope::ID AgentSSID;
|
|
/// Workgroup synchronization scope ID.
|
|
SyncScope::ID WorkgroupSSID;
|
|
/// Wavefront synchronization scope ID.
|
|
SyncScope::ID WavefrontSSID;
|
|
|
|
/// In AMDGPU target synchronization scopes are inclusive, meaning a
|
|
/// larger synchronization scope is inclusive of a smaller synchronization
|
|
/// scope.
|
|
///
|
|
/// \returns \p SSID's inclusion ordering, or "None" if \p SSID is not
|
|
/// supported by the AMDGPU target.
|
|
Optional<uint8_t> getSyncScopeInclusionOrdering(SyncScope::ID SSID) const {
|
|
if (SSID == SyncScope::SingleThread)
|
|
return 0;
|
|
else if (SSID == getWavefrontSSID())
|
|
return 1;
|
|
else if (SSID == getWorkgroupSSID())
|
|
return 2;
|
|
else if (SSID == getAgentSSID())
|
|
return 3;
|
|
else if (SSID == SyncScope::System)
|
|
return 4;
|
|
|
|
return None;
|
|
}
|
|
|
|
public:
|
|
AMDGPUMachineModuleInfo(const MachineModuleInfo &MMI);
|
|
|
|
/// \returns Agent synchronization scope ID.
|
|
SyncScope::ID getAgentSSID() const {
|
|
return AgentSSID;
|
|
}
|
|
/// \returns Workgroup synchronization scope ID.
|
|
SyncScope::ID getWorkgroupSSID() const {
|
|
return WorkgroupSSID;
|
|
}
|
|
/// \returns Wavefront synchronization scope ID.
|
|
SyncScope::ID getWavefrontSSID() const {
|
|
return WavefrontSSID;
|
|
}
|
|
|
|
/// In AMDGPU target synchronization scopes are inclusive, meaning a
|
|
/// larger synchronization scope is inclusive of a smaller synchronization
|
|
/// scope.
|
|
///
|
|
/// \returns True if synchronization scope \p A is larger than or equal to
|
|
/// synchronization scope \p B, false if synchronization scope \p A is smaller
|
|
/// than synchronization scope \p B, or "None" if either synchronization scope
|
|
/// \p A or \p B is not supported by the AMDGPU target.
|
|
Optional<bool> isSyncScopeInclusion(SyncScope::ID A, SyncScope::ID B) const {
|
|
const auto &AIO = getSyncScopeInclusionOrdering(A);
|
|
const auto &BIO = getSyncScopeInclusionOrdering(B);
|
|
if (!AIO || !BIO)
|
|
return None;
|
|
|
|
return AIO.getValue() > BIO.getValue();
|
|
}
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUMACHINEMODULEINFO_H
|