summaryrefslogtreecommitdiff
path: root/source/slang/slang-ir-link.cpp
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2023-04-25 10:43:29 -0400
committerGitHub <noreply@github.com>2023-04-25 10:43:29 -0400
commit7b7c095b37e85ca3a8f55eff1c3d9643d467b8e0 (patch)
tree9c71955dbc956b0058b19818ca127c8132cda512 /source/slang/slang-ir-link.cpp
parent284cee1f246c072f190c87c8fb60c1d2181e458f (diff)
Dictionary using lowerCamel (#2835)
* #include an absolute path didn't work - because paths were taken to always be relative. * WIP lowerCamel Dictionary. * WIP more lowerCamel fixes for Dictionary. * Add/Remove/Clear * GetValue/Contains * Fix tabs in dictionary. Count -> getCount * Fix fields with caps. * Key -> key Value -> value Use m_ for members where appropriate. Use lowerCamel in linked list. * Some small fixes/improvements to Dictionary. * Kick CI.
Diffstat (limited to 'source/slang/slang-ir-link.cpp')
-rw-r--r--source/slang/slang-ir-link.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/slang/slang-ir-link.cpp b/source/slang/slang-ir-link.cpp
index b976f4b21..de9071adf 100644
--- a/source/slang/slang-ir-link.cpp
+++ b/source/slang/slang-ir-link.cpp
@@ -326,7 +326,7 @@ IRInst* findClonedValue(
IRInst* clonedValue = nullptr;
for (auto env = context->getEnv(); env; env = env->parent)
{
- if (env->clonedValues.TryGetValue(originalValue, clonedValue))
+ if (env->clonedValues.tryGetValue(originalValue, clonedValue))
{
return clonedValue;
}
@@ -596,7 +596,7 @@ IRGeneric* cloneGenericImpl(
continue;
for (auto kv : paramMapping)
{
- registerClonedValue(context, kv.Key, kv.Value);
+ registerClonedValue(context, kv.key, kv.value);
}
IRBuilder builderStorage = *builder;
@@ -891,11 +891,11 @@ IRFunc* specializeIRForEntryPoint(
// not the same as the mangled name of the decl.
//
RefPtr<IRSpecSymbol> sym;
- if (!context->getSymbols().TryGetValue(mangledName, sym))
+ if (!context->getSymbols().tryGetValue(mangledName, sym))
{
String hashedName = getHashedName(mangledName.getUnownedSlice());
- if (!context->getSymbols().TryGetValue(hashedName, sym))
+ if (!context->getSymbols().tryGetValue(hashedName, sym))
{
SLANG_UNEXPECTED("no matching IR symbol");
return nullptr;
@@ -1263,7 +1263,7 @@ IRInst* cloneGlobalValueWithLinkage(
auto mangledName = String(originalLinkage->getMangledName());
RefPtr<IRSpecSymbol> sym;
- if( !context->getSymbols().TryGetValue(mangledName, sym) )
+ if( !context->getSymbols().tryGetValue(mangledName, sym) )
{
if(!originalVal)
return nullptr;
@@ -1338,14 +1338,14 @@ void insertGlobalValueSymbol(
sym->irGlobalValue = gv;
RefPtr<IRSpecSymbol> prev;
- if (sharedContext->symbols.TryGetValue(mangledName, prev))
+ if (sharedContext->symbols.tryGetValue(mangledName, prev))
{
sym->nextWithSameName = prev->nextWithSameName;
prev->nextWithSameName = sym;
}
else
{
- sharedContext->symbols.Add(mangledName, sym);
+ sharedContext->symbols.add(mangledName, sym);
}
}