/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
D | option.cpp | 28 bool Options::dumpBefore = false; 29 bool Options::dumpAfter = false; 30 std::string Options::dumpPhase = ""; 31 std::string Options::dumpFunc = "*"; 32 std::string Options::skipPhase; 33 std::string Options::skipFrom; 34 std::string Options::skipAfter; 35 bool Options::quiet = false; 36 bool Options::regNativeFunc = false; 37 bool Options::nativeWrapper = true; // Enabled by default [all …]
|
/arkcompiler/runtime_core/static_core/irtoc/lang/ |
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.isapi 193 require Options.commonapi [all …]
|
D | options.rb | 20 Options = OpenStruct.new constant 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)
|
D | regmask.rb | 24 if Options.arch == :arm64 26 elsif Options.arch == :arm32 28 elsif Options.arch == :x86_64
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_phase/include/ |
D | phases.def | 10 ADDMODULEPHASE("callgraph", !Options::profileUse) 11 ADDMODULEPHASE("inline", Options::O2 && Options::useInline && !Options::profileUse) 13 ADDMODULEPHASE("callgraph", Options::O2 && Options::useInline && !Options::profileUse) 14 ADDMODULEPHASE("simplify", Options::O2 && !Options::genLMBC) 15 ADDMODULEPHASE("ConstantFold", Options::O2) 17 ADDMODULEPHASE("IpaSccPM", CLANG && (Options::O2 || Options::profileGen || Options::profileUse)) 18 ADDMODULEPHASE("inline", CLANG && (Options::O2 && Options::useInline && Options::profileUse)) 19 ADDMODULEPHASE("ipaclone", CLANG && Options::O2 && Options::enableIPAClone) 20 ADDMODULEPHASE("ProfileGenPM", CLANG && Options::profileGen)
|
/arkcompiler/ets_frontend/merge_abc/src/ |
D | options.h | 24 class Options { 26 Options(); 27 NO_COPY_SEMANTIC(Options); 28 NO_MOVE_SEMANTIC(Options); 29 ~Options();
|
D | options.cpp | 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/runtime_core/static_core/irtoc/scripts/ |
D | monitors.irt | 18 if Options.arch == :arm64 30 if Options.arch == :arm32 45 if Options.arch == :x86_64 68 if Options.arch == :x86_64 81 if Options.arch_64_bits? 107 if Options.arch == :arm32 118 if Options.arch == :x86_64 142 if Options.arch == :x86_64
|
D | gc.irt | 23 if Options.arch == :arm32 49 if Options.arch == :arm32 78 if Options.arch == :arm32 110 if Options.arch == :x86_64 119 if Options.arch == :arm32 191 if Options.arch == :arm64 193 elsif Options.arch == :x86_64 204 if Options.arch == :arm32 217 if Options.arch == :arm64 219 elsif Options.arch == :x86_64 [all …]
|
D | resolvers.irt | 24 if Options.arch == :arm32 48 if Options.arch == :arm32 79 if Options.arch == :arm32 105 if Options.arch == :arm32 137 if Options.arch == :arm32 144 if Options.arch == :x86_64
|
/arkcompiler/ets_frontend/ets2panda/util/ |
D | options.h | 60 class Options { 62 Options(); 63 NO_COPY_SEMANTIC(Options); 64 NO_MOVE_SEMANTIC(Options); 65 ~Options();
|
/arkcompiler/ets_frontend/es2panda/aot/ |
D | options.h | 54 class Options { 56 Options(); 57 NO_COPY_SEMANTIC(Options); 58 NO_MOVE_SEMANTIC(Options); 59 ~Options();
|
D | main.cpp | 85 …const std::unique_ptr<panda::es2panda::aot::Options> &options, std::map<std::string, size_t> *stat… in GenerateProgramsByWorkers() 106 const std::unique_ptr<panda::es2panda::aot::Options> &options) in DumpProgramInfos() 123 const std::unique_ptr<panda::es2panda::aot::Options> &options) in GenerateProgram() 156 const std::unique_ptr<panda::es2panda::aot::Options> &options, size_t expectedProgsCount) in GenerateAbcFiles() 174 auto options = std::make_unique<Options>(); in Run()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_phase/src/ |
D | phase_impl.cpp | 133 bool dumpFunc = (Options::dumpFunc == "*" || Options::dumpFunc == func->GetName()) && in RunSerial() 134 (Options::dumpPhase == "*" || Options::dumpPhase == schedulerName); in RunSerial() 135 dumpPhase(Options::dumpBefore && dumpFunc, "before "); in RunSerial() 138 dumpPhase(Options::dumpAfter && dumpFunc, "after "); in RunSerial()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
D | option.h | 27 class Options { 29 static Options &GetInstance(); 34 ~Options() = default; 181 #define TRACE_PHASE (Options::dumpPhase.compare(PhaseName()) == 0) 185 #define TRACE_MAPLE_PHASE (Options::dumpPhase.compare(PhaseName()) == 0)
|
/arkcompiler/runtime_core/static_core/disassembler/ |
D | disasm.cpp | 24 struct Options { struct 43 explicit Options(panda::PandArgParser &paParser) in Options() argument 68 void Disassemble(const Options &options) in Disassemble() 92 bool ProcessArgs(panda::PandArgParser &paParser, const Options &options, int argc, const char **arg… in ProcessArgs() 132 Options options {paParser}; in main()
|
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
D | generateDeclarations.cpp | 27 return (ctx->compilerContext->Options()->tsDeclOut.empty() || in Perform() 28 …erateTsDeclarations(checker->AsETSChecker(), program, ctx->compilerContext->Options()->tsDeclOut)); in Perform()
|
/arkcompiler/runtime_core/compiler/ |
D | compiler_options.h | 45 class CompilerOptions : public Options { 47 explicit CompilerOptions(const std::string &exe_path) : Options(exe_path) {} in CompilerOptions() 62 Options::SetCompilerRegex(new_regex_pattern); in SetCompilerRegex()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/ |
D | class_hierarchy_phase.cpp | 21 KlassHierarchy::traceFlag = Options::dumpPhase.compare(PhaseName()) == 0; in PhaseRun() 24 if (!Options::skipVirtualMethod) { in PhaseRun()
|
/arkcompiler/runtime_core/static_core/compiler/ |
D | compiler_options.h | 45 class CompilerOptions : public Options { 47 explicit CompilerOptions(const std::string &exePath) : Options(exePath) {} in CompilerOptions() 62 Options::SetCompilerRegex(newRegexPattern); in SetCompilerRegex()
|
/arkcompiler/runtime_core/static_core/dprof/converter/ |
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/ |
D | ets_vm_api.h | 26 class Options; variable 36 PANDA_PUBLIC_API bool CreateRuntime(std::function<bool(base_options::Options *, RuntimeOptions *)> …
|
/arkcompiler/ets_frontend/ts2panda/ts2abc/ |
D | ts2abc.h | 55 bool GenerateProgram(const std::string &data, const std::string &output, panda::ts2abc::Options opt… 56 bool GenerateProgramsFromPipe(const panda::ts2abc::Options &options);
|
/arkcompiler/runtime_core/static_core/tools/sampler/ |
D | args_parser.h | 58 const Options &GetOptions() const in GetOptions() 76 Options options_ {""};
|
D | aspt_converter.h | 60 bool RunWithOptions(const Options &cliOptions); 66 static DumpType GetDumpTypeFromOptions(const Options &cliOptions);
|