Home | History | Annotate | Download | only in MCJIT

Lines Matching refs:Host

22 #include "llvm/Support/Host.h"
55 /// Returns true if the host architecture is known to support MCJIT
57 Triple Host(HostTriple);
59 if (std::find(SupportedArchs.begin(), SupportedArchs.end(), Host.getArch())
64 if (std::find(HasSubArchs.begin(), HasSubArchs.end(), Host.getArch())
71 if (Host.getArchName().startswith(I->c_str()))
77 /// Returns true if the host OS is known to support MCJIT
79 Triple Host(HostTriple);
82 Host.getEnvironment()) != UnsupportedEnvironments.end())
85 if (std::find(UnsupportedOSs.begin(), UnsupportedOSs.end(), Host.getOS())