Home
last modified time | relevance | path

Searched refs:upper (Results 1 - 17 of 17) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
H A Darray_bounds_check_elimination.cpp41 ArrayBoundsCheckElimination::Bound::Bound(int lower, GateRef lowerGate, int upper, GateRef upperGate) in Bound() argument
44 upper_ = upper; in Bound()
122 // Update upper bound in AndOp()
159 // Update upper bound in OrOp()
230 int upper = bound->Upper(); in DoBinaryArithmeticOp() local
232 int newUpper = upper + constValue; in DoBinaryArithmeticOp()
234 (constValue > 0 && (newUpper < upper))); in DoBinaryArithmeticOp()
277 int upper = bound->Upper(); in DoUnaryArithmeticOp() local
279 int newUpper = upper + constValue; in DoUnaryArithmeticOp()
281 (constValue > 0 && (newUpper < upper))); in DoUnaryArithmeticOp()
607 CheckLoop(GateRef array, GateRef lowerGate, int lower, GateRef upperGate, int upper) CheckLoop() argument
666 LoopInvariantMotionForIndexCheck(GateRef array, GateRef length, GateRef lengthMetaData, GateRef lowerGate, int lower, GateRef upperGate, int upper, bool isTypedArray) LoopInvariantMotionForIndexCheck() argument
[all...]
H A Darray_bounds_check_elimination.h41 Bound(int lower, GateRef lowerGate, int upper, GateRef upperGate);
130 bool CheckLoop(GateRef array, GateRef lowerGate, int lower, GateRef upperGate, int upper);
142 GateRef lowerGate, int lower, GateRef upperGate, int upper, bool isTypedArray);
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
H A Doptions_test_lists.py38 "architecture": self.architecture.value.upper(),
39 "sanitizer": self.sanitizer.value.upper(),
H A Doptions_general.py230 "verbose": self.verbose.value.upper(),
231 "verbose-filter": self.verbose_filter.value.upper(),
235 "qemu": self.qemu.value.upper(),
H A Doptions_report.py32 "report-format": self.report_format.value.upper(),
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dchecks_elimination.cpp956 auto *upper = insts.second; in NeedUpperDeoptimization() local
959 auto newUpper = upper; in NeedUpperDeoptimization()
962 if (IsInstIncOrDec(upper)) { in NeedUpperDeoptimization()
963 upperAdd = GetInc(upper); in NeedUpperDeoptimization()
965 newUpper = upper->GetInput(0).GetInst(); in NeedUpperDeoptimization()
986 auto [lower, upper] = bounds; in TryInsertDeoptimizationForLargeStep()
1002 auto sub = GetGraph()->CreateInstSub(DataType::INT32, INVALID_PC, upper, subValue); in TryInsertDeoptimizationForLargeStep()
1006 if (resultLenArray == upper) { in TryInsertDeoptimizationForLargeStep()
1008 // (upper - lower [- 1]) % step </<= maxAdd in TryInsertDeoptimizationForLargeStep()
1011 // result_len_array - maxAdd </<= upper in TryInsertDeoptimizationForLargeStep()
[all...]
/arkcompiler/ets_runtime/ecmascript/
H A Djs_date_time_format.cpp1612 std::string upper(item); in GetSpecialTimeZoneMap()
1613 transform(upper.begin(), upper.end(), upper.begin(), toupper); in GetSpecialTimeZoneMap()
1614 map.emplace(upper, item); in GetSpecialTimeZoneMap()
H A Djs_stable_array.cpp1153 int64_t upper = static_cast<int64_t>(len) - lower - 1;
1155 upperValueHandle.Update(ElementAccessor::FastGet(elements, upper, kind));
1157 ElementAccessor::FastSet(thread, elements, upper, lowerValueHandle, kind);
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
H A Dbounds_analysis.cpp1056 static void MoveRangeAccordingCC(ConditionCode cc, BoundsRange &lowerRange, BoundsRange &upperRange, const Inst *upper) in MoveRangeAccordingCC() argument
1062 if (IsLenArray(upper)) { in MoveRangeAccordingCC()
1063 upperRange.SetLenArray(upper); in MoveRangeAccordingCC()
1074 auto *upper = loopInfoValue.test; in ProcessIndexPhi() local
1079 upper = loopInfoValue.init; in ProcessIndexPhi()
1082 auto upperRange = bri->FindBoundsRange(phiBlock, upper); in ProcessIndexPhi()
1083 MoveRangeAccordingCC(cc, lowerRange, upperRange, upper); in ProcessIndexPhi()
H A Dbounds_analysis.h240 static BoundsRange UpdateLenArray(BoundsRange range, const Inst *lenArray, const Inst *upper);
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
H A Drich_logging.py264 level = level.upper() if isinstance(level, str) else level
/arkcompiler/runtime_core/static_core/scripts/intrusive-testing/
H A Dintrusive_instrumentator.py548 return os.path.basename(test_dir).upper()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_shared_typedarray.cpp1011 // a. Let upper be len - lower - 1. in Reverse()
1012 // b. Let upperP be ! ToString(?(upper)). in Reverse()
1024 int64_t upper = len - lower - 1; in Reverse() local
1026 upperP.Update(JSTaggedValue(upper)); in Reverse()
H A Dbuiltins_typedarray.cpp1141 // a. Let upper be len - lower - 1. in Reverse()
1142 // b. Let upperP be ! ToString(?(upper)). in Reverse()
1154 int64_t upper = len - lower - 1; in Reverse() local
1156 upperP.Update(JSTaggedValue(upper)); in Reverse()
H A Dbuiltins_array.cpp1986 // a. Let upper be len-lower-1. in Reverse()
1987 // b. Let upperP be ToString(upper). in Reverse()
2026 int64_t upper = len - lower - 1; in Reverse() local
2028 upperP.Update(JSTaggedValue(upper)); in Reverse()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dbuiltins_typedarray_stub_builder.cpp467 DEFVARIABLE(upper, VariableType::INT64(), Int64Sub(Int64Sub(*thisArrLen, *lower), Int64(1))); in Reverse()
474 TruncInt64ToInt32(*upper), arrayType); in Reverse()
484 StoreTypedArrayElement(glue, thisValue, *upper, lowerValue, arrayType); in Reverse()
H A Dbuiltins_array_stub_builder.cpp1890 GateRef upper = GetValueFromMutantTaggedArray(elements, *j); in FastReverse() local
1891 FastSetValueWithElementsKind(glue, elements, upper, *i, kind); in FastReverse()
1896 GateRef upper = GetValueFromTaggedArray(elements, *j); in FastReverse() local
1897 FastSetValueWithElementsKind(glue, elements, upper, *i, kind); in FastReverse()

Completed in 50 milliseconds