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()633 if (!(FPU & NeonFPU) && FPMath == FP_Neon) { in handleTargetFeatures()638 if (FPMath == FP_Neon) in handleTargetFeatures()640 else if (FPMath == FP_VFP) in handleTargetFeatures()687 FPMath = FP_Neon; in setFPMath()691 FPMath = FP_VFP; in setFPMath()
96 FPMath = FP_387; in setFPMath()100 FPMath = FP_SSE; in setFPMath()491 if ((FPMath == FP_SSE && SSELevel < SSE1) || in handleTargetFeatures()492 (FPMath == FP_387 && SSELevel >= SSE1)) { in handleTargetFeatures()494 << (FPMath == FP_SSE ? "sse" : "387"); in handleTargetFeatures()
57 enum { FP_Default, FP_VFP, FP_Neon } FPMath; variable
181 enum FPMathKind { FP_Default, FP_SSE, FP_387 } FPMath = FP_Default; variable
801 if (!Opts->FPMath.empty() && !Target->setFPMath(Opts->FPMath)) { in CreateTargetInfo()802 Diags.Report(diag::err_target_unknown_fpmath) << Opts->FPMath; in CreateTargetInfo()
1358 MDNode *FPMath = CI->getMetadata(LLVMContext::MD_fpmath); in fold_sincos() local1387 FPMath = MDNode::getMostGenericFPMath( in fold_sincos()1388 FPMath, XI->getMetadata(LLVMContext::MD_fpmath)); in fold_sincos()1396 B.setDefaultFPMathTag(FPMath); in fold_sincos()
6571 MarshallingInfoString<TargetOpts<"FPMath">>;