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

Declarations

include/llvm/MC/MCContext.h
   50   class MCSectionCOFF;
lib/CodeGen/AsmPrinter/CodeViewDebug.h
   46 class MCSectionCOFF;

References

include/llvm/ADT/DenseMapInfo.h
   39   static inline T* getEmptyKey() {
   41     Val <<= PointerLikeTypeTraits<T*>::NumLowBitsAvailable;
   45   static inline T* getTombstoneKey() {
   47     Val <<= PointerLikeTypeTraits<T*>::NumLowBitsAvailable;
   51   static unsigned getHashValue(const T *PtrVal) {
   56   static bool isEqual(const T *LHS, const T *RHS) { return LHS == RHS; }
   56   static bool isEqual(const T *LHS, const T *RHS) { return LHS == RHS; }
include/llvm/MC/MCContext.h
   93     SpecificBumpPtrAllocator<MCSectionCOFF> COFFAllocator;
  272     std::map<COFFSectionKey, MCSectionCOFF *> COFFUniquingMap;
  469     MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics,
  475     MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics,
  483     MCSectionCOFF *
  484     getAssociativeCOFFSection(MCSectionCOFF *Sec, const MCSymbol *KeySym,
include/llvm/Support/Alignment.h
  103     return Constant<std::alignment_of<T>::value>();
include/llvm/Support/Allocator.h
   81   template <typename T> T *Allocate(size_t Num = 1) {
   82     return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
   82     return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
  470       for (char *Ptr = Begin; Ptr + sizeof(T) <= End; Ptr += sizeof(T))
  470       for (char *Ptr = Begin; Ptr + sizeof(T) <= End; Ptr += sizeof(T))
  478       char *Begin = (char *)alignAddr(*I, Align::Of<T>());
  488       DestroyElements((char *)alignAddr(Ptr, Align::Of<T>()),
  496   T *Allocate(size_t num = 1) { return Allocator.Allocate<T>(num); }
  496   T *Allocate(size_t num = 1) { return Allocator.Allocate<T>(num); }
include/llvm/Support/Casting.h
   58     return To::classof(&Val);
  106     return isa_impl<To, From>::doit(*Val);
  122     return isa_impl_wrap<To, SimpleFrom,
  132     return isa_impl_cl<To,FromTy>::doit(Val);
  142   return isa_impl_wrap<X, const Y,
  172   using ret_type = To *;       // Pointer arg case, return Ty*
  176   using ret_type = const To *; // Constant pointer arg case, return const Ty*
  198   using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
  204   using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  228     typename cast_retty<To, FromTy>::ret_type Res2
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  337 LLVM_NODISCARD inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
include/llvm/Support/PointerLikeTypeTraits.h
   56   static inline void *getAsVoidPointer(T *P) { return P; }
   57   static inline T *getFromVoidPointer(void *P) { return static_cast<T *>(P); }
   59   enum { NumLowBitsAvailable = detail::ConstantLog2<alignof(T)>::value };
lib/CodeGen/AsmPrinter/AsmPrinter.cpp
 2798       if (const MCSectionCOFF *S = dyn_cast<MCSectionCOFF>(
 2798       if (const MCSectionCOFF *S = dyn_cast<MCSectionCOFF>(
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  925   MCSectionCOFF *GVSec =
  926       GVSym ? dyn_cast<MCSectionCOFF>(&GVSym->getSection()) : nullptr;
  929   MCSectionCOFF *DebugSec = cast<MCSectionCOFF>(
  929   MCSectionCOFF *DebugSec = cast<MCSectionCOFF>(
lib/CodeGen/AsmPrinter/CodeViewDebug.h
  209   DenseSet<MCSectionCOFF *> ComdatDebugSections;
lib/CodeGen/TargetLoweringObjectFileImpl.cpp
 1471   auto *S = C.getCOFFSection(
 1506 static MCSectionCOFF *getCOFFStaticStructorSection(MCContext &Ctx,
 1510                                                    MCSectionCOFF *Default) {
 1526     MCSectionCOFF *Sec = Ctx.getCOFFSection(
 1548                                       cast<MCSectionCOFF>(StaticCtorSection));
 1555                                       cast<MCSectionCOFF>(StaticDtorSection));
lib/MC/MCContext.cpp
  434 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section,
  459   MCSectionCOFF *Result = new (COFFAllocator.Allocate()) MCSectionCOFF(
  459   MCSectionCOFF *Result = new (COFFAllocator.Allocate()) MCSectionCOFF(
  466 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section,
  474 MCSectionCOFF *MCContext::getAssociativeCOFFSection(MCSectionCOFF *Sec,
  474 MCSectionCOFF *MCContext::getAssociativeCOFFSection(MCSectionCOFF *Sec,
lib/MC/MCParser/COFFAsmParser.cpp
  259       MCSectionCOFF::isImplicitlyDiscardable(SectionName))
  587   const MCSectionCOFF *Current =
lib/MC/MCStreamer.cpp
  773   const auto *TextSecCOFF = cast<MCSectionCOFF>(TextSec);
  773   const auto *TextSecCOFF = cast<MCSectionCOFF>(TextSec);
  774   auto *MainCFISecCOFF = cast<MCSectionCOFF>(MainCFISec);
  774   auto *MainCFISecCOFF = cast<MCSectionCOFF>(MainCFISec);
lib/MC/WinCOFFObjectWriter.cpp
  117   MCSectionCOFF const *MCSection = nullptr;
  149   MCSectionCOFF *AddrsigSection;
  170   void defineSection(MCSectionCOFF const &Sec);
  258 static uint32_t getAlignment(const MCSectionCOFF &Sec) {
  294 void WinCOFFObjectWriter::defineSection(const MCSectionCOFF &MCSec) {
 1009     const MCSectionCOFF &MCSec = *Section->MCSection;
 1023     const auto *AssocMCSec = cast<MCSectionCOFF>(&AssocMCSym->getSection());
 1023     const auto *AssocMCSec = cast<MCSectionCOFF>(&AssocMCSym->getSection());
usr/include/c++/7.4.0/type_traits
 1983     { typedef _Up     type; };