Searched refs:FPMath (Results 1 – 7 of 7) sorted by relevance
241 : TargetInfo(Triple), FPMath(FP_Default), IsAAPCS(true), LDREX(0), in ARMTargetInfo()541 if (!(FPU & NeonFPU) && FPMath == FP_Neon) { in handleTargetFeatures()546 if (FPMath == FP_Neon) in handleTargetFeatures()548 else if (FPMath == FP_VFP) in handleTargetFeatures()594 FPMath = FP_Neon; in setFPMath()598 FPMath = FP_VFP; in setFPMath()
95 FPMath = FP_387; in setFPMath()99 FPMath = FP_SSE; in setFPMath()349 if ((FPMath == FP_SSE && SSELevel < SSE1) || in handleTargetFeatures()350 (FPMath == FP_387 && SSELevel >= SSE1)) { in handleTargetFeatures()352 << (FPMath == FP_SSE ? "sse" : "387"); in handleTargetFeatures()
56 enum { FP_Default, FP_VFP, FP_Neon } FPMath; variable
149 enum FPMathKind { FP_Default, FP_SSE, FP_387 } FPMath = FP_Default; variable
42 std::string FPMath; variable
696 if (!Opts->FPMath.empty() && !Target->setFPMath(Opts->FPMath)) { in CreateTargetInfo()697 Diags.Report(diag::err_target_unknown_fpmath) << Opts->FPMath; in CreateTargetInfo()
4561 MarshallingInfoString<TargetOpts<"FPMath">>;