Home
last modified time | relevance | path

Searched refs:LCType (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOBuilder.h46 template <MachO::LoadCommandType LCType> struct MachOBuilderLoadCommandImplBase;
73 template <MachO::LoadCommandType LCType>
75 : public MachOBuilderLoadCommandImplBase<LCType> {
81 : MachOBuilderLoadCommandImplBase<LCType>(std::forward<ArgTs>(Args)...) {} in MachOBuilderLoadCommand()
84 template <MachO::LoadCommandType LCType>
86 : public MachOBuilderLoadCommandImplBase<LCType> {
91 : MachOBuilderLoadCommandImplBase<LCType>( in MachOBuilderDylibLoadCommand()
296 template <MachO::LoadCommandType LCType, typename... ArgTs>
297 MachOBuilderLoadCommand<LCType> &addLoadCommand(ArgTs &&...Args) {
298 static_assert(LCType != MachOTraits::SegmentCmd,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp155 template <typename LCType>
160 uint32_t NewCmdsize = alignTo(sizeof(LCType) + S.size() + 1, 8); in updateLoadCommandPayloadString()
163 LC.Payload.assign(NewCmdsize - sizeof(LCType), 0); in updateLoadCommandPayloadString()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp961 MachO::LoadCommandType LCType = in writeObject() local
963 W.write<uint32_t>(LCType); in writeObject()