Searched refs:FPMath (Results 1 – 8 of 8) sorted by relevance
42 std::string FPMath; variable
258 : TargetInfo(Triple), FPMath(FP_Default), IsAAPCS(true), LDREX(0), in ARMTargetInfo()639 if (!(FPU & NeonFPU) && FPMath == FP_Neon) { in handleTargetFeatures()644 if (FPMath == FP_Neon) in handleTargetFeatures()646 else if (FPMath == FP_VFP) in handleTargetFeatures()693 FPMath = FP_Neon; in setFPMath()697 FPMath = FP_VFP; in setFPMath()
142 FPMath = FP_387; in setFPMath()146 FPMath = FP_SSE; in setFPMath()548 if ((FPMath == FP_SSE && SSELevel < SSE1) || in handleTargetFeatures()549 (FPMath == FP_387 && SSELevel >= SSE1)) { in handleTargetFeatures()551 << (FPMath == FP_SSE ? "sse" : "387"); in handleTargetFeatures()
57 enum { FP_Default, FP_VFP, FP_Neon } FPMath; variable
189 enum FPMathKind { FP_Default, FP_SSE, FP_387 } FPMath = FP_Default; variable
831 if (!Opts->FPMath.empty() && !Target->setFPMath(Opts->FPMath)) { in CreateTargetInfo()832 Diags.Report(diag::err_target_unknown_fpmath) << Opts->FPMath; in CreateTargetInfo()
1403 MDNode *FPMath = CI->getMetadata(LLVMContext::MD_fpmath); in fold_sincos() local1432 FPMath = MDNode::getMostGenericFPMath( in fold_sincos()1433 FPMath, XI->getMetadata(LLVMContext::MD_fpmath)); in fold_sincos()1441 B.setDefaultFPMathTag(FPMath); in fold_sincos()
7384 MarshallingInfoString<TargetOpts<"FPMath">>;