clang  5.0.0
Public Types | Public Member Functions | List of all members
clang::driver::Multilib Class Reference

This corresponds to a single GCC Multilib, or a segment of one controlled by a command line flag. More...

#include "clang/Driver/Multilib.h"

Public Types

typedef std::vector< std::string > flags_list
 

Public Member Functions

 Multilib (StringRef GCCSuffix="", StringRef OSSuffix="", StringRef IncludeSuffix="")
 
const std::string & gccSuffix () const
 Get the detected GCC installation path suffix for the multi-arch target variant. More...
 
MultilibgccSuffix (StringRef S)
 Set the GCC installation path suffix. More...
 
const std::string & osSuffix () const
 Get the detected os path suffix for the multi-arch target variant. More...
 
MultilibosSuffix (StringRef S)
 Set the os path suffix. More...
 
const std::string & includeSuffix () const
 Get the include directory suffix. More...
 
MultilibincludeSuffix (StringRef S)
 Set the include directory suffix. More...
 
const flags_listflags () const
 Get the flags that indicate or contraindicate this multilib's use All elements begin with either '+' or '-'. More...
 
flags_listflags ()
 
Multilibflag (StringRef F)
 Add a flag to the flags list Flag must be a flag accepted by the driver with its leading '-' removed, and replaced with either: '-' which contraindicates using this multilib with that flag or: '+' which promotes using this multilib in the presence of that flag otherwise '-print-multi-lib' will not emit them correctly. More...
 
LLVM_DUMP_METHOD void dump () const
 
void print (raw_ostream &OS) const
 print summary of the Multilib More...
 
bool isValid () const
 Check whether any of the 'against' flags contradict the 'for' flags. More...
 
bool isDefault () const
 Check whether the default is selected. More...
 
bool operator== (const Multilib &Other) const
 

Detailed Description

This corresponds to a single GCC Multilib, or a segment of one controlled by a command line flag.

Definition at line 25 of file Multilib.h.

Member Typedef Documentation

typedef std::vector<std::string> clang::driver::Multilib::flags_list

Definition at line 27 of file Multilib.h.

Constructor & Destructor Documentation

Multilib::Multilib ( StringRef  GCCSuffix = "",
StringRef  OSSuffix = "",
StringRef  IncludeSuffix = "" 
)

Definition at line 57 of file Multilib.cpp.

References normalizePathSegment().

Member Function Documentation

LLVM_DUMP_METHOD void Multilib::dump ( ) const

Definition at line 83 of file Multilib.cpp.

References print().

Multilib& clang::driver::Multilib::flag ( StringRef  F)
inline

Add a flag to the flags list Flag must be a flag accepted by the driver with its leading '-' removed, and replaced with either: '-' which contraindicates using this multilib with that flag or: '+' which promotes using this multilib in the presence of that flag otherwise '-print-multi-lib' will not emit them correctly.

Definition at line 81 of file Multilib.h.

Referenced by findAndroidArmMultilibs(), findBiarchMultilibs(), findMipsCsMultilibs(), findMipsImgMultilibs(), findMipsMtiMultilibs(), and findMipsMuslMultilibs().

const flags_list& clang::driver::Multilib::flags ( ) const
inline

Get the flags that indicate or contraindicate this multilib's use All elements begin with either '+' or '-'.

Definition at line 71 of file Multilib.h.

Referenced by compose(), clang::driver::MultilibSet::Maybe(), and clang::driver::MultilibSet::select().

flags_list& clang::driver::Multilib::flags ( )
inline

Definition at line 72 of file Multilib.h.

const std::string& clang::driver::Multilib::gccSuffix ( ) const
inline

Get the detected GCC installation path suffix for the multi-arch target variant.

Always starts with a '/', unless empty

Definition at line 41 of file Multilib.h.

Referenced by compose(), clang::driver::MultilibSet::FilterOut(), findBiarchMultilibs(), findMipsCsMultilibs(), findMipsImgMultilibs(), findMipsMtiMultilibs(), clang::driver::Driver::HandleImmediateArgs(), clang::driver::toolchains::Linux::Linux(), and operator==().

Multilib & Multilib::gccSuffix ( StringRef  S)

Set the GCC installation path suffix.

Definition at line 65 of file Multilib.cpp.

References normalizePathSegment(), and S.

const std::string& clang::driver::Multilib::includeSuffix ( ) const
inline
Multilib & Multilib::includeSuffix ( StringRef  S)

Set the include directory suffix.

Definition at line 77 of file Multilib.cpp.

References normalizePathSegment(), and S.

bool clang::driver::Multilib::isDefault ( ) const
inline

Check whether the default is selected.

Definition at line 95 of file Multilib.h.

Referenced by clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::print().

bool Multilib::isValid ( ) const

Check whether any of the 'against' flags contradict the 'for' flags.

Definition at line 101 of file Multilib.cpp.

References I.

Referenced by clang::driver::MultilibSet::Either().

bool Multilib::operator== ( const Multilib Other) const

Definition at line 117 of file Multilib.cpp.

References gccSuffix(), includeSuffix(), and osSuffix().

const std::string& clang::driver::Multilib::osSuffix ( ) const
inline
Multilib & Multilib::osSuffix ( StringRef  S)

Set the os path suffix.

Definition at line 71 of file Multilib.cpp.

References normalizePathSegment(), and S.

void Multilib::print ( raw_ostream &  OS) const

print summary of the Multilib

Definition at line 87 of file Multilib.cpp.

Referenced by dump(), and clang::driver::operator<<().


The documentation for this class was generated from the following files: