|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/MC/MCContext.h 54 class MCSectionXCOFF;
include/llvm/MC/MCSymbolXCOFF.h 17 class MCSectionXCOFF;
References
include/llvm/MC/MCContext.h 97 SpecificBumpPtrAllocator<MCSectionXCOFF> XCOFFAllocator;
274 std::map<XCOFFSectionKey, MCSectionXCOFF *> XCOFFUniquingMap;
509 MCSectionXCOFF *getXCOFFSection(StringRef Section,
include/llvm/MC/MCSymbolXCOFF.h 38 void setContainingCsect(MCSectionXCOFF *C) {
45 MCSectionXCOFF *getContainingCsect() const {
53 MCSectionXCOFF *ContainingCsect = nullptr;
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,
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) {
263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
265 return cast_convert_val<X, Y*,
include/llvm/Support/PointerLikeTypeTraits.h 56 static inline void *getAsVoidPointer(T *P) { return P; }
57 static inline T *getFromVoidPointer(void *P) { return static_cast<T *>(P); }
59 enum { NumLowBitsAvailable = detail::ConstantLog2<alignof(T)>::value };
91 typedef PointerLikeTypeTraits<T *> NonConst;
93 static inline const void *getAsVoidPointer(const T *P) {
96 static inline const T *getFromVoidPointer(const void *P) {
lib/CodeGen/AsmPrinter/AsmPrinter.cpp 1669 MCSectionXCOFF *FnEntryPointSec =
1670 cast<MCSectionXCOFF>(getObjFileLowering().SectionForGlobal(&F, TM));
lib/MC/MCContext.cpp 538 MCSectionXCOFF *MCContext::getXCOFFSection(StringRef Section,
558 MCSectionXCOFF *Result = new (XCOFFAllocator.Allocate())
559 MCSectionXCOFF(CachedName, SMC, Type, SC, Kind, Begin);
lib/MC/XCOFFObjectWriter.cpp 50 uint8_t getEncodedType(const MCSectionXCOFF *);
66 const MCSectionXCOFF *const MCCsect;
73 ControlSection(const MCSectionXCOFF *MCSec)
171 CsectGroup &getCsectGroup(const MCSectionXCOFF *MCSec);
244 CsectGroup &XCOFFObjectWriter::getCsectGroup(const MCSectionXCOFF *MCSec) {
273 DenseMap<const MCSectionXCOFF *, ControlSection *> WrapperMap;
276 const auto *MCSec = cast<const MCSectionXCOFF>(&S);
276 const auto *MCSec = cast<const MCSectionXCOFF>(&S);
301 const MCSectionXCOFF *ContainingCsect = XSym->getContainingCsect();
577 const MCSectionXCOFF *MCSec = Csect.MCCsect;
632 uint8_t getEncodedType(const MCSectionXCOFF *Sec) {
lib/Target/PowerPC/PPCAsmPrinter.cpp 1730 MCSectionXCOFF *FnDescSec = OutStreamer->getContext().getXCOFFSection(
1755 MCSectionXCOFF *CSect = cast<MCSectionXCOFF>(
1755 MCSectionXCOFF *CSect = cast<MCSectionXCOFF>(
1817 MCSectionXCOFF *TOCBaseSection = OutStreamer->getContext().getXCOFFSection(