reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ExecutionEngine/JITLink/JITLink.h
  265 const char *getScopeName(Scope S);
  287          JITTargetAddress Size, Linkage L, Scope S, bool IsLive,
  297                                  JITTargetAddress Size, Scope S, bool IsLive) {
  316     new (Sym) Symbol(Base, 0, Name, Size, Linkage::Strong, Scope::Default,
  323                                    Linkage L, Scope S, bool IsLive) {
  339                      Scope::Local, IsLive, IsCallable);
  345                                    JITTargetAddress Size, Linkage L, Scope S,
  467   Scope getScope() const { return static_cast<Scope>(S); }
  470   void setScope(Scope S) {
  482     setScope(Scope::Default);
  758                             uint64_t Size, Linkage L, Scope S, bool IsLive) {
  767   Symbol &addCommonSymbol(StringRef Name, Scope S, Section &Section,
  792                            Scope S, bool IsCallable, bool IsLive) {
lib/ExecutionEngine/JITLink/JITLink.cpp
   80 const char *getScopeName(Scope S) {
   82   case Scope::Default:
   84   case Scope::Hidden:
   86   case Scope::Local:
  117   case Scope::Default:
  120   case Scope::Hidden:
  123   case Scope::Local:
lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
   66 Scope MachOLinkGraphBuilder::getScope(StringRef Name, uint8_t Type) {
   68     return Scope::Local;
   70     return Scope::Hidden;
   72     return Scope::Default;
   73   return Scope::Local;
  332           *NSym.Name, NSym.Value, 0, Linkage::Strong, Scope::Default,
lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.h
  107                      uint8_t Sect, uint16_t Desc, Linkage L, Scope S)
  125     Scope S = Scope::Default;
  125     Scope S = Scope::Default;
  159   NormalizedSymbol &createNormalizedSymbol(ArgTs &&... Args) {
  162     new (Sym) NormalizedSymbol(std::forward<ArgTs>(Args)...);
  219   static Scope getScope(StringRef Name, uint8_t Type);
lib/ExecutionEngine/Orc/ObjectLinkingLayer.cpp
   91       if (Sym->hasName() && Sym->getScope() != Scope::Local) {
   97         if (Sym->getScope() == Scope::Default)
  204       if (Sym->getScope() == Scope::Local)
  213         if (TargetSym.getScope() != Scope::Local)
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/type_traits
 1629     { typedef _Tp   type; };