Home
last modified time | relevance | path

Searched refs:Options (Results 1 - 25 of 84) sorted by relevance

1234

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
H A Doption.cpp27 bool Options::dumpBefore = false;
28 bool Options::dumpAfter = false;
29 std::string Options::dumpPhase = "";
30 std::string Options::dumpFunc = "*";
31 std::string Options::skipPhase;
32 std::string Options::skipFrom;
33 std::string Options::skipAfter;
34 bool Options::quiet = false;
35 bool Options::regNativeFunc = false;
36 bool Options
[all...]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
H A Dark_config.py58 ) -> compiler.Options:
60 Return a :class:`compiler.Options` instance for `ark_compiler_options` fixture.
62 return compiler.Options(
70 ark_compiler_default_options: compiler.Options,
71 ) -> compiler.Options:
73 Return a :class:`compiler.Options` instance for `ark_compiler` fixture.
84 ) -> disassembler.Options:
86 Return a :class:`disassembler.Options` instance for `ark_disassembler_options` fixture.
88 return disassembler.Options(
95 ark_disassembler_default_options: disassembler.Options,
[all...]
H A Ddisassembler.py31 class Options: class
41 def __init__(self, options: Options) -> None:
69 ark_disassembler_options: Options,
/arkcompiler/runtime_core/static_core/irtoc/lang/
H A Dirtoc.rb18 Options.parse
32 // THIS FILE WAS GENERATED FOR #{Options.arch.upcase}
143 return "" if Options.plugins.empty?
145 Options.plugins[filename].each do |full_filename|
184 abort "YAML description file is not specified" unless Options.instructions_yaml
185 abort "ISA YAML file is not specified" unless Options.isa
186 abort "ISAPI file is not specified" unless Options.isapi
188 InstructionsData.setup Options.instructions_yaml
191 ISA.setup Options.isa, Options
[all...]
H A Doptions.rb20 Options = OpenStruct.new
21 class << Options
40 if Options.working_dir
41 Dir.mkdir(Options.working_dir) unless File.exists?(Options.working_dir)
42 Dir.chdir(Options.working_dir)
H A Dregmask.rb24 if Options.arch == :arm64
26 elsif Options.arch == :arm32
28 elsif Options.arch == :x86_64
/arkcompiler/ets_frontend/merge_abc/src/
H A Doptions.h24 class Options { class
26 Options();
27 NO_COPY_SEMANTIC(Options);
28 NO_MOVE_SEMANTIC(Options);
29 ~Options();
H A Doptions.cpp21 // Options
22 Options::Options() : argparser_(new panda::PandArgParser()) {} in Options() function in panda::proto::Options
24 Options::~Options() in ~Options()
29 bool Options::Parse(int argc, const char **argv) in Parse()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
H A Doption.h36 class Options { class
38 static Options &GetInstance();
40 ~Options() = default;
183 #define TRACE_PHASE (Options::dumpPhase.compare(PhaseName()) == 0)
187 #define TRACE_MAPLE_PHASE (Options::dumpPhase.compare(PhaseName()) == 0)
/arkcompiler/runtime_core/static_core/disassembler/
H A Ddisasm.cpp24 struct Options { struct
43 explicit Options(ark::PandArgParser &paParser) in Options() function
68 static void Disassemble(const Options &options) in Disassemble()
92 static bool ProcessArgs(ark::PandArgParser &paParser, const Options &options, int argc, const char **argv) in ProcessArgs()
130 Options options {paParser}; in main()
/arkcompiler/ets_frontend/es2panda/aot/
H A Doptions.h56 class Options { class
58 Options();
59 NO_COPY_SEMANTIC(Options);
60 NO_MOVE_SEMANTIC(Options);
61 ~Options();
H A Doptions.cpp102 void Options::CollectInputAbcFile(const std::vector<std::string> &itemList, const std::string &inputExtension) in CollectInputAbcFile()
118 void Options::CollectInputSourceFile(const std::vector<std::string> &itemList, const std::string &inputExtension) in CollectInputSourceFile()
151 bool Options::CheckFilesValidity(const std::string &input, const std::vector<std::string> &itemList, in CheckFilesValidity()
167 bool Options::IsAbcFile(const std::string &fileName, const std::string &inputExtension) in IsAbcFile()
172 // Options
173 bool Options::CollectInputFilesFromFileList(const std::string &input, const std::string &inputExtension) in CollectInputFilesFromFileList()
199 bool Options::CollectInputFilesFromFileDirectory(const std::string &input, const std::string &extension) in CollectInputFilesFromFileDirectory()
215 void Options::ParseCacheFileOption(const std::string &cacheInput) in ParseCacheFileOption()
242 void Options::ParseUpdateVersionInfo(nlohmann::json &compileContextInfoJson) in ParseUpdateVersionInfo()
285 void Options
331 Options::Options() : argparser_(new panda::PandArgParser()) {} Options() function in panda::es2panda::aot::Options
[all...]
H A Dmain.cpp59 const std::unique_ptr<panda::es2panda::aot::Options> &options) in GenerateBase64Output()
121 const std::unique_ptr<panda::es2panda::aot::Options> &options, std::map<std::string, size_t> *statp) in GenerateProgramsByWorkers()
142 const std::unique_ptr<panda::es2panda::aot::Options> &options) in DumpProgramInfos()
170 const std::unique_ptr<panda::es2panda::aot::Options> &options, in GenerateProgram()
259 const std::unique_ptr<panda::es2panda::aot::Options> &options, size_t expectedProgsCount, in GenerateAbcFiles()
277 const std::unique_ptr<panda::es2panda::aot::Options> &options, in ResolveDepsRelations()
285 const std::unique_ptr<panda::es2panda::aot::Options> &options) in ResolveAndGenerate()
308 auto options = std::make_unique<Options>(); in Run()
/arkcompiler/runtime_core/compiler/
H A Dcompiler_options.h42 * Extends `compiler::Options`, which may be not sufficient to provide the desired functionality
45 class CompilerOptions : public Options {
47 explicit CompilerOptions(const std::string &exe_path) : Options(exe_path) {} in CompilerOptions()
55 * `Options::GetCompilerRegex()` on every call to `MatchesRegex()`.
57 * Static local variable doesn't suit as soon as `Options::SetCompilerRegex()` is used (e.g. in
62 Options::SetCompilerRegex(new_regex_pattern); in SetCompilerRegex()
/arkcompiler/runtime_core/static_core/compiler/
H A Dcompiler_options.h43 * Extends `compiler::Options`, which may be not sufficient to provide the desired functionality
46 class CompilerOptions : public Options {
48 explicit CompilerOptions(const std::string &exePath) : Options(exePath) {} in CompilerOptions()
56 * `Options::GetCompilerRegex()` on every call to `MatchesRegex()`.
58 * Static local variable doesn't suit as soon as `Options::SetCompilerRegex()` is used (e.g. in
69 Options::SetCompilerRegex(newRegexPattern); in SetCompilerRegex()
/arkcompiler/runtime_core/static_core/dprof/converter/
H A Dmain.cpp50 const Options &GetOptionos() const in GetOptionos()
65 Options options_ {""};
75 const Options &options = parser.GetOptionos(); in Main()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
H A Dets_vm_api.h26 class Options;
36 PANDA_PUBLIC_API bool CreateRuntime(std::function<bool(base_options::Options *, RuntimeOptions *)> const &addOptions);
/arkcompiler/ets_frontend/ets2panda/util/
H A Doptions.h65 class Options { class
67 Options();
68 NO_COPY_SEMANTIC(Options);
69 NO_MOVE_SEMANTIC(Options);
70 ~Options();
H A DgenerateBin.cpp24 [[maybe_unused]] static void InitializeLogging(const util::Options *options) in InitializeLogging()
39 static int OptimizeBytecode(ark::pandasm::Program *prog, const util::Options *options, const ReporterFun &reporter, in OptimizeBytecode()
61 static int GenerateProgramImpl(ark::pandasm::Program *prog, const util::Options *options, const ReporterFun &reporter, in GenerateProgramImpl()
103 int GenerateProgram(ark::pandasm::Program *prog, const util::Options *options, const ReporterFun &reporter) in GenerateProgram()
/arkcompiler/runtime_core/static_core/tools/sampler/
H A Daspt_converter.h60 bool RunWithOptions(const Options &cliOptions);
66 static DumpType GetDumpTypeFromOptions(const Options &cliOptions);
H A Dargs_parser.h58 const Options &GetOptions() const in GetOptions()
76 Options options_ {""};
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H A DcompilerImpl.h36 explicit CompilationUnit(const SourceFile &i, const util::Options &o, uint32_t s, ScriptExtension e) in CompilationUnit()
43 const util::Options &options;
/arkcompiler/runtime_core/static_core/irtoc/backend/
H A Dirtoc_options.cpp20 Options g_options("");
H A Dirtoc_options.h22 extern Options g_options;
/arkcompiler/runtime_core/static_core/libllvmbackend/
H A Dllvm_options.cpp20 Options g_options("");

Completed in 10 milliseconds

1234