blob: 5b4a4ea0c474c6d4b8584af13b74e0f5d814431a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include "slang-ast-base.h"
#include "slang-ast-builder.h"
namespace Slang
{
void NodeBase::_initDebug(ASTNodeType inAstNodeType, ASTBuilder* inAstBuilder)
{
#ifdef _DEBUG
SLANG_UNUSED(inAstNodeType);
static int32_t uidCounter = 0;
static int32_t breakValue = 0;
uidCounter++;
_debugUID = uidCounter;
if (inAstBuilder->getId() == -1)
_debugUID = -_debugUID;
if (breakValue != 0 && _debugUID == breakValue)
SLANG_BREAKPOINT(0)
#else
SLANG_UNUSED(inAstNodeType);
SLANG_UNUSED(inAstBuilder);
#endif
}
DeclRefBase* Decl::getDefaultDeclRef()
{
auto astBuilder = getCurrentASTBuilder();
if (astBuilder->getEpoch() != m_defaultDeclRefEpoch || !m_defaultDeclRef)
{
m_defaultDeclRef = astBuilder->getOrCreate<DirectDeclRef>(this);
m_defaultDeclRefEpoch = astBuilder->getEpoch();
}
return m_defaultDeclRef;
}
}
|