Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DDarwin.h300 class LLVM_LIBRARY_VISIBILITY AppleMachO : public MachO {
302 AppleMachO(const Driver &D, const llvm::Triple &Triple,
304 ~AppleMachO() override;
344 class LLVM_LIBRARY_VISIBILITY Darwin : public AppleMachO {
H A DDarwin.cpp955 AppleMachO::AppleMachO(const Driver &D, const llvm::Triple &Triple, in AppleMachO() function in AppleMachO
962 : AppleMachO(D, Triple, Args), TargetInitialized(false) {} in Darwin()
1011 void AppleMachO::AddCudaIncludeArgs(const ArgList &DriverArgs, in AddCudaIncludeArgs()
1016 void AppleMachO::AddHIPIncludeArgs(const ArgList &DriverArgs, in AddHIPIncludeArgs()
1021 void AppleMachO::addSYCLIncludeArgs(const ArgList &DriverArgs, in addSYCLIncludeArgs()
1117 AppleMachO::~AppleMachO() {} in ~AppleMachO()
2617 AppleMachO::GetEffectiveSysroot(const llvm::opt::ArgList &DriverArgs) const { in GetEffectiveSysroot()
2630 void AppleMachO::AddClangSystemIncludeArgs( in AddClangSystemIncludeArgs()
2682 AppleMachO::AddClangSystemIncludeArgs(DriverArgs, CC1Args); in AddClangSystemIncludeArgs()
2730 void AppleMachO::AddClangCXXStdlibIncludeArgs( in AddClangCXXStdlibIncludeArgs()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp6981 TC = std::make_unique<toolchains::AppleMachO>(*this, Target, Args); in getToolChain()