| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMTargetStreamer.cpp | 123 if (STI.hasFeature(ARM::HasV8Ops)) { in getArchForCPU() 124 if (STI.hasFeature(ARM::FeatureRClass)) in getArchForCPU() 127 } else if (STI.hasFeature(ARM::HasV8_1MMainlineOps)) in getArchForCPU() 129 else if (STI.hasFeature(ARM::HasV8MMainlineOps)) in getArchForCPU() 131 else if (STI.hasFeature(ARM::HasV7Ops)) { in getArchForCPU() 132 if (STI.hasFeature(ARM::FeatureMClass) && STI.hasFeature(ARM::FeatureDSP)) in getArchForCPU() 135 } else if (STI.hasFeature(ARM::HasV6T2Ops)) in getArchForCPU() 137 else if (STI.hasFeature(ARM::HasV8MBaselineOps)) in getArchForCPU() 139 else if (STI.hasFeature(ARM::HasV6MOps)) in getArchForCPU() 141 else if (STI.hasFeature(ARM::HasV6Ops)) in getArchForCPU() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVTargetStreamer.cpp | 41 if (STI.hasFeature(RISCV::FeatureRV32E)) in emitTargetAttributes() 47 if (STI.hasFeature(RISCV::Feature64Bit)) in emitTargetAttributes() 49 if (STI.hasFeature(RISCV::FeatureRV32E)) in emitTargetAttributes() 53 if (STI.hasFeature(RISCV::FeatureStdExtM)) in emitTargetAttributes() 55 if (STI.hasFeature(RISCV::FeatureStdExtA)) in emitTargetAttributes() 57 if (STI.hasFeature(RISCV::FeatureStdExtF)) in emitTargetAttributes() 59 if (STI.hasFeature(RISCV::FeatureStdExtD)) in emitTargetAttributes() 61 if (STI.hasFeature(RISCV::FeatureStdExtC)) in emitTargetAttributes() 63 if (STI.hasFeature(RISCV::FeatureStdExtB)) in emitTargetAttributes() 65 if (STI.hasFeature(RISCV::FeatureStdExtV)) in emitTargetAttributes() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/ |
| H A D | Hexagon.cpp | 73 if (hasFeature("hvx-length64b")) { in getTargetDefines() 79 if (hasFeature("hvx-length128b")) { in getTargetDefines() 87 if (hasFeature("audio")) { in getTargetDefines() 169 bool HexagonTargetInfo::hasFeature(StringRef Feature) const { in hasFeature() function in HexagonTargetInfo
|
| H A D | X86.h | 293 bool hasFeature(StringRef Feature) const final; 452 if (hasFeature("cx8")) in setMaxAtomicWidth() 516 hasFeature("avx512f") ? 512 : hasFeature("avx") ? 256 : 128; in handleTargetFeatures() 758 if (hasFeature("cx16")) in setMaxAtomicWidth() 889 hasFeature("avx512f") ? 512 : hasFeature("avx") ? 256 : 128; in handleTargetFeatures()
|
| H A D | M68k.h | 44 bool hasFeature(StringRef Feature) const override;
|
| H A D | Lanai.cpp | 53 bool LanaiTargetInfo::hasFeature(StringRef Feature) const { in hasFeature() function in LanaiTargetInfo
|
| H A D | Lanai.h | 71 bool hasFeature(StringRef Feature) const override;
|
| H A D | MSP430.h | 60 bool hasFeature(StringRef Feature) const override { in hasFeature() function
|
| H A D | PNaCl.h | 51 bool hasFeature(StringRef Feature) const override { in hasFeature() function
|
| H A D | TCE.h | 92 bool hasFeature(StringRef Feature) const override { return Feature == "tce"; } in hasFeature() function
|
| H A D | BPF.h | 51 bool hasFeature(StringRef Feature) const override { in hasFeature() function
|
| H A D | Hexagon.h | 96 bool hasFeature(StringRef Feature) const override;
|
| H A D | NVPTX.h | 83 bool hasFeature(StringRef Feature) const override;
|
| H A D | SystemZ.cpp | 114 bool SystemZTargetInfo::hasFeature(StringRef Feature) const { in hasFeature() function in SystemZTargetInfo
|
| H A D | M68k.cpp | 123 bool M68kTargetInfo::hasFeature(StringRef Feature) const { in hasFeature() function in clang::targets::M68kTargetInfo
|
| H A D | SPIR.h | 93 bool hasFeature(StringRef Feature) const override { in hasFeature() function
|
| H A D | SystemZ.h | 138 bool hasFeature(StringRef Feature) const override;
|
| H A D | RISCV.h | 107 bool hasFeature(StringRef Feature) const override;
|
| H A D | WebAssembly.h | 78 bool hasFeature(StringRef Feature) const final;
|
| H A D | Sparc.h | 51 bool hasFeature(StringRef Feature) const override;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86MCCodeEmitter.cpp | 169 if (STI.hasFeature(X86::Mode16Bit) && BaseReg == 0 && IndexReg == 0) in is16BitMemOperand() 394 assert(STI.hasFeature(X86::Mode64Bit) && in emitMemModRMByte() 543 (!STI.hasFeature(X86::Mode64Bit) || BaseReg != 0)) { in emitMemModRMByte() 676 if ((STI.hasFeature(X86::Mode16Bit) && AdSize == X86II::AdSize32) || in emitPrefixImpl() 677 (STI.hasFeature(X86::Mode32Bit) && AdSize == X86II::AdSize16) || in emitPrefixImpl() 678 (STI.hasFeature(X86::Mode64Bit) && AdSize == X86II::AdSize32)) { in emitPrefixImpl() 682 } else if (STI.hasFeature(X86::Mode64Bit)) { in emitPrefixImpl() 685 } else if (STI.hasFeature(X86::Mode32Bit)) { in emitPrefixImpl() 689 assert(STI.hasFeature(X86::Mode16Bit)); in emitPrefixImpl() 719 if ((!STI.hasFeature(X86::Mode32Bit) && siReg == X86::ESI) || in emitPrefixImpl() [all …]
|
| H A D | X86AsmBackend.cpp | 380 assert((STI.hasFeature(X86::Mode32Bit) || STI.hasFeature(X86::Mode64Bit)) && in determinePaddingPrefix() 421 if (STI.hasFeature(X86::Mode64Bit)) in determinePaddingPrefix() 580 if (!(STI.hasFeature(X86::Mode64Bit) || STI.hasFeature(X86::Mode32Bit))) in canPadBranches() 1085 if (STI.hasFeature(X86::Mode16Bit)) in getMaximumNopSize() 1087 if (!STI.hasFeature(X86::FeatureNOPL) && !STI.hasFeature(X86::Mode64Bit)) in getMaximumNopSize()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/ |
| H A D | Module.cpp | 101 static bool hasFeature(StringRef Feature, const LangOptions &LangOpts, in hasFeature() function 121 .Default(Target.hasFeature(Feature) || in hasFeature() 142 if (hasFeature(Current->Requirements[I].first, LangOpts, Target) != in isUnimportable() 296 if (hasFeature(Feature, LangOpts, Target) == RequiredState) in addRequirement()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMTargetObjectFile.cpp | 35 ARM_TM.getMCSubtargetInfo()->hasFeature(ARM::FeatureExecuteOnly); in Initialize()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | DeclSpec.cpp | 1176 (!S.Context.getTargetInfo().hasFeature("power10-vector"))) in Finish() 1188 (!S.Context.getTargetInfo().hasFeature("vsx")) && in Finish() 1189 (!S.Context.getTargetInfo().hasFeature("power8-vector")) && in Finish() 1205 else if (!S.Context.getTargetInfo().hasFeature("vsx") && in Finish() 1212 !S.Context.getTargetInfo().hasFeature("arch12")) in Finish()
|