Home
last modified time | relevance | path

Searched refs:runner (Results 1 - 25 of 102) sorted by relevance

12345

/arkcompiler/runtime_core/compiler/tests/
H A Dosr_test.cpp94 PandaRunner runner; in TEST_F() local
95 runner.GetRuntimeOptions().SetCompilerHotnessThreshold(HOTNESS_THRESHOLD); in TEST_F()
96 runner.GetRuntimeOptions().SetCompilerEnableJit(true); in TEST_F()
97 runner.GetCompilerOptions().SetCompilerNonOptimizing(true); in TEST_F()
101 runner.Run(OSR_IN_TOP_FRAME_SOURCE, 435); in TEST_F()
109 PandaRunner runner; in TEST_F() local
110 runner.GetRuntimeOptions().SetCompilerHotnessThreshold(HOTNESS_THRESHOLD); in TEST_F()
111 runner.GetRuntimeOptions().SetCompilerEnableJit(true); in TEST_F()
112 runner.GetCompilerOptions().SetCompilerNonOptimizing(false); in TEST_F()
116 runner in TEST_F()
147 PandaRunner runner; TEST_F() local
161 PandaRunner runner; TEST_F() local
198 PandaRunner runner; TEST_F() local
254 PandaRunner runner; TEST_F() local
270 PandaRunner runner; TEST_F() local
287 PandaRunner runner; TEST_F() local
337 PandaRunner runner; TEST_F() local
390 PandaRunner runner; TEST_F() local
411 PandaRunner runner; TEST_F() local
464 PandaRunner runner; TEST_F() local
523 PandaRunner runner; TEST_F() local
546 PandaRunner runner; TEST_F() local
606 PandaRunner runner; TEST_F() local
629 PandaRunner runner; TEST_F() local
653 PandaRunner runner; TEST_F() local
[all...]
H A Dprofiling_runner_test.cpp63 PandaRunner runner; in TEST_F() local
64 runner.GetRuntimeOptions().SetCompilerProfilingThreshold(1); in TEST_F()
65 auto runtime = runner.CreateRuntime(); in TEST_F()
66 runner.Run(runtime, SOURCE, std::vector<std::string> {}); in TEST_F()
67 auto method = runner.GetMethod("foo"); in TEST_F()
/arkcompiler/runtime_core/static_core/compiler/tests/
H A Dosr_test.cpp102 PandaRunner runner; in TEST_F() local
103 runner.GetRuntimeOptions().SetCompilerHotnessThreshold(HOTNESS_THRESHOLD); in TEST_F()
104 runner.GetRuntimeOptions().SetCompilerEnableJit(true); in TEST_F()
105 runner.GetCompilerOptions().SetCompilerNonOptimizing(true); in TEST_F()
109 runner.Run(OSR_IN_TOP_FRAME_SOURCE, 435U); in TEST_F()
117 PandaRunner runner; in TEST_F() local
118 runner.GetRuntimeOptions().SetCompilerHotnessThreshold(HOTNESS_THRESHOLD); in TEST_F()
119 runner.GetRuntimeOptions().SetCompilerEnableJit(true); in TEST_F()
120 runner.GetCompilerOptions().SetCompilerNonOptimizing(false); in TEST_F()
124 runner in TEST_F()
155 PandaRunner runner; TEST_F() local
169 PandaRunner runner; TEST_F() local
206 PandaRunner runner; TEST_F() local
262 PandaRunner runner; TEST_F() local
278 PandaRunner runner; TEST_F() local
295 PandaRunner runner; TEST_F() local
346 PandaRunner runner; TEST_F() local
400 PandaRunner runner; TEST_F() local
422 PandaRunner runner; TEST_F() local
476 PandaRunner runner; TEST_F() local
536 PandaRunner runner; TEST_F() local
560 PandaRunner runner; TEST_F() local
621 PandaRunner runner; TEST_F() local
645 PandaRunner runner; TEST_F() local
669 PandaRunner runner; TEST_F() local
[all...]
H A Dprofiling_runner_test.cpp62 PandaRunner runner; in TEST_F() local
63 runner.GetRuntimeOptions().SetCompilerProfilingThreshold(1U); in TEST_F()
64 runner.GetRuntimeOptions().SetInterpreterType("cpp"); in TEST_F()
65 auto runtime = runner.CreateRuntime(); in TEST_F()
66 runner.Run(runtime, SOURCE, std::vector<std::string> {}); in TEST_F()
67 auto method = runner.GetMethod("foo"); in TEST_F()
78 PandaRunner runner; in TEST_F() local
79 runner.GetRuntimeOptions().SetCompilerProfilingThreshold(1U); in TEST_F()
80 auto runtime = runner.CreateRuntime(); in TEST_F()
81 runner in TEST_F()
[all...]
H A Dcodegen_runner_test.cpp355 ark::test::PandaRunner runner;
356 runner.GetCompilerOptions().SetCompilerNonOptimizing(true);
357 runner.GetCompilerOptions().SetCompilerInlining(false);
358 runner.GetRuntimeOptions().SetCompilerHotnessThreshold(0U);
359 runner.GetRuntimeOptions().SetShouldLoadBootPandaFiles(true);
360 runner.GetRuntimeOptions().SetShouldInitializeIntrinsics(false);
361 runner.GetCompilerOptions().SetCompilerRegallocRegMask(mask);
364 runner.SetHook(Callback);
367 runner.Run(CODEGEN_OBJECT_PARAMS_SOURCE, 123U);
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Dstack_walker_test.cpp161 PandaRunner runner; in TEST_F() local
162 runner.GetRuntimeOptions().SetCompilerHotnessThreshold(0); in TEST_F()
163 runner.GetCompilerOptions().SetCompilerNonOptimizing(true); in TEST_F()
164 runner.GetCompilerOptions().SetCompilerRematConst(false); in TEST_F()
165 runner.GetCompilerOptions().SetCompilerRegex("(?!_GLOBAL::testb|_GLOBAL::hook).*"); in TEST_F()
169 runner.Run(source, [](uintptr_t lr, [[maybe_unused]] uintptr_t fp) -> int { in TEST_F()
363 PandaRunner runner; in TestModifyManyVregs() local
364 runner.GetRuntimeOptions().SetCompilerHotnessThreshold(0); in TestModifyManyVregs()
365 runner.GetCompilerOptions().SetCompilerNonOptimizing(true); in TestModifyManyVregs()
368 runner in TestModifyManyVregs()
467 PandaRunner runner; TEST_F() local
557 PandaRunner runner; TEST_F() local
[all...]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
H A Dconfig.py24 from runner.logger import Log
25 from runner.options.cli_args_wrapper import CliArgsWrapper
26 from runner.options.config_keeper import ConfigKeeper
27 from runner.options.decorator_value import value, _to_test_suites, _to_str
28 from runner.options.options_ark import ArkOptions
29 from runner.options.options_ark_aot import ArkAotOptions
30 from runner.options.options_custom import CustomSuiteOptions
31 from runner.options.options_es2panda import Es2PandaOptions
32 from runner.options.options_ets import ETSOptions
33 from runner
[all...]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/
H A Dmain.py26 from runner.logger import Log
27 from runner.options.cli_options import get_args
28 from runner.options.config import Config
29 from runner.plugins_registry import PluginsRegistry
30 from runner.runner_base import Runner
65 for runner in runners:
66 Log.all(logger, f"Runner {runner.name} started")
67 runner.run()
68 Log.all(logger, f"Runner {runner.name} finished")
69 failed_tests += runner
[all...]
H A Drunner_test.py19 from runner.test.chapters_test.chapters_test import ChapterTest
21 from runner.test.chapters_test.chapters_neg_test import ChapterNegativeCases
23 from runner.test.multiple_config_test.multiple_config_test import MultipleConfigTest
H A Dlinter.sh31 RUNNER_DIR=${ROOT_DIR}/tests/tests-u-runner
35 pylint --rcfile .pylintrc runner main.py runner_test.py
43 mypy -p runner
/arkcompiler/ets_frontend/es2panda/test/
H A Drunner.py73 parser = argparse.ArgumentParser(description="Regression test runner")
220 def run(self, runner):
222 test_abc_path = path.join(runner.build_dir, test_abc_name)
223 cmd = runner.cmd_prefix + [runner.es2panda]
286 def run(self, runner):
287 cmd = runner.cmd_prefix + [runner.es2panda, '--parse-only']
320 def run(self, runner):
499 def run(self, runner)
[all...]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/hermes/
H A Drunner_js_hermes.py23 from runner.logger import Log
24 from runner.options.config import Config
25 from runner.plugins.hermes.test_js_hermes import TestJSHermes
26 from runner.plugins.hermes.util_hermes import UtilHermes
27 from runner.runner_base import get_test_id
28 from runner.runner_js import RunnerJS
29 from runner.enum_types.test_directory import TestDirectory
31 _LOGGER = logging.getLogger("runner.plugins.hermes.runner_js_hermes")
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dcg_dominance.cpp144 BB *runner = pre; in ComputeDomFrontiers() local
145 while (runner != nullptr && runner != GetDom(bb->GetId()) && runner != &commonEntryBB) { in ComputeDomFrontiers()
146 if (!HasDomFrontier(runner->GetId(), bb->GetId())) { in ComputeDomFrontiers()
147 domFrontier[runner->GetId()].push_back(bb->GetId()); in ComputeDomFrontiers()
149 runner = GetDom(runner->GetId()); in ComputeDomFrontiers()
170 BB *runner = pre; in ComputeDomFrontiers() local
171 while (runner ! in ComputeDomFrontiers()
[all...]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/enum_types/
H A Dparams.py21 from runner.enum_types.configuration_kind import ConfigurationKind
22 from runner.enum_types.fail_kind import FailKind
23 from runner.options.config import Config
24 from runner.reports.report_format import ReportFormat
25 from runner.code_coverage.coverage import LlvmCov
26 from runner.plugins.work_dir import WorkDir
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/declgenparser/
H A Drunner_declgenparser.py23 from runner.options.config import Config
24 from runner.runner_base import get_test_id
25 from runner.logger import Log
26 from runner.plugins.declgenparser.test_declgenparser import TestDeclgenParser
27 from runner.runner_js import RunnerJS
28 from runner.enum_types.test_directory import TestDirectory
30 _LOGGER = logging.getLogger("runner.plugins.declgenparser.runner_declgenparser")
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/
H A Drunner_astchecker.py23 from runner.logger import Log
24 from runner.options.config import Config
25 from runner.plugins.astchecker.test_astchecker import TestASTChecker
26 from runner.plugins.astchecker.util_astchecker import UtilASTChecker
27 from runner.runner_base import get_test_id
28 from runner.runner_js import RunnerJS
29 from runner.enum_types.test_directory import TestDirectory
31 _LOGGER = logging.getLogger('runner.plugins.astchecker.runner_astchecker')
H A Dtest_astchecker.py23 from runner.descriptor import Descriptor
24 from runner.test_file_based import TestFileBased
25 from runner.enum_types.params import TestEnv
26 from runner.plugins.astchecker.util_astchecker import UtilASTChecker
27 from runner.enum_types.fail_kind import FailKind
29 _LOGGER = logging.getLogger("runner.plugins.astchecker")
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/
H A Drunner_js_test262.py23 from runner.logger import Log
24 from runner.options.config import Config
25 from runner.plugins.test262.test_js_test262 import TestJSTest262
26 from runner.plugins.test262.util_test262 import UtilTest262
27 from runner.runner_base import correct_path, get_test_id
28 from runner.runner_js import RunnerJS
29 from runner.enum_types.test_directory import TestDirectory
31 _LOGGER = logging.getLogger("runner.plugins.test262.runner_js_test262")
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
H A Drunner_ets.py24 from runner.enum_types.configuration_kind import ConfigurationKind
25 from runner.logger import Log
26 from runner.options.config import Config
27 from runner.plugins.ets.ets_suites import EtsSuites
28 from runner.plugins.ets.ets_test_suite import EtsTestSuite
29 from runner.plugins.ets.test_ets import TestETS
30 from runner.plugins.ets.test_sts_ts_subset import TestTSSubset
31 from runner.runner_base import get_test_id
32 from runner.runner_file_based import RunnerFileBased
33 from runner
[all...]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
H A Drunner_file_based.py30 from runner.utils import get_platform_binary_name
31 from runner.enum_types.configuration_kind import ConfigurationKind, SanitizerKind
32 from runner.enum_types.fail_kind import FailKind
33 from runner.enum_types.params import TestEnv
34 from runner.enum_types.qemu import QemuKind
35 from runner.logger import Log
36 from runner.options.config import Config
37 from runner.reports.report_format import ReportFormat
38 from runner.reports.detailed_report import DetailedReport
39 from runner
[all...]
H A Drunner_js.py21 from runner.enum_types.configuration_kind import ConfigurationKind
22 from runner.options.config import Config
23 from runner.runner_file_based import RunnerFileBased, PandaBinaries
24 from runner.utils import get_platform_binary_name
26 _LOGGER = logging.getLogger("runner.runner_js")
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/parser/
H A Drunner_js_parser.py23 from runner.logger import Log
24 from runner.options.config import Config
25 from runner.plugins.parser.test_js_parser import TestJSParser
26 from runner.runner_base import get_test_id
27 from runner.runner_js import RunnerJS
28 from runner.enum_types.test_directory import TestDirectory
30 _LOGGER = logging.getLogger("runner.plugins.parser.runner_js_parser")
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/system/
H A Drunner_ets_system.py24 from runner.logger import Log
25 from runner.options.config import Config
26 from runner.plugins.system.test_ets_system import TestETSSystem
27 from runner.runner_base import get_test_id
28 from runner.runner_js import RunnerJS
29 from runner.enum_types.test_directory import TestDirectory
32 _LOGGER = logging.getLogger("runner.plugins.system.runner_ets_system")
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/
H A Dhtml_view.py24 from runner.reports.report_format import ReportFormat
25 from runner.enum_types.fail_kind import FailKind
26 from runner.options.config import Config
27 from runner.utils import write_2_file
28 from runner.test_base import Test
29 from runner.reports.summary import Summary
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ets_templates/
H A Dbenchmark.py23 from runner.logger import Log
24 from runner.utils import write_2_file
25 from runner.plugins.ets.ets_templates.params import Params
26 from runner.plugins.ets.ets_templates.template import Template
32 _LOGGER = logging.getLogger("runner.plugins.ets.ets_templates.benchmark")

Completed in 12 milliseconds

12345