Lines Matching +full:8 +full:- +full:cpu
1 //===-- AVRTargetMachine.cpp - Define TargetMachine for AVR ---------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
31 "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8";
33 /// Processes a CPU name.
34 static StringRef getCPU(StringRef CPU) {
35 if (CPU.empty() || CPU == "generic") {
39 return CPU;
47 StringRef CPU, StringRef FS,
52 : LLVMTargetMachine(T, AVRDataLayout, TT, getCPU(CPU), FS, Options,
55 SubTarget(TT, std::string(getCPU(CPU)), std::string(FS), *this) {
56 this->TLOF = std::make_unique<AVRTargetObjectFile>();
116 //===----------------------------------------------------------------------===//
118 //===----------------------------------------------------------------------===//