blob: 079f7c02da2711fd231415b99b9e3b950f17bf00 (
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
34
35
|
#ifndef SLANG_MANGLE_H_INCLUDED
#define SLANG_MANGLE_H_INCLUDED
// This file implements the name mangling scheme for the Slang language.
#include "../core/slang-basic.h"
#include "slang-syntax.h"
namespace Slang
{
struct IRSpecialize;
void emitNameForLinkage(StringBuilder& sb, UnownedStringSlice str);
String getMangledName(ASTBuilder* astBuilder, Decl* decl);
String getMangledName(ASTBuilder* astBuilder, DeclRefBase* declRef);
String getMangledNameFromNameString(const UnownedStringSlice& name);
String getHashedName(const UnownedStringSlice& mangledName);
String getMangledNameForConformanceWitness(ASTBuilder* astBuilder, Type* sub, Type* sup);
String getMangledNameForConformanceWitness(
ASTBuilder* astBuilder,
Type* sub,
Type* sup,
IROp subOp);
String getMangledNameForConformanceWitness(
ASTBuilder* astBuilder,
DeclRef<Decl> sub,
DeclRef<Decl> sup);
String getMangledNameForConformanceWitness(ASTBuilder* astBuilder, DeclRef<Decl> sub, Type* sup);
String getMangledTypeName(ASTBuilder* astBuilder, Type* type);
} // namespace Slang
#endif
|