Lines Matching full:aix

1 //===--- AIX.cpp - AIX ToolChain Implementations ----------------*- C++ -*-===//
9 #include "AIX.h"
22 using AIX = clang::driver::toolchains::AIX; typedef
30 void aix::Assembler::ConstructJob(Compilation &C, const JobAction &JA, in ConstructJob()
58 // On Power for AIX and Linux, this behaviour matches that of GCC for both the in ConstructJob()
73 // The system assembler on AIX takes exactly one input file. The driver is in ConstructJob()
110 void aix::Linker::ConstructJob(Compilation &C, const JobAction &JA, in ConstructJob()
114 const AIX &ToolChain = static_cast<const AIX &>(getToolChain()); in ConstructJob()
152 // memory; the AIX linker does that under an option. in ConstructJob()
344 /// AIX - AIX tool chain which can call as(1) and ld(1) directly.
345 AIX::AIX(const Driver &D, const llvm::Triple &Triple, const ArgList &Args) in AIX() function in AIX
357 AIX::GetHeaderSysroot(const llvm::opt::ArgList &DriverArgs) const { in GetHeaderSysroot()
365 void AIX::AddOpenMPIncludeArgs(const ArgList &DriverArgs, in AddOpenMPIncludeArgs()
387 void AIX::AddClangSystemIncludeArgs(const ArgList &DriverArgs, in AddClangSystemIncludeArgs()
420 void AIX::AddClangCXXStdlibIncludeArgs( in AddClangCXXStdlibIncludeArgs()
432 "picking up libstdc++ headers is unimplemented on AIX"); in AddClangCXXStdlibIncludeArgs()
449 void AIX::AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args, in AddCXXStdlibLibArgs()
453 llvm::report_fatal_error("linking libstdc++ unimplemented on AIX"); in AddCXXStdlibLibArgs()
539 void AIX::addClangTargetOptions( in addClangTargetOptions()
562 void AIX::addProfileRTLibs(const llvm::opt::ArgList &Args, in addProfileRTLibs()
581 ToolChain::CXXStdlibType AIX::GetDefaultCXXStdlibType() const { in GetDefaultCXXStdlibType()
585 ToolChain::RuntimeLibType AIX::GetDefaultRuntimeLibType() const { in GetDefaultRuntimeLibType()
589 auto AIX::buildAssembler() const -> Tool * { return new aix::Assembler(*this); } in buildAssembler()
591 auto AIX::buildLinker() const -> Tool * { return new aix::Linker(*this); } in buildLinker()