One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
include
/
llvm
/
Support
/
Edit File:
TypeName.h
//===- TypeName.h -----------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_SUPPORT_TYPENAME_H #define LLVM_SUPPORT_TYPENAME_H #include "llvm/ADT/StringRef.h" namespace llvm { /// We provide a function which tries to compute the (demangled) name of a type /// statically. /// /// This routine may fail on some platforms or for particularly unusual types. /// Do not use it for anything other than logging and debugging aids. It isn't /// portable or dependendable in any real sense. /// /// The returned StringRef will point into a static storage duration string. /// However, it may not be null terminated and may be some strangely aligned /// inner substring of a larger string. template <typename DesiredTypeName> inline StringRef getTypeName() { #if defined(__clang__) || defined(__GNUC__) StringRef Name = __PRETTY_FUNCTION__; StringRef Key = "DesiredTypeName = "; Name = Name.substr(Name.find(Key)); assert(!Name.empty() && "Unable to find the template parameter!"); Name = Name.drop_front(Key.size()); assert(Name.ends_with("]") && "Name doesn't end in the substitution key!"); return Name.drop_back(1); #elif defined(_MSC_VER) StringRef Name = __FUNCSIG__; StringRef Key = "getTypeName<"; Name = Name.substr(Name.find(Key)); assert(!Name.empty() && "Unable to find the function name!"); Name = Name.drop_front(Key.size()); for (StringRef Prefix : {"class ", "struct ", "union ", "enum "}) if (Name.starts_with(Prefix)) { Name = Name.drop_front(Prefix.size()); break; } auto AnglePos = Name.rfind('>'); assert(AnglePos != StringRef::npos && "Unable to find the closing '>'!"); return Name.substr(0, AnglePos); #else // No known technique for statically extracting a type name on this compiler. // We return a string that is unlikely to look like any type in LLVM. return "UNKNOWN_TYPE"; #endif } } // namespace llvm #endif
Simpan