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

Declarations

include/llvm/MC/MCContext.h
   52   class MCSectionMachO;

References

include/llvm/MC/MCContext.h
   95     SpecificBumpPtrAllocator<MCSectionMachO> MachOAllocator;
  270     StringMap<MCSectionMachO *> MachOUniquingMap;
  412     MCSectionMachO *getMachOSection(StringRef Segment, StringRef Section,
  417     MCSectionMachO *getMachOSection(StringRef Segment, StringRef Section,
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);
   77     return isa_impl<To, From>::doit(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,
  165   using ret_type = To &;       // Normal case, return Ty&
  168   using ret_type = const To &; // Normal case, return Ty&
  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) {
  258   return cast_convert_val<X, Y,
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
lib/CodeGen/TargetLoweringObjectFileImpl.cpp
  910     MCSectionMachO::ParseSectionSpecifier(SectionVal, Segment, Section,
  918   MCSectionMachO *S = getContext().getMachOSection(
  947     MCSectionMachO::ParseSectionSpecifier(GO->getSection(), Segment, Section,
  957   MCSectionMachO *S =
 1196   const MCSectionMachO &SMO = cast<MCSectionMachO>(Section);
 1196   const MCSectionMachO &SMO = cast<MCSectionMachO>(Section);
lib/MC/MCAsmInfoDarwin.cpp
   23   const MCSectionMachO &SMO = static_cast<const MCSectionMachO &>(Section);
lib/MC/MCAsmStreamer.cpp
  842   const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
lib/MC/MCContext.cpp
  285 MCSectionMachO *MCContext::getMachOSection(StringRef Segment, StringRef Section,
  300   MCSectionMachO *&Entry = MachOUniquingMap[Name];
  309   return Entry = new (MachOAllocator.Allocate()) MCSectionMachO(
lib/MC/MCMachOStreamer.cpp
  122 static bool canGoAfterDWARF(const MCSectionMachO &MSec) {
  153   const MCSectionMachO &MSec = *cast<MCSectionMachO>(Section);
  153   const MCSectionMachO &MSec = *cast<MCSectionMachO>(Section);
lib/MC/MCParser/DarwinAsmParser.cpp
  552   const MCSectionMachO *Current = static_cast<const MCSectionMachO *>(
  693     MCSectionMachO::ParseSectionSpecifier(SectionSpec, Segment, Section,
lib/MC/MachObjectWriter.cpp
  220   const MCSectionMachO &Section = cast<MCSectionMachO>(Sec);
  220   const MCSectionMachO &Section = cast<MCSectionMachO>(Sec);
  489     const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
  489     const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
  505     const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
  505     const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
  521     const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
  521     const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
  852     const auto &Sec = cast<MCSectionMachO>(Section);
  852     const auto &Sec = cast<MCSectionMachO>(Section);
 1016       const MCSectionMachO &Section =
lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
  124 static bool canUseLocalRelocation(const MCSectionMachO &Section,
  137   const MCSectionMachO &RefSec = cast<MCSectionMachO>(Symbol.getSection());
  137   const MCSectionMachO &RefSec = cast<MCSectionMachO>(Symbol.getSection());
  302     const MCSectionMachO &Section =
lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
  230       const MCSectionMachO &Section =
lib/Transforms/Instrumentation/AddressSanitizer.cpp
 1880       std::string ErrorCode = MCSectionMachO::ParseSectionSpecifier(
tools/clang/lib/Basic/Targets/OSTargets.h
  122     return llvm::MCSectionMachO::ParseSectionSpecifier(SR, Segment, Section,