Lines Matching full:dump
158 ark::PandArg<bool> opDumpAst {"dump-ast", false, "Dump the parsed AST"};
159 ark::PandArg<bool> opDumpAstOnlySilent {"dump-ast-only-silent", false,
160 … "Dump parsed AST with all dumpers available but don't print to stdout"};
161 ark::PandArg<bool> opDumpCheckedAst {"dump-dynamic-ast", false,
162 "Dump AST with synthetic nodes for dynamic languages"};
166 ark::PandArg<bool> opDumpAssembly {"dump-assembly", false, "Dump pandasm"};
168 ark::PandArg<bool> opDumpDebugInfo {"dump-debug-info", false, "Dump debug info"};
193 ark::PandArg<bool> opSizeStat {"dump-size-stat", false, "Dump size statistics"};
229 ark::PandArg<std::string> dumpBeforePhases {"dump-before-phases", "",
230 … "Generate program dump before running phases in the list"};
232 …"dump-ets-src-before-phases", "", "Generate program dump as ets source code before running phases …
234 …"dump-ets-src-after-phases", "", "Generate program dump as ets source code after running phases in…
235 ark::PandArg<std::string> dumpAfterPhases {"dump-after-phases", "",
236 … "Generate program dump after running phases in the list"};
514 errorMsg_ = "--dump-ets-src-* option is valid only with ETS extension"; in Parse()