ClassID: Add some comments in ClassID::Of()
Change-Id: I64df4af9cb0de05891fdcca705ecb02562262986 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/34461 Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: dan sinclair <dsinclair@chromium.org>
This commit is contained in:
parent
bf5e6b98cc
commit
fb54145b6f
|
@ -27,8 +27,14 @@ class ClassID {
|
||||||
/// @returns the unique ClassID for the type T.
|
/// @returns the unique ClassID for the type T.
|
||||||
template <typename T>
|
template <typename T>
|
||||||
static ClassID Of() {
|
static ClassID Of() {
|
||||||
static char _;
|
// Take the address of a static local variable to produce a unique
|
||||||
return ClassID{reinterpret_cast<uintptr_t>(&_)};
|
// identifier for the type T.
|
||||||
|
// We use a short name here as this method is instantiated for every
|
||||||
|
// castable class, and so we'll have a fully qualified name in the
|
||||||
|
// executable symbol table for every castable type. A shorter name produces
|
||||||
|
// a smaller executable when unstripped.
|
||||||
|
static char s;
|
||||||
|
return ClassID{reinterpret_cast<uintptr_t>(&s)};
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Equality operator
|
/// Equality operator
|
||||||
|
|
Loading…
Reference in New Issue