Home
last modified time | relevance | path

Searched refs:check (Results 1 - 25 of 37) sorted by relevance

12

/arkcompiler/ets_runtime/test/moduletest/mapget/
H A Dmapget.js43 function check(key) { function
56 check(intKey);
59 check(0);
60 check(1);
61 check(1 << 30);
62 check((1 << 30) - 1);
63 check(-1);
64 check(1.5);
65 check(-1.5);
66 check(Numbe
[all...]
/arkcompiler/runtime_core/static_core/verification/jobs/
H A Djob.cpp59 const auto &check = Options().Check(); in DoChecks() local
61 if (check[MethodOption::CheckType::RESOLVE_ID]) { in DoChecks()
68 if (check[MethodOption::CheckType::CFLOW]) { in DoChecks()
71 LOG(WARNING, VERIFIER) << "Failed to check control flow for method " << method_->GetFullName(true); in DoChecks()
79 if (check[MethodOption::CheckType::TYPING]) { in DoChecks()
87 if (check[MethodOption::CheckType::ABSINT]) { in DoChecks()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/proxies/ets_proxy/
H A Dcheck_access_primitives.js67 function check(o) {
70 check(pa);
71 check(pas);
/arkcompiler/ets_frontend/ets2panda/public/headers_parser/
H A Dparse_struct.py43 check = data.find("struct ", start)
45 if check == -1:
48 start_of_name = find_first_not_restricted_character(" ", data, check + len("struct "))
/arkcompiler/ets_frontend/ets2panda/test/unit/public/
H A Dast_verifier_short_test.cpp57 const auto check = "NodeHasParent"; in TEST_F() local
59 checks.insert(check); in TEST_F()
65 ASSERT_EQ(messages[0].Invariant(), check); in TEST_F()
73 const auto check = "NodeHasSourceRange"; in TEST_F() local
75 checks.insert(check); in TEST_F()
81 ASSERT_EQ(messages[0].Invariant(), check); in TEST_F()
89 auto check = "NodeHasType"; in TEST_F() local
91 checks.insert(check); in TEST_F()
97 ASSERT_EQ(messages[0].Invariant(), check); in TEST_F()
310 const auto check in TEST_F() local
[all...]
H A Dast_verifier_reference_typeannotation_test.cpp58 const auto check = "ReferenceTypeAnnotationIsNullForAll"; in TEST_F() local
59 ASSERT_EQ(messages[0].Invariant(), check); in TEST_F()
/arkcompiler/runtime_core/static_core/verification/
H A Dverification.rb27 def domain_types(check)
28 check._domains.map do |d|
/arkcompiler/ets_frontend/ets2panda/ast_verifier/
H A DASTVerifier.h105 * @param invariantSet Set of invariants to check
136 auto check = *allocator->New<T>(*allocator); in AddInvariant() local
137 invariantsChecks_[name] = check; in AddInvariant()
139 invariantsChecks_[name + RECURSIVE_SUFFIX] = RecursiveInvariant(check); in AddInvariant()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/intersection_signature/
H A Dmain.js121 let check = checkIntersectionInterface(arg);
122 if (!check) {
185 let check = checkIntersectionInterface(arg);
186 if (!check) {
248 let check = checkUnionType(arg);
249 if (!check) {
311 let check = checkLiteralType(arg);
312 if (!check) {
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dcircuit_builder-inl.h198 LogicAndBuilder &LogicAndBuilder::And(GateRef check) in And() argument
202 builder_->Branch(check, checkTrue, exit_); in And()
244 LogicOrBuilder &LogicOrBuilder::Or(GateRef check) in Or() argument
248 builder_->Branch(check, exit_, checkFalse); in Or()
H A Dtyped_hcr_lowering.cpp575 GateRef check = Circuit::NullGate(); in LowerRangeCheckPredicate() local
576 // check the condition in LowerRangeCheckPredicate()
579 check = builder_.Int32GreaterThan(x, y); in LowerRangeCheckPredicate()
582 check = builder_.Int32GreaterThanOrEqual(x, y); in LowerRangeCheckPredicate()
585 check = builder_.Int32LessThan(x, y); in LowerRangeCheckPredicate()
588 check = builder_.Int32LessThanOrEqual(x, y); in LowerRangeCheckPredicate()
594 builder_.DeoptCheck(check, frameState, deoptType); in LowerRangeCheckPredicate()
628 // check IHC onHeap hclass in BuiltinInstanceHClassCheck()
693 // BuiltinTypeId::STRING represents primitive string, only need to check the type of hclass here. in LowerBuiltinPrototypeHClassCheck()
697 BuiltinInstanceHClassCheck(&env, gate); // check IH in LowerBuiltinPrototypeHClassCheck()
1487 GateRef check = builder_.Equal(funcMethodTarget, methodTarget); LowerJSCallTargetTypeCheck() local
1503 GateRef check = builder_.Equal(funcMethodTarget, methodTarget); LowerJSFastCallTargetTypeCheck() local
1515 GateRef check = builder_.Equal(methodId, acc_.GetValueIn(gate, 1)); LowerJSCallThisTargetTypeCheck() local
1527 GateRef check = builder_.Equal(methodId, acc_.GetValueIn(gate, 1)); LowerJSNoGCCallThisTargetTypeCheck() local
1539 GateRef check = builder_.Equal(methodId, acc_.GetValueIn(gate, 1)); LowerJSFastCallThisTargetTypeCheck() local
1551 GateRef check = builder_.Equal(methodId, acc_.GetValueIn(gate, 1)); LowerJSNoGCFastCallThisTargetTypeCheck() local
1574 GateRef check = lowering.CheckPara(gate, funcheck); LowerCallTargetCheck() local
1586 GateRef check = LogicAndBuilder(&env) LowerJSInlineTargetTypeCheck() local
1780 auto check = LogicAndBuilder(&env) LowerPrototypeCheck() local
2200 GateRef check = Circuit::NullGate(); LowerTypeOfCheck() local
2395 GateRef check = builder_.Equal(arrayFunc, newTarget); LowerFloat32ArrayConstructorCheck() local
3556 GateRef check = Circuit::NullGate(); LowerElementskindCheck() local
[all...]
H A Dmcr_lowering.cpp282 GateRef check = builder_.Load(VariableType::BOOL(), glue_, guardiansOffset); in LowerArrayGuardianCheck() local
283 builder_.DeoptCheck(check, frameState, DeoptType::NOTSARRAY1); in LowerArrayGuardianCheck()
294 GateRef check = builder_.IsStableElements(hclass); in LowerHClassStableArrayCheck() local
295 builder_.DeoptCheck(check, frameState, DeoptType::NOTSARRAY2); in LowerHClassStableArrayCheck()
536 GateRef check = builder_.DoubleEqual(builder_.ChangeInt32ToFloat64(result), value); in LowerCheckFloat64AndConvert() local
537 builder_.DeoptCheck(check, frameState, DeoptType::INT32OVERFLOW1); in LowerCheckFloat64AndConvert()
569 GateRef check = builder_.Int32UnsignedLessThanOrEqual(value, upperBound); in LowerCheckUInt32AndConvert() local
570 builder_.DeoptCheck(check, frameState, DeoptType::INT32OVERFLOW1); in LowerCheckUInt32AndConvert()
H A Dntype_hcr_lowering.cpp151 GateRef check = builder_.BitAnd(builder_.Equal(actualArgc, expectedArgc), in LowerCreateArguments() local
155 BRANCH_CIR(check, &calcActualArgv, &exit); in LowerCreateArguments()
/arkcompiler/runtime_core/static_core/tests/checked/
H A Dchecker.rb299 # If an invoked process signals, then the status.signaled? check below returns different values depending on the shell.
656 check = nil
661 if check
663 check = nil
671 check.append_line(line[options.command_token.size..-1]) unless check == :disabled_check
672 check_llvm.append_line(line[options.command_token.size..-1]) unless check == :disabled_check
679 check = Checker.new(options, name)
682 checks << check
685 check
[all...]
/arkcompiler/runtime_core/tests/checked/
H A Dchecker.rb493 check = nil
496 if check
498 check = nil
501 check.append_line(line[options.command_token.size..-1])
508 check = Checker.new(options, name)
509 checks << check
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
H A Dplugins_registry.py92 subprocess.run(cmd, check=True)
113 subprocess.run(cmd, check=True)
/arkcompiler/runtime_core/static_core/plugins/ets/snippet_verifier/
H A Dverify.sh76 echo_color_text $WARNING_COLOR "please check your path to es2panda: \n $es2panda"
95 echo_color_text $WARNING_COLOR "please fix the snippets meta or check error in .verifier_error"
150 function check() { function
204 check
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
H A Dinterference_graph.cpp232 bool check = !(skipPhysical && GetNode(j).IsPhysical()) && HasEdge(nodeNum, j);
233 if (!check) {
/arkcompiler/ets_runtime/test/workloadtest/
H A Dwork_load.py89 subprocess.run(command, check=True, shell=False)
91 subprocess.run(command, check=True)
/arkcompiler/runtime_core/scripts/
H A Dinstall-third-party81 git apply --ignore-space-change --check "$patch"
/arkcompiler/runtime_core/static_core/scripts/
H A Dinstall-third-party159 git apply --ignore-space-change --check "$patch"
/arkcompiler/ets_runtime/test/jsperftest/
H A Drun_js_test.py215 check(is_degraded_str, ark_divide_v_8, ark_divide_v_8_with_jitless, ws)
220 def check(is_degraded_str, ark_divide_v_8, ark_divide_v_8_with_jitless, ws): function
277 ret = subprocess.run(cmd, check=False)
482 """Process and check argument values"""
484 logger.error("parameter --binarypath is not exist. Please check it! binary path: %s", args.binarypath)
491 logger.error("parameter --d_8_binary_path is not exist. Please check it! d 8 binary path: %s",
495 logger.error("parameter --iterations <= 0. Please check it! iterations: %s",
690 ret = subprocess.run(cmd, stdout=outfile, check=False)
787 return subprocess.run(hdc_cmd, check=False).returncode
903 logger.info("run js perf test finished. Please check detail
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dinst.cpp939 auto check = inst->CastToHclassCheck(); in ExtendFlags() local
940 if (check->GetCheckFunctionIsNotClassConstructor()) { in ExtendFlags()
943 if (check->GetCheckIsFunction()) { in ExtendFlags()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
H A Dpreparation_step.py166 check=False,
/arkcompiler/ets_frontend/test262/
H A Drun_test262.py909 check = Check(True, run_test262_test, args)
910 check.runner(check.arg)

Completed in 19 milliseconds

12