Skip to content

Commit

Permalink
Creating a named struct requires only a Context and a name, but looki…
Browse files Browse the repository at this point in the history
…ng up a struct by name requires a Module. The method on Module merely accesses the LLVMContextImpl and no data from the module itself, so this patch moves getTypeByName to a static method on StructType that takes a Context and a name.

There's a small number of users of this function, they are all updated.

This updates the C API adding a new method LLVMGetTypeByName2 that takes a context and a name.

Differential Revision: https://reviews.llvm.org/D78793
  • Loading branch information
nlewycky committed Nov 30, 2020
1 parent abef659 commit fe43168
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 26 deletions.
9 changes: 6 additions & 3 deletions llvm/include/llvm-c/Core.h
Expand Up @@ -626,6 +626,11 @@ const char *LLVMGetStringAttributeValue(LLVMAttributeRef A, unsigned *Length);
LLVMBool LLVMIsEnumAttribute(LLVMAttributeRef A);
LLVMBool LLVMIsStringAttribute(LLVMAttributeRef A);

/**
* Obtain a Type from a context by its registered name.
*/
LLVMTypeRef LLVMGetTypeByName2(LLVMContextRef C, const char *Name);

/**
* @}
*/
Expand Down Expand Up @@ -867,9 +872,7 @@ LLVMValueRef LLVMGetInlineAsm(LLVMTypeRef Ty,
*/
LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M);

/**
* Obtain a Type from a module by its registered name.
*/
/** Deprecated: Use LLVMGetTypeByName2 instead. */
LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name);

/**
Expand Down
4 changes: 4 additions & 0 deletions llvm/include/llvm/IR/DerivedTypes.h
Expand Up @@ -273,6 +273,10 @@ class StructType : public Type {
return llvm::StructType::get(Ctx, StructFields);
}

/// Return the type with the specified name, or null if there is none by that
/// name.
static StructType *getTypeByName(LLVMContext &C, StringRef Name);

bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; }

/// Return true if this type is uniqued by structural equivalence, false if it
Expand Down
4 changes: 0 additions & 4 deletions llvm/include/llvm/IR/Module.h
Expand Up @@ -329,10 +329,6 @@ class Module {
/// \see LLVMContext::getOperandBundleTagID
void getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const;

/// Return the type with the specified name, or null if there is none by that
/// name.
StructType *getTypeByName(StringRef Name) const;

std::vector<StructType *> getIdentifiedStructTypes() const;

/// @}
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
Expand Up @@ -1349,7 +1349,7 @@ void OpenMPIRBuilder::initializeTypes(Module &M) {
VarName = FunctionType::get(ReturnType, {__VA_ARGS__}, IsVarArg); \
VarName##Ptr = PointerType::getUnqual(VarName);
#define OMP_STRUCT_TYPE(VarName, StructName, ...) \
T = M.getTypeByName(StructName); \
T = StructType::getTypeByName(Ctx, StructName); \
if (!T) \
T = StructType::create(Ctx, {__VA_ARGS__}, StructName); \
VarName = T; \
Expand Down
6 changes: 5 additions & 1 deletion llvm/lib/IR/Core.cpp
Expand Up @@ -739,7 +739,11 @@ LLVMBool LLVMIsLiteralStruct(LLVMTypeRef StructTy) {
}

LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) {
return wrap(unwrap(M)->getTypeByName(Name));
return wrap(StructType::getTypeByName(unwrap(M)->getContext(), Name));
}

LLVMTypeRef LLVMGetTypeByName2(LLVMContextRef C, const char *Name) {
return wrap(StructType::getTypeByName(*unwrap(C), Name));
}

/*--.. Operations on array, pointer, and vector types (sequence types) .....--*/
Expand Down
8 changes: 4 additions & 4 deletions llvm/lib/IR/Type.cpp
Expand Up @@ -533,10 +533,6 @@ bool StructType::isLayoutIdentical(StructType *Other) const {
return elements() == Other->elements();
}

StructType *Module::getTypeByName(StringRef Name) const {
return getContext().pImpl->NamedStructTypes.lookup(Name);
}

Type *StructType::getTypeAtIndex(const Value *V) const {
unsigned Idx = (unsigned)cast<Constant>(V)->getUniqueInteger().getZExtValue();
assert(indexValid(Idx) && "Invalid structure index!");
Expand All @@ -557,6 +553,10 @@ bool StructType::indexValid(const Value *V) const {
return CU && CU->getZExtValue() < getNumElements();
}

StructType *StructType::getTypeByName(LLVMContext &C, StringRef Name) {
return C.pImpl->NamedStructTypes.lookup(Name);
}

//===----------------------------------------------------------------------===//
// ArrayType Implementation
//===----------------------------------------------------------------------===//
Expand Down
4 changes: 2 additions & 2 deletions llvm/lib/Linker/IRMover.cpp
Expand Up @@ -796,11 +796,11 @@ void IRLinker::computeTypeMapping() {
}

auto STTypePrefix = getTypeNamePrefix(ST->getName());
if (STTypePrefix.size()== ST->getName().size())
if (STTypePrefix.size() == ST->getName().size())
continue;

// Check to see if the destination module has a struct with the prefix name.
StructType *DST = DstM.getTypeByName(STTypePrefix);
StructType *DST = StructType::getTypeByName(ST->getContext(), STTypePrefix);
if (!DST)
continue;

Expand Down
2 changes: 1 addition & 1 deletion llvm/tools/llvm-c-test/echo.cpp
Expand Up @@ -110,7 +110,7 @@ struct TypeCloner {
LLVMTypeRef S = nullptr;
const char *Name = LLVMGetStructName(Src);
if (Name) {
S = LLVMGetTypeByName(M, Name);
S = LLVMGetTypeByName2(Ctx, Name);
if (S)
return S;
S = LLVMStructCreateNamed(Ctx, Name);
Expand Down
2 changes: 1 addition & 1 deletion llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
Expand Up @@ -61,7 +61,7 @@ class TargetLibraryInfoTest : public testing::Test {
TEST_F(TargetLibraryInfoTest, InvalidProto) {
parseAssembly("%foo = type { %foo }\n");

auto *StructTy = M->getTypeByName("foo");
auto *StructTy = StructType::getTypeByName(Context, "foo");
auto *InvalidFTy = FunctionType::get(StructTy, /*isVarArg=*/false);

for (unsigned FI = 0; FI != LibFunc::NumLibFuncs; ++FI) {
Expand Down
26 changes: 17 additions & 9 deletions polly/lib/CodeGen/LoopGeneratorsKMP.cpp
Expand Up @@ -23,7 +23,7 @@ void ParallelLoopGeneratorKMP::createCallSpawnThreads(Value *SubFn,
Value *Stride) {
const std::string Name = "__kmpc_fork_call";
Function *F = M->getFunction(Name);
Type *KMPCMicroTy = M->getTypeByName("kmpc_micro");
Type *KMPCMicroTy = StructType::getTypeByName(M->getContext(), "kmpc_micro");

if (!KMPCMicroTy) {
// void (*kmpc_micro)(kmp_int32 *global_tid, kmp_int32 *bound_tid, ...)
Expand All @@ -35,7 +35,8 @@ void ParallelLoopGeneratorKMP::createCallSpawnThreads(Value *SubFn,

// If F is not available, declare it.
if (!F) {
StructType *IdentTy = M->getTypeByName("struct.ident_t");
StructType *IdentTy =
StructType::getTypeByName(M->getContext(), "struct.ident_t");

GlobalValue::LinkageTypes Linkage = Function::ExternalLinkage;
Type *Params[] = {IdentTy->getPointerTo(), Builder.getInt32Ty(),
Expand Down Expand Up @@ -314,7 +315,8 @@ Value *ParallelLoopGeneratorKMP::createCallGlobalThreadNum() {

// If F is not available, declare it.
if (!F) {
StructType *IdentTy = M->getTypeByName("struct.ident_t");
StructType *IdentTy =
StructType::getTypeByName(M->getContext(), "struct.ident_t");

GlobalValue::LinkageTypes Linkage = Function::ExternalLinkage;
Type *Params[] = {IdentTy->getPointerTo()};
Expand All @@ -333,7 +335,8 @@ void ParallelLoopGeneratorKMP::createCallPushNumThreads(Value *GlobalThreadID,

// If F is not available, declare it.
if (!F) {
StructType *IdentTy = M->getTypeByName("struct.ident_t");
StructType *IdentTy =
StructType::getTypeByName(M->getContext(), "struct.ident_t");

GlobalValue::LinkageTypes Linkage = Function::ExternalLinkage;
Type *Params[] = {IdentTy->getPointerTo(), Builder.getInt32Ty(),
Expand All @@ -356,7 +359,8 @@ void ParallelLoopGeneratorKMP::createCallStaticInit(Value *GlobalThreadID,
const std::string Name =
is64BitArch() ? "__kmpc_for_static_init_8" : "__kmpc_for_static_init_4";
Function *F = M->getFunction(Name);
StructType *IdentTy = M->getTypeByName("struct.ident_t");
StructType *IdentTy =
StructType::getTypeByName(M->getContext(), "struct.ident_t");

// If F is not available, declare it.
if (!F) {
Expand Down Expand Up @@ -395,7 +399,8 @@ void ParallelLoopGeneratorKMP::createCallStaticInit(Value *GlobalThreadID,
void ParallelLoopGeneratorKMP::createCallStaticFini(Value *GlobalThreadID) {
const std::string Name = "__kmpc_for_static_fini";
Function *F = M->getFunction(Name);
StructType *IdentTy = M->getTypeByName("struct.ident_t");
StructType *IdentTy =
StructType::getTypeByName(M->getContext(), "struct.ident_t");

// If F is not available, declare it.
if (!F) {
Expand All @@ -417,7 +422,8 @@ void ParallelLoopGeneratorKMP::createCallDispatchInit(Value *GlobalThreadID,
const std::string Name =
is64BitArch() ? "__kmpc_dispatch_init_8" : "__kmpc_dispatch_init_4";
Function *F = M->getFunction(Name);
StructType *IdentTy = M->getTypeByName("struct.ident_t");
StructType *IdentTy =
StructType::getTypeByName(M->getContext(), "struct.ident_t");

// If F is not available, declare it.
if (!F) {
Expand Down Expand Up @@ -457,7 +463,8 @@ Value *ParallelLoopGeneratorKMP::createCallDispatchNext(Value *GlobalThreadID,
const std::string Name =
is64BitArch() ? "__kmpc_dispatch_next_8" : "__kmpc_dispatch_next_4";
Function *F = M->getFunction(Name);
StructType *IdentTy = M->getTypeByName("struct.ident_t");
StructType *IdentTy =
StructType::getTypeByName(M->getContext(), "struct.ident_t");

// If F is not available, declare it.
if (!F) {
Expand Down Expand Up @@ -488,7 +495,8 @@ GlobalVariable *ParallelLoopGeneratorKMP::createSourceLocation() {

if (SourceLocDummy == nullptr) {
const std::string StructName = "struct.ident_t";
StructType *IdentTy = M->getTypeByName(StructName);
StructType *IdentTy =
StructType::getTypeByName(M->getContext(), StructName);

// If the ident_t StructType is not available, declare it.
// in LLVM-IR: ident_t = type { i32, i32, i32, i32, i8* }
Expand Down

0 comments on commit fe43168

Please sign in to comment.