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()
301 template <MachO::LoadCommandType LCType, typename... ArgTs>
302 MachOBuilderLoadCommand<LCType> &addLoadCommand(ArgTs &&...Args) {
303 static_assert(LCType != MachOTraits::SegmentCmd,
305 auto LC = std::make_unique<MachOBuilderLoadCommand<LCType>>(
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp136 template <typename LCType> in updateLoadCommandPayloadString()
141 uint32_t NewCmdsize = alignTo(sizeof(LCType) + S.size() + 1, 8); in buildRPathLoadCommand()
144 LC.Payload.assign(NewCmdsize - sizeof(LCType), 0); in buildRPathLoadCommand()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp956 MachO::LoadCommandType LCType = in writeObject() local
958 W.write<uint32_t>(LCType); in writeObject()