Home | History | Annotate | Download | only in mips

Lines Matching refs:FPU

61 // can be defined to enable FPU instructions when building the
66 answer |= static_cast<uint64_t>(1) << FPU;
70 // If the compiler is allowed to use FPU then we can use FPU too in our code
74 answer |= static_cast<uint64_t>(1) << FPU;
122 // If the compiler is allowed to use fpu then we can use fpu too in our
125 // For the simulator build, use FPU.
126 supported_ |= static_cast<uint64_t>(1) << FPU;
129 if (OS::MipsCpuHasFeature(FPU)) {
130 // This implementation also sets the FPU flags if
131 // runtime detection of FPU returns true.
132 supported_ |= static_cast<uint64_t>(1) << FPU;
133 found_by_runtime_probing_only_ |= static_cast<uint64_t>(1) << FPU;