/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
H A D | option.cpp | 27 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 D | ark_config.py | 58 ) -> 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 D | disassembler.py | 31 class Options: class 41 def __init__(self, options: Options) -> None: 69 ark_disassembler_options: Options,
|
/arkcompiler/runtime_core/static_core/irtoc/lang/ |
H A D | irtoc.rb | 18 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 D | options.rb | 20 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 D | regmask.rb | 24 if Options.arch == :arm64 26 elsif Options.arch == :arm32 28 elsif Options.arch == :x86_64
|
/arkcompiler/ets_frontend/merge_abc/src/ |
H A D | options.h | 24 class Options { class 26 Options(); 27 NO_COPY_SEMANTIC(Options); 28 NO_MOVE_SEMANTIC(Options); 29 ~Options();
|
H A D | options.cpp | 21 // 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 D | option.h | 36 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 D | disasm.cpp | 24 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 D | options.h | 56 class Options { class 58 Options(); 59 NO_COPY_SEMANTIC(Options); 60 NO_MOVE_SEMANTIC(Options); 61 ~Options();
|
H A D | options.cpp | 102 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 D | main.cpp | 59 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 D | compiler_options.h | 42 * 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 D | compiler_options.h | 43 * 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 D | main.cpp | 50 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 D | ets_vm_api.h | 26 class Options; 36 PANDA_PUBLIC_API bool CreateRuntime(std::function<bool(base_options::Options *, RuntimeOptions *)> const &addOptions);
|
/arkcompiler/ets_frontend/ets2panda/util/ |
H A D | options.h | 65 class Options { class 67 Options(); 68 NO_COPY_SEMANTIC(Options); 69 NO_MOVE_SEMANTIC(Options); 70 ~Options();
|
H A D | generateBin.cpp | 24 [[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 D | aspt_converter.h | 60 bool RunWithOptions(const Options &cliOptions); 66 static DumpType GetDumpTypeFromOptions(const Options &cliOptions);
|
H A D | args_parser.h | 58 const Options &GetOptions() const in GetOptions() 76 Options options_ {""};
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
H A D | compilerImpl.h | 36 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 D | irtoc_options.cpp | 20 Options g_options("");
|
H A D | irtoc_options.h | 22 extern Options g_options;
|
/arkcompiler/runtime_core/static_core/libllvmbackend/ |
H A D | llvm_options.cpp | 20 Options g_options("");
|