Lines Matching full:n
26 "Usage: panda [OPTIONS] [file1:file2:file3] [entrypoint] -- [arguments]\n"
27 "\n"
28 "optional arguments:\n";
31 "Usage: ark_stub_compiler [OPTIONS]\n"
32 "\n"
33 "optional arguments:\n";
36 "--aot-file: Path (file suffix not needed) to AOT output file. Default: \"aot_file\"\n"
37 "--ark-properties: set ark properties\n"
38 "--ark-bundle-name: set ark bundle name\n"
39 "--asm-interpreter: Enable asm interpreter. Default: true\n"
40 "--asm-opcode-disable-range: Opcode range when asm interpreter is enabled.\n"
41 "--assert-types: Enable type assertion for type inference tests. Default: false\n"
42 "--builtins-dts: builtins.d.abc file path for AOT.\n"
43 "--compiler-log: log Option For aot compiler and stub compiler,\n"
44 " \"none\": no log,\n"
45 " \"allllircirasm or all012\": print llIR file, CIR log and asm log for all methods,\n"
46 " \"allcir or all0\": print cir info for all methods,\n"
47 " \"allllir or all1\": print llir info for all methods,\n"
48 " \"allasm or all2\": print asm log for all methods,\n"
49 " \"alltype or all3\": print type infer log for all methods,\n"
51 "in 'mlist-for-log',\n"
52 " \"cercir or cer0\": print cir info for certain method illustrated in 'mlist-for-log',\n"
53 " \"cerasm or cer2\": print asm log for certain method illustrated in 'mlist-for-log',\n"
54 " Default: \"none\"\n"
56 "Default: \"none\"\n"
57 "--enable-ark-tools: Enable ark tools to debug. Default: false\n"
58 "--trace-bc: enable tracing bytecode for aot runtime. Default: false\n"
59 "--trace-deopt: enable tracing deopt for aot runtime. Default: false\n"
60 "--deopt-threshold: set max count which aot function can occur deoptimization. Default: 10\n"
61 "--opt-code-profiler: enable opt code Bytecode Statistics for aot runtime. Default: false\n"
62 "--enable-force-gc: enable force gc when allocating object. Default: true\n"
63 "--enable-ic: switch of inline cache. Default: true\n"
64 "--enable-runtime-stat: enable statistics of runtime state. Default: false\n"
65 "--enable-type-lowering: enable TSTypeLowering and TypeLowering for aot runtime. Default:true\n"
66 "--entry-point: full name of entrypoint function or method. Default: _GLOBAL::func_main_0\n"
67 "--force-full-gc: if true trigger full gc, else trigger semi and old gc. Default: true\n"
68 "--framework-abc-file: snapshot file. Default: \"strip.native.min.abc\"\n"
69 "--gcThreadNum: set gcThreadNum. Default: 7\n"
70 "--heap-size-limit: Max heap size. Default: 512MB\n"
71 "--help: Print this message and exit\n"
72 "--icu-data-path: Path to generated icu data file. Default: \"default\"\n"
73 "--IsWorker: whether is worker vm. Default: false\n"
74 …log-level: Log level. Possible values: [\"debug\", \"info\", \"warning\", \"error\", \"fatal\"].\n"
76 "\"interpreter\", \"debugger\", \"compiler\", \"builtins\", \"all\"]. Default: [\"all\"]\n"
78 "\"interpreter\", \"debugger\", \"compiler\", \"builtins\", \"all\"]. Default: [\"all\"]\n"
80 "\"interpreter\", \"debugger\", \"compiler\", \"builtins\", \"all\"]. Default: [\"all\"]\n"
82 "\"interpreter\", \"debugger\", \"compiler\", \"builtins\", \"all\"]. Default: [\"all\"]\n"
84 "\"interpreter\", \"debugger\", \"compiler\", \"builtins\", \"all\"]. Default: [\"all\"]\n"
86 …"ecma\", \"interpreter\", \"debugger\", \"compiler\", \"builtins\", \"all\"]. Default: [\"all\"]\n"
87 "--longPauseTime: set longPauseTime. Default: 40ms\n"
88 "--maxAotMethodSize: enable aot to skip too large method. Default size: 32 KB\n"
89 "--maxNonmovableSpaceCapacity: set max nonmovable space capacity\n"
90 "--merge-abc: abc file is merge abc. Default: false\n"
91 "--opt-level: Optimization level configuration on llvm back end. Default: \"3\"\n"
92 "--options: Print compiler and runtime options\n"
93 "--print-any-types: Enable TypeFilter to print any types after type inference. Default: false\n"
94 "--reloc-mode: Relocation configuration on llvm back end. Default: \"2\"\n"
95 "--serializer-buffer-size-limit: Max serializer buffer size used by the VM. Default: 2GB\n"
96 "--snapshot-file: snapshot file. Default: \"/system/etc/snapshot\"\n"
97 "--startup-time: Print the start time of command execution. Default: false\n"
98 …-file: Path of file includes common stubs module compiled by stub compiler. Default: \"stub.an\"\n"
99 …e-pgo-profiler: Enable pgo profiler to sample jsfunction call and output to file. Default: false\n"
100 "--pgo-hotness-threshold: set hotness threshold for pgo in aot compiler. Default: 2\n"
102 "or the sampling profiler file input dir for AOT PGO compiler. Default: ""\n"
103 "--target-triple: target triple for aot compiler or stub compiler.\n"
104 "--enable-print-execute-time: enable print execute pandafile spent time\"\n"
106 "\"aarch64-unknown-linux-gnu\"].\n"
107 " Default: \"x86_64-unknown-linux-gnu\"\n";
110 "Tail arguments:\n"
111 "files: path to pandafiles\n";
514 std::cerr << "Invalid option\n"<< std::endl; in ParseCommand()
530 … std::cerr << "getopt: \"" << argv <<"\" argument has invalid parameter value \n" << std::endl; in SetDefaultValue()
557 << optarg <<"\"\n" << std::endl; in ParseIntParam()
575 << optarg <<"\"\n" << std::endl; in ParseUint32Param()
593 << optarg <<"\"\n" << std::endl; in ParseUint64Param()