Lines Matching defs:TargetCodeGenInfo

294 TargetCodeGenInfo::~TargetCodeGenInfo() { delete Info; }
298 unsigned TargetCodeGenInfo::getSizeOfUnwindException() const {
308 bool TargetCodeGenInfo::isNoProtoCallVariadic(const CallArgList &args,
318 TargetCodeGenInfo::getDependentLibraryOption(llvm::StringRef Lib,
548 class DefaultTargetCodeGenInfo : public TargetCodeGenInfo {
551 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {}
619 class WebAssemblyTargetCodeGenInfo final : public TargetCodeGenInfo {
622 : TargetCodeGenInfo(new WebAssemblyABIInfo(CGT)) {}
687 class PNaClTargetCodeGenInfo : public TargetCodeGenInfo {
690 : TargetCodeGenInfo(new PNaClABIInfo(CGT)) {}
877 class X86_32TargetCodeGenInfo : public TargetCodeGenInfo {
882 : TargetCodeGenInfo(new X86_32ABIInfo(
1848 class X86_64TargetCodeGenInfo : public TargetCodeGenInfo {
1851 : TargetCodeGenInfo(new X86_64ABIInfo(CGT, AVXLevel)) {}
1854 return static_cast<const X86_64ABIInfo&>(TargetCodeGenInfo::getABIInfo());
1899 return TargetCodeGenInfo::isNoProtoCallVariadic(args, fnType);
1993 class WinX86_64TargetCodeGenInfo : public TargetCodeGenInfo {
1997 : TargetCodeGenInfo(new WinX86_64ABIInfo(CGT)) {}
2032 TargetCodeGenInfo::setTargetAttributes(D, GV, CGM);
3460 class PPC32TargetCodeGenInfo : public TargetCodeGenInfo {
3463 : TargetCodeGenInfo(new PPC32_SVR4_ABIInfo(CGT, SoftFloatABI)) {}
3752 class PPC64_SVR4_TargetCodeGenInfo : public TargetCodeGenInfo {
3757 : TargetCodeGenInfo(new PPC64_SVR4_ABIInfo(CGT, Kind, HasQPX)) {}
4269 class AArch64TargetCodeGenInfo : public TargetCodeGenInfo {
4272 : TargetCodeGenInfo(new AArch64ABIInfo(CGT, Kind)) {}
4802 class ARMTargetCodeGenInfo : public TargetCodeGenInfo {
4805 :TargetCodeGenInfo(new ARMABIInfo(CGT, K)) {}
4808 return static_cast<const ARMABIInfo&>(TargetCodeGenInfo::getABIInfo());
4830 return TargetCodeGenInfo::getSizeOfUnwindException();
5382 class NVPTXTargetCodeGenInfo : public TargetCodeGenInfo {
5385 : TargetCodeGenInfo(new NVPTXABIInfo(CGT)) {}
5543 class SystemZTargetCodeGenInfo : public TargetCodeGenInfo {
5546 : TargetCodeGenInfo(new SystemZABIInfo(CGT, HasVector)) {}
5866 class MSP430TargetCodeGenInfo : public TargetCodeGenInfo {
5869 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {}
5925 class MIPSTargetCodeGenInfo : public TargetCodeGenInfo {
5929 : TargetCodeGenInfo(new MipsABIInfo(CGT, IsO32)),
6371 class HexagonTargetCodeGenInfo : public TargetCodeGenInfo {
6374 :TargetCodeGenInfo(new HexagonABIInfo(CGT)) {}
6473 class AMDGPUTargetCodeGenInfo : public TargetCodeGenInfo {
6476 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {}
6762 class SparcV9TargetCodeGenInfo : public TargetCodeGenInfo {
6765 : TargetCodeGenInfo(new SparcV9ABIInfo(CGT)) {}
6916 class XCoreTargetCodeGenInfo : public TargetCodeGenInfo {
6920 :TargetCodeGenInfo(new XCoreABIInfo(CGT)) {}
7442 const TargetCodeGenInfo &CodeGenModule::getTargetCodeGenInfo() {