@@ -5866,7 +5866,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
5866
5866
IRFunc* calledFunc = as<IRFunc>(funcValue);
5867
5867
SpvInst* originalScope = nullptr ;
5868
5868
bool needScopeChange = false ;
5869
-
5869
+
5870
5870
if (calledFunc)
5871
5871
{
5872
5872
// First check if it's a template function (containing '<' in the name)
@@ -5877,25 +5877,25 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
5877
5877
auto nameSlice = as<IRStringLit>(name)->getStringSlice ();
5878
5878
isTemplateFunc = nameSlice.indexOf (' <' ) >= 0 ;
5879
5879
}
5880
-
5880
+
5881
5881
// Also check if the called function is from a different source file
5882
5882
IRDebugLocationDecoration* callerLoc = nullptr ;
5883
5883
IRDebugLocationDecoration* calleeLoc = nullptr ;
5884
-
5884
+
5885
5885
// Find current function scope and its source location
5886
5886
IRInst* currentFunc = inst->getParent ();
5887
5887
while (currentFunc && !as<IRFunc>(currentFunc))
5888
5888
{
5889
5889
currentFunc = currentFunc->getParent ();
5890
5890
}
5891
-
5891
+
5892
5892
if (currentFunc)
5893
5893
{
5894
5894
callerLoc = currentFunc->findDecoration <IRDebugLocationDecoration>();
5895
5895
}
5896
-
5896
+
5897
5897
calleeLoc = calledFunc->findDecoration <IRDebugLocationDecoration>();
5898
-
5898
+
5899
5899
// We need to change the scope if:
5900
5900
// 1. It's a template function, OR
5901
5901
// 2. The caller and callee have different source files
@@ -5904,14 +5904,14 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
5904
5904
{
5905
5905
differentSourceFiles = true ;
5906
5906
}
5907
-
5907
+
5908
5908
needScopeChange = isTemplateFunc || differentSourceFiles;
5909
-
5909
+
5910
5910
if (needScopeChange && currentFunc)
5911
5911
{
5912
5912
// Save the current scope so we can restore it later
5913
5913
m_mapIRInstToSpvDebugInst.tryGetValue (currentFunc, originalScope);
5914
-
5914
+
5915
5915
// Find the called function's debug scope
5916
5916
SpvInst* calleeScope = nullptr ;
5917
5917
if (m_mapIRInstToSpvDebugInst.tryGetValue (calledFunc, calleeScope))
@@ -5927,15 +5927,15 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
5927
5927
}
5928
5928
}
5929
5929
}
5930
-
5930
+
5931
5931
// Emit the actual function call
5932
5932
auto result = emitOpFunctionCall (
5933
5933
parent,
5934
5934
inst,
5935
5935
inst->getFullType (),
5936
5936
funcValue,
5937
5937
inst->getArgsList ());
5938
-
5938
+
5939
5939
// Restore the original debug scope if needed
5940
5940
if (needScopeChange && originalScope)
5941
5941
{
@@ -5946,7 +5946,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
5946
5946
getNonSemanticDebugInfoExtInst (),
5947
5947
originalScope);
5948
5948
}
5949
-
5949
+
5950
5950
return result;
5951
5951
}
5952
5952
}
@@ -7387,12 +7387,13 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
7387
7387
auto func = scopeChain[i];
7388
7388
auto name = getName (func);
7389
7389
auto debugLoc = func->findDecoration <IRDebugLocationDecoration>();
7390
-
7390
+
7391
7391
// Track when we need to create a new inlined-at chain:
7392
7392
// 1. For template functions (containing '<' in the name)
7393
7393
// 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
+
7396
7397
// Check if this function is from a different source file than the debug line
7397
7398
bool isDifferentSourceFile = false ;
7398
7399
if (debugLoc && debugLoc->getSource () != debugLine->getSource ())
@@ -7405,7 +7406,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
7405
7406
{
7406
7407
isDifferentSourceFile = true ;
7407
7408
}
7408
-
7409
+
7409
7410
// Update the last source we've seen
7410
7411
if (debugLoc)
7411
7412
{
@@ -7425,7 +7426,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
7425
7426
getNonSemanticDebugInfoExtInst (),
7426
7427
debugLine->getLineStart (),
7427
7428
funcDebugScope,
7428
- inlinedAt); // Chain to previous inlinedAt if any
7429
+ inlinedAt); // Chain to previous inlinedAt if any
7429
7430
7430
7431
inlinedAt = newInlinedAt;
7431
7432
0 commit comments