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

Declarations

tools/lld/ELF/ARMErrataFix.h
   24 class Patch657417Section;

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/ARMErrataFix.cpp
  353     InputSectionDescription &isd, std::vector<Patch657417Section *> &patches) {
  390     return isa<Patch657417Section>(a) && !isa<Patch657417Section>(b);
  390     return isa<Patch657417Section>(a) && !isa<Patch657417Section>(b);
  403                            std::vector<Patch657417Section *> &patches) {
  407   Patch657417Section *psec;
  436     psec = make<Patch657417Section>(isec, sr.off, sr.instr, destIsARM);
  454     psec = make<Patch657417Section>(isec, sr.off, sr.instr, isBLX(sr.instr));
  471 std::vector<Patch657417Section *>
  474   std::vector<Patch657417Section *> patches;
  516         std::vector<Patch657417Section *> patches =
tools/lld/ELF/ARMErrataFix.h
   32   std::vector<Patch657417Section *>
   36                      std::vector<Patch657417Section *> &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)...);