/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
H A D | BPFSubtarget.cpp | 28 BPFSubtarget &BPFSubtarget::initializeSubtargetDependencies(StringRef CPU, in initializeSubtargetDependencies() argument 31 initSubtargetFeatures(CPU, FS); in initializeSubtargetDependencies() 32 ParseSubtargetFeatures(CPU, FS); in initializeSubtargetDependencies() 43 void BPFSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) { in initSubtargetFeatures() argument 44 if (CPU == "probe") in initSubtargetFeatures() 45 CPU = sys::detail::getHostCPUNameForBPF(); in initSubtargetFeatures() 46 if (CPU == "generic" || CPU == "v1") in initSubtargetFeatures() 48 if (CPU == "v2") { in initSubtargetFeatures() 52 if (CPU in initSubtargetFeatures() 60 BPFSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS, const TargetMachine &TM) BPFSubtarget() argument [all...] |
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/include/ |
H A D | cpuhotplug_hotplug.sh | 20 # migrate_irq(CPU, IRQS) 23 # CPU number 27 CPU=${1#cpu} 28 MASK=$((1<<${CPU})) 39 # Echos the CPU affinity for the given process ID to stdout 48 # set_affinity(PID, CPU) 50 # Sets the affinity for the given PID to the specified CPU. 55 CPU="$2" 61 # online_cpu(CPU) 63 # Onlines the given CPU [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCSubtargetInfo.cpp | 105 // Determine the length of the longest CPU and Feature entries. in Help() 109 // Print the CPU table. in Help() 111 for (auto &CPU : CPUTable) in Help() 112 errs() << format(" %-*s - Select the %s processor.\n", MaxCPULen, CPU.Key, in Help() 113 CPU.Key); in Help() 137 // Print the CPU table. in cpuHelp() 139 for (auto &CPU : CPUTable) in cpuHelp() 140 errs() << "\t" << CPU.Key << "\n"; in cpuHelp() 150 static FeatureBitset getFeatures(StringRef CPU, StringRef FS, in getFeatures() argument 159 "CPU tabl in getFeatures() 197 InitMCProcessorInfo(StringRef CPU, StringRef FS) InitMCProcessorInfo() argument 205 setDefaultFeatures(StringRef CPU, StringRef FS) setDefaultFeatures() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsMCTargetDesc.cpp | 47 /// Select the Mips CPU for the given triple and cpu name. 48 StringRef MIPS_MC::selectMipsCPU(const Triple &TT, StringRef CPU) { in selectMipsCPU() argument 49 if (CPU.empty() || CPU == "generic") { in selectMipsCPU() 52 CPU = "mips32r6"; in selectMipsCPU() 54 CPU = "mips64r6"; in selectMipsCPU() 57 CPU = "mips32"; in selectMipsCPU() 59 CPU = "mips64"; in selectMipsCPU() 62 return CPU; in selectMipsCPU() 78 StringRef CPU, StringRe in createMipsMCSubtargetInfo() 77 createMipsMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) createMipsMCSubtargetInfo() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
H A D | SystemZTargetMachine.cpp | 38 static bool UsesVectorABI(StringRef CPU, StringRef FS) { in UsesVectorABI() argument 40 // This is the case by default if CPU is z13 or later, and can be in UsesVectorABI() 43 if (CPU.empty() || CPU == "generic" || in UsesVectorABI() 44 CPU == "z10" || CPU == "z196" || CPU == "zEC12") in UsesVectorABI() 59 static std::string computeDataLayout(const Triple &TT, StringRef CPU, in computeDataLayout() argument 61 bool VectorABI = UsesVectorABI(CPU, FS); in computeDataLayout() 147 StringRef CPU, StringRe in SystemZTargetMachine() 146 SystemZTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) SystemZTargetMachine() argument [all...] |
H A D | SystemZSubtarget.cpp | 30 SystemZSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) { in initializeSubtargetDependencies() argument 31 std::string CPUName = CPU; in initializeSubtargetDependencies() 39 SystemZSubtarget::SystemZSubtarget(const Triple &TT, const std::string &CPU, in SystemZSubtarget() argument 42 : SystemZGenSubtargetInfo(TT, CPU, FS), HasDistinctOps(false), in SystemZSubtarget() 61 TargetTriple(TT), InstrInfo(initializeSubtargetDependencies(CPU, FS)), in SystemZSubtarget()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
H A D | MipsTargetMachine.cpp | 63 static std::string computeDataLayout(const Triple &TT, StringRef CPU, in computeDataLayout() argument 67 MipsABIInfo ABI = MipsABIInfo::computeTargetABI(TT, CPU, Options.MCOptions); in computeDataLayout() 112 StringRef CPU, StringRef FS, in MipsTargetMachine() 118 : LLVMTargetMachine(T, computeDataLayout(TT, CPU, Options, isLittle), TT, in MipsTargetMachine() 119 CPU, FS, Options, getEffectiveRelocModel(JIT, RM), in MipsTargetMachine() 122 ABI(MipsABIInfo::computeTargetABI(TT, CPU, Options.MCOptions)), in MipsTargetMachine() 124 DefaultSubtarget(TT, CPU, FS, isLittle, *this, in MipsTargetMachine() 126 NoMips16Subtarget(TT, CPU, FS.empty() ? "-mips16" : FS.str() + ",-mips16", in MipsTargetMachine() 129 Mips16Subtarget(TT, CPU, FS.empty() ? "+mips16" : FS.str() + ",+mips16", in MipsTargetMachine() 141 StringRef CPU, StringRe in MipsebTargetMachine() 111 MipsTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool isLittle) MipsTargetMachine() argument 140 MipsebTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) MipsebTargetMachine() argument 150 MipselTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) MipselTargetMachine() argument 163 std::string CPU = !CPUAttr.hasAttribute(Attribute::None) getSubtargetImpl() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/ |
H A D | AVRSubtarget.cpp | 30 AVRSubtarget::AVRSubtarget(const Triple &TT, const std::string &CPU, in AVRSubtarget() argument 32 : AVRGenSubtargetInfo(TT, CPU, FS), InstrInfo(), FrameLowering(), in AVRSubtarget() 33 TLInfo(TM, initializeSubtargetDependencies(CPU, FS, TM)), TSInfo(), in AVRSubtarget() 43 ParseSubtargetFeatures(CPU, FS); in AVRSubtarget() 47 AVRSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS, in initializeSubtargetDependencies() argument 50 ParseSubtargetFeatures(CPU, FS); in initializeSubtargetDependencies()
|
H A D | AVRTargetMachine.cpp | 30 /// Processes a CPU name. 31 static StringRef getCPU(StringRef CPU) { in getCPU() argument 32 if (CPU.empty() || CPU == "generic") { in getCPU() 36 return CPU; in getCPU() 44 StringRef CPU, StringRef FS, in AVRTargetMachine() 49 : LLVMTargetMachine(T, AVRDataLayout, TT, getCPU(CPU), FS, Options, in AVRTargetMachine() 52 SubTarget(TT, getCPU(CPU), FS, *this) { in AVRTargetMachine() 43 AVRTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) AVRTargetMachine() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
H A D | SparcTargetMachine.cpp | 93 const Target &T, const Triple &TT, StringRef CPU, StringRef FS, in SparcTargetMachine() 96 : LLVMTargetMachine(T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options, in SparcTargetMachine() 102 Subtarget(TT, CPU, FS, *this, is64bit), is64Bit(is64bit) { in SparcTargetMachine() 113 std::string CPU = !CPUAttr.hasAttribute(Attribute::None) in getSubtargetImpl() local 130 auto &I = SubtargetMap[CPU + FS]; in getSubtargetImpl() 136 I = std::make_unique<SparcSubtarget>(TargetTriple, CPU, FS, *this, in getSubtargetImpl() 193 StringRef CPU, StringRef FS, in SparcV8TargetMachine() 198 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in SparcV8TargetMachine() 203 StringRef CPU, StringRef FS, in SparcV9TargetMachine() 208 : SparcTargetMachine(T, TT, CPU, F in SparcV9TargetMachine() 92 SparcTargetMachine( const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool is64bit) SparcTargetMachine() argument 192 SparcV8TargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) SparcV8TargetMachine() argument 202 SparcV9TargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) SparcV9TargetMachine() argument 212 SparcelTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) SparcelTargetMachine() argument [all...] |
H A D | SparcSubtarget.cpp | 28 SparcSubtarget &SparcSubtarget::initializeSubtargetDependencies(StringRef CPU, in initializeSubtargetDependencies() argument 53 std::string CPUName = CPU; in initializeSubtargetDependencies() 67 SparcSubtarget::SparcSubtarget(const Triple &TT, const std::string &CPU, in SparcSubtarget() argument 70 : SparcGenSubtargetInfo(TT, CPU, FS), TargetTriple(TT), Is64Bit(is64Bit), in SparcSubtarget() 71 InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this), in SparcSubtarget()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | AArch64TargetParser.cpp | 10 // such as FPU/CPU/ARCH and extension names. 27 unsigned AArch64::getDefaultFPU(StringRef CPU, AArch64::ArchKind AK) { in getDefaultFPU() argument 28 if (CPU == "generic") in getDefaultFPU() 31 return StringSwitch<unsigned>(CPU) in getDefaultFPU() 38 unsigned AArch64::getDefaultExtensions(StringRef CPU, AArch64::ArchKind AK) { in getDefaultExtensions() argument 39 if (CPU == "generic") in getDefaultExtensions() 42 return StringSwitch<unsigned>(CPU) in getDefaultExtensions() 51 AArch64::ArchKind AArch64::getCPUArchKind(StringRef CPU) { in getCPUArchKind() argument 52 if (CPU == "generic") in getCPUArchKind() 55 return StringSwitch<AArch64::ArchKind>(CPU) in getCPUArchKind() 209 parseCPUArch(StringRef CPU) parseCPUArch() argument [all...] |
H A D | ARMTargetParser.cpp | 10 // such as FPU/CPU/ARCH/extensions and specific support such as HWDIV. 359 unsigned ARM::getDefaultFPU(StringRef CPU, ARM::ArchKind AK) { in getDefaultFPU() argument 360 if (CPU == "generic") in getDefaultFPU() 363 return StringSwitch<unsigned>(CPU) in getDefaultFPU() 370 unsigned ARM::getDefaultExtensions(StringRef CPU, ARM::ArchKind AK) { in getDefaultExtensions() argument 371 if (CPU == "generic") in getDefaultExtensions() 374 return StringSwitch<unsigned>(CPU) in getDefaultExtensions() 497 StringRef CPU, ARM::ArchKind AK, StringRef ArchExt, in appendArchExtFeatures() 514 if (CPU == "") in appendArchExtFeatures() 515 CPU in appendArchExtFeatures() 496 appendArchExtFeatures( StringRef CPU, ARM::ArchKind AK, StringRef ArchExt, std::vector<StringRef> &Features) appendArchExtFeatures() argument 575 parseCPUArch(StringRef CPU) parseCPUArch() argument 590 computeDefaultTargetABI(const Triple &TT, StringRef CPU) computeDefaultTargetABI() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCSubtargetInfo.h | 33 /// Used to provide key value pairs for feature and CPU bit flags. 53 /// Used to provide key value pairs for feature and CPU bit flags. 76 std::string CPU; // CPU being targeted. member in llvm::MCSubtargetInfo 89 FeatureBitset FeatureBits; // Feature bits for current CPU + FS 93 MCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS, 105 StringRef getCPU() const { return CPU; } in getCPU() 121 void InitMCProcessorInfo(StringRef CPU, StringRef FS); 124 /// Set the features to the default for the given CPU with an appended feature 126 void setDefaultFeatures(StringRef CPU, StringRe [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
H A D | NVPTXSubtarget.cpp | 33 NVPTXSubtarget &NVPTXSubtarget::initializeSubtargetDependencies(StringRef CPU, in initializeSubtargetDependencies() argument 35 // Provide the default CPU if we don't have one. in initializeSubtargetDependencies() 36 TargetName = CPU.empty() ? "sm_20" : CPU; in initializeSubtargetDependencies() 48 NVPTXSubtarget::NVPTXSubtarget(const Triple &TT, const std::string &CPU, in NVPTXSubtarget() argument 51 : NVPTXGenSubtargetInfo(TT, CPU, FS), PTXVersion(0), SmVersion(20), TM(TM), in NVPTXSubtarget() 52 InstrInfo(), TLInfo(TM, initializeSubtargetDependencies(CPU, FS)), in NVPTXSubtarget()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | hpeldsp_init.c | 133 #define SET_HPEL_FUNCS_EXT(PFX, IDX, SIZE, CPU) \ 135 c->PFX ## _pixels_tab IDX [0] = PFX ## _pixels ## SIZE ## _ ## CPU 138 #define SET_HPEL_FUNCS03(PFX, IDX, SIZE, CPU) \ 140 SET_HPEL_FUNCS_EXT(PFX, IDX, SIZE, CPU); \ 141 c->PFX ## _pixels_tab IDX [3] = PFX ## _pixels ## SIZE ## _xy2_ ## CPU; \ 143 #define SET_HPEL_FUNCS12(PFX, IDX, SIZE, CPU) \ 145 c->PFX ## _pixels_tab IDX [1] = PFX ## _pixels ## SIZE ## _x2_ ## CPU; \ 146 c->PFX ## _pixels_tab IDX [2] = PFX ## _pixels ## SIZE ## _y2_ ## CPU; \ 149 #define SET_HPEL_FUNCS03(PFX, IDX, SIZE, CPU) SET_HPEL_FUNCS_EXT(PFX, IDX, SIZE, CPU) [all...] |
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/functional/ |
H A D | cpuhotplug01.sh | 48 # Restore CPU states 53 # do_offline(CPU) 55 # Migrates some irq's onto the CPU, then offlines it 59 CPU=${1#cpu} 62 migrate_irq "${CPU}" "${IRQS}" 63 offline_cpu ${CPU} 65 if [ "$CPU" -ne 0 ]; then 75 # do_online(CPU) 77 # Onlines the CPU and then sets the smp_affinity of all IRQs to 78 # this CPU [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/VE/ |
H A D | VESubtarget.cpp | 28 VESubtarget &VESubtarget::initializeSubtargetDependencies(StringRef CPU, in initializeSubtargetDependencies() argument 31 std::string CPUName = CPU; in initializeSubtargetDependencies() 41 VESubtarget::VESubtarget(const Triple &TT, const std::string &CPU, in VESubtarget() argument 43 : VEGenSubtargetInfo(TT, CPU, FS), TargetTriple(TT), in VESubtarget() 44 InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this), in VESubtarget()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/ |
H A D | MSP430Subtarget.cpp | 42 MSP430Subtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) { in initializeSubtargetDependencies() argument 46 std::string CPUName = CPU; in initializeSubtargetDependencies() 58 MSP430Subtarget::MSP430Subtarget(const Triple &TT, const std::string &CPU, in MSP430Subtarget() argument 60 : MSP430GenSubtargetInfo(TT, CPU, FS), FrameLowering(), in MSP430Subtarget() 61 InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this) {} in MSP430Subtarget()
|
H A D | MSP430TargetMachine.cpp | 35 static std::string computeDataLayout(const Triple &TT, StringRef CPU, in computeDataLayout() argument 41 StringRef CPU, StringRef FS, in MSP430TargetMachine() 46 : LLVMTargetMachine(T, computeDataLayout(TT, CPU, Options), TT, CPU, FS, in MSP430TargetMachine() 50 Subtarget(TT, CPU, FS, *this) { in MSP430TargetMachine() 40 MSP430TargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) MSP430TargetMachine() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCSubtarget.cpp | 47 PPCSubtarget &PPCSubtarget::initializeSubtargetDependencies(StringRef CPU, in initializeSubtargetDependencies() argument 50 initSubtargetFeatures(CPU, FS); in initializeSubtargetDependencies() 54 PPCSubtarget::PPCSubtarget(const Triple &TT, const std::string &CPU, in PPCSubtarget() argument 56 : PPCGenSubtargetInfo(TT, CPU, FS), TargetTriple(TT), in PPCSubtarget() 59 TM(TM), FrameLowering(initializeSubtargetDependencies(CPU, FS)), in PPCSubtarget() 123 void PPCSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) { in initSubtargetFeatures() argument 125 std::string CPUName = CPU; in initSubtargetFeatures() 126 if (CPUName.empty() || CPU == "generic") { in initSubtargetFeatures() 136 // Initialize scheduling itinerary for the specified CPU. in initSubtargetFeatures() 201 // This overrides the PostRAScheduler bit in the SchedModel for each CPU [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMTargetMachine.cpp | 113 computeTargetABI(const Triple &TT, StringRef CPU, in computeTargetABI() argument 118 ABIName = ARM::computeDefaultTargetABI(TT, CPU); in computeTargetABI() 131 static std::string computeDataLayout(const Triple &TT, StringRef CPU, in computeDataLayout() argument 134 auto ABI = computeTargetABI(TT, CPU, Options); in computeDataLayout() 208 StringRef CPU, StringRef FS, in ARMBaseTargetMachine() 213 : LLVMTargetMachine(T, computeDataLayout(TT, CPU, Options, isLittle), TT, in ARMBaseTargetMachine() 214 CPU, FS, Options, getEffectiveRelocModel(TT, RM), in ARMBaseTargetMachine() 216 TargetABI(computeTargetABI(TT, CPU, Options)), in ARMBaseTargetMachine() 256 std::string CPU = !CPUAttr.hasAttribute(Attribute::None) in getSubtargetImpl() local 277 std::string Key = CPU in getSubtargetImpl() 207 ARMBaseTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool isLittle) ARMBaseTargetMachine() argument 303 ARMLETargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) ARMLETargetMachine() argument 311 ARMBETargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) ARMBETargetMachine() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonMCTargetDesc.cpp | 113 StringRef Hexagon_MC::selectHexagonCPU(StringRef CPU) { in selectHexagonCPU() argument 115 if (!ArchV.empty() && !CPU.empty()) { in selectHexagonCPU() 116 if (ArchV != CPU) in selectHexagonCPU() 118 return CPU; in selectHexagonCPU() 121 if (CPU.empty()) in selectHexagonCPU() 122 CPU = DefaultArch; in selectHexagonCPU() 123 return CPU; in selectHexagonCPU() 278 std::string selectHexagonFS(StringRef CPU, StringRef FS) { in selectHexagonFS() argument 300 Result.push_back(StringSwitch<StringRef>(CPU) in selectHexagonFS() 315 static bool isCPUValid(std::string CPU) in isCPUValid() argument 326 selectCPUAndFS(StringRef CPU, StringRef FS) selectCPUAndFS() argument 385 createHexagonMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) createHexagonMCSubtargetInfo() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
H A D | LanaiSubtarget.cpp | 25 void LanaiSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) { in initSubtargetFeatures() argument 26 std::string CPUName = CPU; in initSubtargetFeatures() 33 LanaiSubtarget &LanaiSubtarget::initializeSubtargetDependencies(StringRef CPU, in initializeSubtargetDependencies() argument 35 initSubtargetFeatures(CPU, FS); in initializeSubtargetDependencies()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
H A D | RISCVSubtarget.cpp | 33 const Triple &TT, StringRef CPU, StringRef FS, StringRef ABIName) { in initializeSubtargetDependencies() 36 std::string CPUName = CPU; in initializeSubtargetDependencies() 50 RISCVSubtarget::RISCVSubtarget(const Triple &TT, StringRef CPU, StringRef FS, in RISCVSubtarget() argument 52 : RISCVGenSubtargetInfo(TT, CPU, FS), in RISCVSubtarget() 54 FrameLowering(initializeSubtargetDependencies(TT, CPU, FS, ABIName)), in RISCVSubtarget() 32 initializeSubtargetDependencies( const Triple &TT, StringRef CPU, StringRef FS, StringRef ABIName) initializeSubtargetDependencies() argument
|