X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=utils%2Fnofib-analyse%2FCmdLine.hs;fp=utils%2Fnofib-analyse%2FCmdLine.hs;h=0000000000000000000000000000000000000000;hb=ab7369b272b3ec6edc197a88f1d0056b82c3efa4;hp=8b606261fc1955d7d29c183520c58d2a59025657;hpb=6caa45bf8762fe38bb8d43a6181276f132f3c728;p=ghc-hetmet.git diff --git a/utils/nofib-analyse/CmdLine.hs b/utils/nofib-analyse/CmdLine.hs deleted file mode 100644 index 8b60626..0000000 --- a/utils/nofib-analyse/CmdLine.hs +++ /dev/null @@ -1,95 +0,0 @@ ------------------------------------------------------------------------------ --- CmdLine.hs - --- (c) Simon Marlow 2005 ------------------------------------------------------------------------------ - -module CmdLine - ( - flags, other_args, cmdline_errors, - devs, nodevs, tooquick_threshold, reportTitle, - CLIFlags(..), usage, - ) - where - -import System.Console.GetOpt -import System.Environment ( getArgs ) -import System.IO.Unsafe ( unsafePerformIO ) - ------------------------------------------------------------------------------ --- Command line arguments - -args :: [String] -args = unsafePerformIO getArgs - -flags :: [CLIFlags] -other_args :: [String] -cmdline_errors :: [String] -(flags, other_args, cmdline_errors) = getOpt Permute argInfo args - -default_tooquick_threshold, tooquick_threshold :: Float -default_tooquick_threshold = 0.2 {- secs -} -tooquick_threshold - = case [ i | OptIgnoreSmallTimes i <- flags ] of - [] -> default_tooquick_threshold - (i:_) -> i - -devs, nodevs :: Bool -devs = OptDeviations `elem` flags -nodevs = OptNoDeviations `elem` flags - -default_title, reportTitle :: String -default_title = "NoFib Results" -reportTitle = case [ t | OptTitle t <- flags ] of - [] -> default_title - (t:_) -> t - -data CLIFlags - = OptASCIIOutput - | OptLaTeXOutput (Maybe String) - | OptHTMLOutput - | OptIgnoreSmallTimes Float - | OptDeviations - | OptNoDeviations - | OptTitle String - | OptColumns String - | OptRows String - | OptCSV String - | OptNormalise String - | OptHelp - deriving Eq - -usageHeader :: String -usageHeader = "usage: nofib-analyse [OPTION...] ..." - -usage :: String -usage = usageInfo usageHeader argInfo - -argInfo :: [ OptDescr CLIFlags ] -argInfo = - [ Option ['?'] ["help"] (NoArg OptHelp) - "Display this message" - , Option ['a'] ["ascii"] (NoArg OptASCIIOutput) - "Produce ASCII output (default)" - , Option ['h'] ["html"] (NoArg OptHTMLOutput) - "Produce HTML output" - , Option ['i'] ["ignore"] (ReqArg (OptIgnoreSmallTimes . read) "secs") - "Ignore runtimes smaller than " - , Option ['d'] ["deviations"] (NoArg OptDeviations) - "Display deviations (default)" - , Option ['l'] ["latex"] (OptArg OptLaTeXOutput "TABLE") - "Produce LaTeX output" - , Option [] ["columns"] (ReqArg OptColumns "COLUMNS") - "Specify columns for summary table (comma separates)" - , Option [] ["rows"] (ReqArg OptRows "ROWS") - "Specify rows for summary table (comma separates)" - , Option [] ["csv"] (ReqArg OptCSV "TABLE") - "Output a single table in CSV format" - , Option [] ["normalise"] (ReqArg OptNormalise "percent|ratio|none") - "normalise to the baseline" - , Option ['n'] ["nodeviations"] (NoArg OptNoDeviations) - "Hide deviations" - , Option ['t'] ["title"] (ReqArg OptTitle "title") - "Specify report title" - ] -