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

Declarations

tools/lld/COFF/SymbolTable.h
   27 class CommonChunk;

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); }
tools/lld/COFF/Driver.cpp
 1936     CommonChunk *c = dc->getChunk();
tools/lld/COFF/InputFiles.cpp
  586     auto *c = make<CommonChunk>(sym);
  586     auto *c = make<CommonChunk>(sym);
tools/lld/COFF/SymbolTable.cpp
  654                                const coff_symbol_generic *sym, CommonChunk *c) {
tools/lld/COFF/SymbolTable.h
  100                     CommonChunk *c = nullptr);
tools/lld/COFF/Symbols.h
  195                 CommonChunk *c = nullptr)
  205   CommonChunk *getChunk() { return data; }
  210   CommonChunk *data;
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)...);