/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | array_bounds_check_elimination.cpp | 41 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 D | array_bounds_check_elimination.h | 41 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 D | options_test_lists.py | 38 "architecture": self.architecture.value.upper(), 39 "sanitizer": self.sanitizer.value.upper(),
|
H A D | options_general.py | 230 "verbose": self.verbose.value.upper(), 231 "verbose-filter": self.verbose_filter.value.upper(), 235 "qemu": self.qemu.value.upper(),
|
H A D | options_report.py | 32 "report-format": self.report_format.value.upper(),
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | checks_elimination.cpp | 956 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 D | js_date_time_format.cpp | 1612 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 D | js_stable_array.cpp | 1153 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 D | bounds_analysis.cpp | 1056 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 D | bounds_analysis.h | 240 static BoundsRange UpdateLenArray(BoundsRange range, const Inst *lenArray, const Inst *upper);
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/ |
H A D | rich_logging.py | 264 level = level.upper() if isinstance(level, str) else level
|
/arkcompiler/runtime_core/static_core/scripts/intrusive-testing/ |
H A D | intrusive_instrumentator.py | 548 return os.path.basename(test_dir).upper()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_shared_typedarray.cpp | 1011 // 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 D | builtins_typedarray.cpp | 1141 // 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 D | builtins_array.cpp | 1986 // 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 D | builtins_typedarray_stub_builder.cpp | 467 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 D | builtins_array_stub_builder.cpp | 1890 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()
|