HomeSort by relevance Sort by last modified time
    Searched defs:CPU (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
mixcase.asm 0 CPU SSSE3
  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/
voe_test_interface.h 31 CPU = 4
  /external/clang/include/clang/Basic/
TargetOptions.h 30 /// If given, the name of the target CPU to generate code for.
31 std::string CPU;
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
x86inc.asm 97 CPU amdnop
584 %assign cpuflags_aligned (1<<21) ; not a cpu feature, but a function variant
594 ; All subsequent functions (up to the next INIT_CPUFLAGS) is built for the specified cpu.
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/x86inc/
x86inc.asm 188 CPU amdnop
689 %assign cpuflags_aligned (1<<21) ; not a cpu feature, but a function variant
696 ; All subsequent functions (up to the next INIT_CPUFLAGS) is built for the specified cpu.
  /external/chromium_org/third_party/libyuv/source/
x86inc.asm 97 CPU amdnop
584 %assign cpuflags_aligned (1<<21) ; not a cpu feature, but a function variant
594 ; All subsequent functions (up to the next INIT_CPUFLAGS) is built for the specified cpu.
  /external/chromium_org/v8/src/base/
cpu.cc 5 #include "src/base/cpu.h"
266 CPU::CPU() : stepping_(0),
297 // valid Ids in CPUInfo[0] and the CPU identification string in
298 // the other three array elements. The CPU identification string is
309 // Interpret CPU feature information.
337 // Interpret extended CPU feature information.
351 // Extract implementor from the "CPU implementer" field.
352 char* implementer = cpu_info.ExtractField("CPU implementer");
362 // Extract part number from the "CPU part" field
    [all...]
  /external/libvpx/libvpx/third_party/x86inc/
x86inc.asm 188 CPU amdnop
668 %assign cpuflags_aligned (1<<21) ; not a cpu feature, but a function variant
675 ; All subsequent functions (up to the next INIT_CPUFLAGS) is built for the specified cpu.
  /external/chromium_org/third_party/WebKit/Source/wtf/
CPU.h 34 /* CPU() - the target CPU architecture */
35 #define CPU(WTF_FEATURE) (defined WTF_CPU_##WTF_FEATURE && WTF_CPU_##WTF_FEATURE)
37 /* ==== CPU() - the target CPU architecture ==== */
39 /* This defines CPU(BIG_ENDIAN) or nothing, as appropriate. */
40 /* This defines CPU(32BIT) or CPU(64BIT), as appropriate. */
42 /* CPU(X86) - i386 / x86 32-bit */
51 /* CPU(X86_64) - AMD64 / Intel64 / x86_64 64-bit *
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCSubtarget.cpp 70 PPCSubtarget &PPCSubtarget::initializeSubtargetDependencies(StringRef CPU,
73 resetSubtargetFeatures(CPU, FS);
77 PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
80 : PPCGenSubtargetInfo(TT, CPU, FS), IsPPC64(is64Bit), TargetTriple(TT),
82 FrameLowering(initializeSubtargetDependencies(CPU, FS)),
101 "target-cpu");
104 std::string CPU =
110 resetSubtargetFeatures(CPU, FS);
145 void PPCSubtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) {
147 std::string CPUName = CPU;
    [all...]
  /external/llvm/lib/Target/X86/
X86Subtarget.cpp 188 FnAttrs.getAttribute(AttributeSet::FunctionIndex, "target-cpu");
191 std::string CPU =
197 resetSubtargetFeatures(CPU, FS);
201 void X86Subtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) {
202 std::string CPUName = CPU;
338 X86Subtarget &X86Subtarget::initializeSubtargetDependencies(StringRef CPU,
341 resetSubtargetFeatures(CPU, FS);
345 X86Subtarget::X86Subtarget(const std::string &TT, const std::string &CPU,
348 : X86GenSubtargetInfo(TT, CPU, FS), X86ProcFamily(Others),
357 InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM)
    [all...]
  /external/chromium_org/base/
cpu.cc 5 #include "base/cpu.h"
30 CPU::CPU()
101 // and later for arm64) and is shown once per CPU. "Processor" is used in
107 // This function also calculates whether we believe that this CPU has a
115 {"CPU implementer", &implementer},
116 {"CPU architecture", &architecture},
117 {"CPU variant", &variant},
118 {"CPU part", &part},
119 {"CPU revision", &revision}
    [all...]
cpu.h 15 class BASE_EXPORT CPU {
18 CPU();
32 // Accessors for CPU information.
49 // has_avx_hardware returns true when AVX is present in the CPU. This might
60 // believe that the NEON unit on the current CPU is flawed and cannot execute
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.h 77 // The CPU string.
78 std::string CPU;
123 StringRef getCPU() const { return CPU; }
124 void setCPU(const char *CPU) { this->CPU = CPU; }
  /external/llvm/lib/Target/ARM/
ARMSubtarget.cpp 142 /// initializeSubtargetDependencies - Initializes using a CPU and feature string
144 ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
147 resetSubtargetFeatures(CPU, FS);
151 ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU,
154 : ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
155 ARMProcClass(None), stackAlignment(4), CPUString(CPU), IsLittle(IsLittle),
157 DL(computeDataLayout(initializeSubtargetDependencies(CPU, FS))),
223 "target-cpu");
226 std::string CPU =
232 resetSubtargetFeatures(CPU, FS)
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 62 static MCSubtargetInfo *createPPCMCSubtargetInfo(StringRef TT, StringRef CPU,
65 InitPPCMCSubtargetInfo(X, TT, CPU, FS);
125 void emitMachine(StringRef CPU) override {
126 OS << "\t.machine " << CPU << '\n';
137 void emitMachine(StringRef CPU) override {
149 void emitMachine(StringRef CPU) override {
  /external/clang/tools/driver/
cc1as_main.cpp 73 /// If given, the name of the target CPU to determine which instructions
75 std::string CPU;
184 Opts.CPU = Args->getLastArgValue(OPT_target_cpu);
355 TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS));
366 MAB = TheTarget->createMCAsmBackend(*MRI, Opts.Triple, Opts.CPU);
379 Opts.CPU);
  /external/llvm/lib/LTO/
LTOModule.cpp 134 // Set a default CPU for Darwin triples.
135 std::string CPU;
138 CPU = "core2";
140 CPU = "yonah";
143 CPU = "cyclone";
146 TargetMachine *target = march->createTargetMachine(TripleStr, CPU, FeatureStr,
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 76 const StringRef CPU;
81 : MCAsmBackend(), CPU(_CPU), MaxNopLength(_CPU == "slm" ? 7 : 15) {
82 HasNopl = CPU != "generic" && CPU != "i386" && CPU != "i486" &&
83 CPU != "i586" && CPU != "pentium" && CPU != "pentium-mmx" &&
84 CPU != "i686" && CPU != "k6" && CPU != "k6-2" && CPU != "k6-3" &
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/jni/
android_test.cc 108 CPU = 4
    [all...]
  /external/lldb/source/Plugins/UnwindAssembly/x86/
UnwindAssembly-x86.cpp 30 enum CPU {
120 AssemblyParse_x86 (const ExecutionContext &exe_ctx, int cpu, ArchSpec &arch, AddressRange func);
168 AssemblyParse_x86::AssemblyParse_x86 (const ExecutionContext &exe_ctx, int cpu, ArchSpec &arch, AddressRange func) :
179 m_cpu(cpu),
183 if (cpu == k_i386)
212 if (cpu == k_i386)
883 UnwindAssembly_x86::UnwindAssembly_x86 (const ArchSpec &arch, int cpu) :
885 m_cpu(cpu),
921 const llvm::Triple::ArchType cpu = arch.GetMachine (); local
922 if (cpu == llvm::Triple::x86
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp     [all...]
  /external/llvm/lib/Support/
CommandLine.cpp     [all...]
  /external/clang/lib/Driver/
Tools.cpp 844 /// getAArch64TargetCPU - Get the (LLVM) name of the AArch64 cpu we are
893 CmdArgs.push_back("-target-cpu");
910 // Get CPU and ABI names. They are not independent
941 // Setup default CPU and ABI names.
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]

Completed in 1140 milliseconds