Home | History | Annotate | Download | only in RuntimeDyld

Lines Matching full:support

10 // Implementation of ELF support for the MC-JIT runtime dynamic linker.
21 #include "llvm/Support/ELF.h"
30 template<support::endianness target_endianness, bool is64Bits>
72 template<support::endianness target_endianness, bool is64Bits>
112 template<support::endianness target_endianness, bool is64Bits>
120 template<support::endianness target_endianness, bool is64Bits>
133 template<support::endianness target_endianness, bool is64Bits>
159 DyldELFObject<support::little, false> *Obj =
160 new DyldELFObject<support::little, false>(InputBuffer, ec);
161 return new ELFObjectImage<support::little, false>(Obj);
164 DyldELFObject<support::big, false> *Obj =
165 new DyldELFObject<support::big, false>(InputBuffer, ec);
166 return new ELFObjectImage<support::big, false>(Obj);
169 DyldELFObject<support::big, true> *Obj =
170 new DyldELFObject<support::big, true>(InputBuffer, ec);
171 return new ELFObjectImage<support::big, true>(Obj);
174 DyldELFObject<support::little, true> *Obj =
175 new DyldELFObject<support::little, true>(InputBuffer, ec);
176 return new ELFObjectImage<support::little, true>(Obj);