reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
103 return Constant<std::alignment_of<T>::value>();
include/llvm/Support/Allocator.h81 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); }lib/Target/ARM/ARMLoadStoreOptimizer.cpp
161 SpecificBumpPtrAllocator<MergeCandidate> Allocator; 162 SmallVector<const MergeCandidate*,4> Candidates; 185 MachineInstr *MergeOpsUpdate(const MergeCandidate &Cand); 851 MachineInstr *ARMLoadStoreOpt::MergeOpsUpdate(const MergeCandidate &Cand) { 1095 MergeCandidate *Candidate = new(Allocator.Allocate()) MergeCandidate; 1095 MergeCandidate *Candidate = new(Allocator.Allocate()) MergeCandidate; 1882 for (const MergeCandidate *Candidate : Candidates) {