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

Declarations

tools/lld/ELF/AArch64ErrataFix.h
   23 class Patch843419Section;

References

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,
tools/lld/ELF/AArch64ErrataFix.cpp
  483     InputSectionDescription &isd, std::vector<Patch843419Section *> &patches) {
  520     return isa<Patch843419Section>(a) && !isa<Patch843419Section>(b);
  520     return isa<Patch843419Section>(a) && !isa<Patch843419Section>(b);
  533                            std::vector<Patch843419Section *> &patches) {
  558   auto *ps = make<Patch843419Section>(isec, patcheeOffset);
  558   auto *ps = make<Patch843419Section>(isec, patcheeOffset);
  576 std::vector<Patch843419Section *>
  579   std::vector<Patch843419Section *> patches;
  634         std::vector<Patch843419Section *> patches =
tools/lld/ELF/AArch64ErrataFix.h
   31   std::vector<Patch843419Section *>
   35                      std::vector<Patch843419Section *> &patches);
tools/lld/include/lld/Common/Memory.h
   47   llvm::SpecificBumpPtrAllocator<T> alloc;
   52 template <typename T, typename... U> T *make(U &&... args) {
   53   static SpecificAlloc<T> alloc;
   54   return new (alloc.alloc.Allocate()) T(std::forward<U>(args)...);