Skip to content

Commit 3a58996

Browse files
authored
Merge pull request #10 from slangbot/format-6586-bugfix/shader-slanggh-6561
Format code for PR shader-slang#6586
2 parents 9793abf + 52e44af commit 3a58996

File tree

2 files changed

+28
-18
lines changed

2 files changed

+28
-18
lines changed

source/slang/slang-emit-spirv-ops-debug-info-ext.h

+10-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,16 @@ SpvInst* emitOpDebugScope(
412412
static_assert(isSingular<T>);
413413
if (inlinedAt)
414414
{
415-
return emitInst(parent, inst, SpvOpExtInst, idResultType, kResultID, set, SpvWord(23), scope, inlinedAt);
415+
return emitInst(
416+
parent,
417+
inst,
418+
SpvOpExtInst,
419+
idResultType,
420+
kResultID,
421+
set,
422+
SpvWord(23),
423+
scope,
424+
inlinedAt);
416425
}
417426
return emitInst(parent, inst, SpvOpExtInst, idResultType, kResultID, set, SpvWord(23), scope);
418427
}

source/slang/slang-emit-spirv.cpp

+18-17
Original file line numberDiff line numberDiff line change
@@ -5866,7 +5866,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
58665866
IRFunc* calledFunc = as<IRFunc>(funcValue);
58675867
SpvInst* originalScope = nullptr;
58685868
bool needScopeChange = false;
5869-
5869+
58705870
if (calledFunc)
58715871
{
58725872
// First check if it's a template function (containing '<' in the name)
@@ -5877,25 +5877,25 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
58775877
auto nameSlice = as<IRStringLit>(name)->getStringSlice();
58785878
isTemplateFunc = nameSlice.indexOf('<') >= 0;
58795879
}
5880-
5880+
58815881
// Also check if the called function is from a different source file
58825882
IRDebugLocationDecoration* callerLoc = nullptr;
58835883
IRDebugLocationDecoration* calleeLoc = nullptr;
5884-
5884+
58855885
// Find current function scope and its source location
58865886
IRInst* currentFunc = inst->getParent();
58875887
while (currentFunc && !as<IRFunc>(currentFunc))
58885888
{
58895889
currentFunc = currentFunc->getParent();
58905890
}
5891-
5891+
58925892
if (currentFunc)
58935893
{
58945894
callerLoc = currentFunc->findDecoration<IRDebugLocationDecoration>();
58955895
}
5896-
5896+
58975897
calleeLoc = calledFunc->findDecoration<IRDebugLocationDecoration>();
5898-
5898+
58995899
// We need to change the scope if:
59005900
// 1. It's a template function, OR
59015901
// 2. The caller and callee have different source files
@@ -5904,14 +5904,14 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
59045904
{
59055905
differentSourceFiles = true;
59065906
}
5907-
5907+
59085908
needScopeChange = isTemplateFunc || differentSourceFiles;
5909-
5909+
59105910
if (needScopeChange && currentFunc)
59115911
{
59125912
// Save the current scope so we can restore it later
59135913
m_mapIRInstToSpvDebugInst.tryGetValue(currentFunc, originalScope);
5914-
5914+
59155915
// Find the called function's debug scope
59165916
SpvInst* calleeScope = nullptr;
59175917
if (m_mapIRInstToSpvDebugInst.tryGetValue(calledFunc, calleeScope))
@@ -5927,15 +5927,15 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
59275927
}
59285928
}
59295929
}
5930-
5930+
59315931
// Emit the actual function call
59325932
auto result = emitOpFunctionCall(
59335933
parent,
59345934
inst,
59355935
inst->getFullType(),
59365936
funcValue,
59375937
inst->getArgsList());
5938-
5938+
59395939
// Restore the original debug scope if needed
59405940
if (needScopeChange && originalScope)
59415941
{
@@ -5946,7 +5946,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
59465946
getNonSemanticDebugInfoExtInst(),
59475947
originalScope);
59485948
}
5949-
5949+
59505950
return result;
59515951
}
59525952
}
@@ -7387,12 +7387,13 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
73877387
auto func = scopeChain[i];
73887388
auto name = getName(func);
73897389
auto debugLoc = func->findDecoration<IRDebugLocationDecoration>();
7390-
7390+
73917391
// Track when we need to create a new inlined-at chain:
73927392
// 1. For template functions (containing '<' in the name)
73937393
// 2. For functions from different source files
7394-
bool isTemplateFunction = name && as<IRStringLit>(name)->getStringSlice().indexOf('<') >= 0;
7395-
7394+
bool isTemplateFunction =
7395+
name && as<IRStringLit>(name)->getStringSlice().indexOf('<') >= 0;
7396+
73967397
// Check if this function is from a different source file than the debug line
73977398
bool isDifferentSourceFile = false;
73987399
if (debugLoc && debugLoc->getSource() != debugLine->getSource())
@@ -7405,7 +7406,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
74057406
{
74067407
isDifferentSourceFile = true;
74077408
}
7408-
7409+
74097410
// Update the last source we've seen
74107411
if (debugLoc)
74117412
{
@@ -7425,7 +7426,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
74257426
getNonSemanticDebugInfoExtInst(),
74267427
debugLine->getLineStart(),
74277428
funcDebugScope,
7428-
inlinedAt); // Chain to previous inlinedAt if any
7429+
inlinedAt); // Chain to previous inlinedAt if any
74297430

74307431
inlinedAt = newInlinedAt;
74317432

0 commit comments

Comments
 (0)