Home
last modified time | relevance | path

Searched defs:range (Results 1 – 25 of 63) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/compiler/
Drange_analysis.cpp22 auto &range = rangeInfos_[acc_.GetId(gate)]; in UpdateRange() local
78 auto range = RangeInfo::NONE(); in VisitPhi() local
110 auto range = GetRange(acc_.GetValueIn(gate, 0)); in VisitTypedUnaryOp() local
139 auto range = RangeInfo::ANY(); in VisitTypedBinaryOp() local
253 auto range = GetRange(value); in TryGetRangeOfBranch() local
282 auto range = GetRange(swap ? left : right); in GetRangeOfCompare() local
384 auto range = GetRange(gate); in PrintRangeInfo() local
/arkcompiler/ets_frontend/ets2panda/lexer/token/
DsourceLocation.cpp33 auto &range = ranges.back(); in AddCol() local
90 for (const auto &range : entry.ranges) { in GetLocation() local
/arkcompiler/ets_frontend/es2panda/lexer/token/
DsourceLocation.cpp34 auto &range = ranges.back(); in AddCol() local
90 for (const auto &range : entry.ranges) { in GetLocation() local
/arkcompiler/runtime_core/static_core/compiler/tests/
Dbounds_analysis_test.cpp269 auto range = BoundsRange::Union(ranges); in TEST_F() local
322 BoundsRange range; in TEST_F() local
439 auto range = rinfo->FindBoundsRange(&BB(3U), &INS(4U)); in TEST_F() local
504 auto range = rinfo->FindBoundsRange(&BB(3U), &INS(4U)); in TEST_F() local
536 auto range = rinfo->FindBoundsRange(&BB(3U), &INS(4U)); in TEST_F() local
627 auto range = bri->FindBoundsRange(bb, bb->GetLastInst()->GetInput(0U).GetInst()); in TEST_F() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
Dbounds_analysis.cpp160 BoundsRange BoundsRange::Mod(const BoundsRange &range) in Mod()
180 BoundsRange BoundsRange::Shr(const BoundsRange &range, DataType::Type type) in Shr()
200 BoundsRange BoundsRange::AShr(const BoundsRange &range, DataType::Type type) in AShr()
212 BoundsRange BoundsRange::Shl(const BoundsRange &range, DataType::Type type) in Shl()
232 BoundsRange BoundsRange::And(const BoundsRange &range) in And()
392 for (const auto &range : ranges) { in Union() local
676 void BoundsRangeInfo::SetBoundsRange(const BasicBlock *block, const Inst *inst, BoundsRange range) in SetBoundsRange()
722 auto range = bri->FindBoundsRange(block, inst); in IsInstNotNull() local
821 auto range = bri->FindBoundsRange(inst->GetBasicBlock(), x); in VisitAShr() local
959 auto range = BoundsRange(left, right, lenArray); in ProcessCountableLoop() local
[all …]
Dliveness_analyzer.cpp481 auto range = pendingCatchPhiInputs_.equal_range(inst); in AdjustInputsLifetime() local
775 auto &range = liveRanges_[i - 1]; in SplitAt() local
818 for (auto range : liveRanges_) { in MergeSibling() local
853 auto range = *it; in GetFirstIntersectionWith() local
881 for (auto &range : GetRanges()) { in FindRangeCoveringPosition() local
/arkcompiler/toolchain/tooling/backend/
Djs_single_stepper.cpp30 for (const auto &range : stepRanges_) { in InStepRange() local
99 JSPtStepRange range {it->offset, next != table.end() ? next->offset : UINT32_MAX}; in GetStepRanges() local
/arkcompiler/ets_runtime/ecmascript/
Decma_string_table.cpp37 auto range = table_.equal_range(hashCode); in GetString() local
51 auto range = table_.equal_range(hashCode); in GetString() local
64 auto range = table_.equal_range(hashCode); in GetString() local
77 auto range = table_.equal_range(hashcode); in GetString() local
315 auto range = table_.equal_range(hashcode); in CheckStringTableValidity() local
/arkcompiler/runtime_core/static_core/libpandabase/tests/
Dbit_table_test.cpp259 auto range = table.GetRange(0U, 6U); in TEST_F() local
291 auto range = table.GetRangeReversed(4U, 10U); in TEST_F() local
321 auto range = table.GetRange(0U, 0U); in TEST_F() local
332 auto range = table.GetRangeReversed(0U, 0U); in TEST_F() local
/arkcompiler/runtime_core/libpandabase/tests/
Dbit_table_test.cpp253 auto range = table.GetRange(0, 6); in TEST_F() local
286 auto range = table.GetRangeReversed(4, 10); in TEST_F() local
317 auto range = table.GetRange(0, 0); in TEST_F() local
328 auto range = table.GetRangeReversed(0, 0); in TEST_F() local
/arkcompiler/runtime_core/static_core/runtime/mem/
Drem_set.h98 void Iterate(const MemRange &range, const Visitor &visitor) const in Iterate()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_fixshortbranch.cpp41 …uint32 range = ((1U << alignPower) - (((addr - 1) * kInsnSize) & ((1U << alignPower) - 1))) / kIns… in CalculateAlignRange() local
Daarch64_alignment.cpp157 uint32 range = (alignedVal - (((addr - 1) * kInsnSize) & (alignedVal - 1))) / kInsnSize - 1; in GetAlignRange() local
235 uint32 range = GetAlignRange(alignedVal, id); in UpdateInsnId() local
/arkcompiler/runtime_core/static_core/runtime/tests/
Dbitmap_clear_range_test.cpp46 for (const auto &range : ranges) { in TEST_F() local
/arkcompiler/runtime_core/static_core/verification/config/options/
Dmsg_set_parser.h80 auto range = c.stack.back(); in MessageSetParser() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_scope.h98 std::pair<SrcPosition, SrcPosition> range; variable
/arkcompiler/runtime_core/libpandabase/os/
Ddebug_info.cpp143 for (const Dwarf_Ranges &range : ranges) { in IterateDieRanges() local
247 Range range(pc, pc); in GetSrcLocation() local
352 Range range(low_pc, high_pc, cu, function); in AddFunction() local
544 for (const Dwarf_Ranges &range : ranges) { in FindRangeForPc() local
/arkcompiler/runtime_core/static_core/verification/util/
Drange.h169 string to_string(const panda::verifier::Range<Int> &range) // NOLINT(readability-identifier-naming) in to_string()
/arkcompiler/runtime_core/static_core/static_linker/
Dlinker_code_parser_context.cpp88 void CodePatcher::AddRange(std::pair<size_t, size_t> range) in AddRange() argument
157 void CodePatcher::Patch(const std::pair<size_t, size_t> range) in Patch() argument
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dthread_state.cpp23 auto range = breakpointLocations_.equal_range(location); in GetBreakpointsByLocation() local
/arkcompiler/runtime_core/static_core/libpandabase/os/
Ddebug_info.cpp161 for (const Dwarf_Ranges &range : ranges) { in IterateDieRanges() local
331 Range range(pc, pc); in GetSrcLocation() local
436 Range range(lowPc, highPc, cu, function); in AddFunction() local
627 for (const Dwarf_Ranges &range : ranges) { in FindRangeForPc() local
/arkcompiler/runtime_core/compiler/optimizer/analysis/
Dliveness_analyzer.cpp380 auto range = pending_catch_phi_inputs_.equal_range(inst); in AdjustInputsLifetime() local
599 for (auto &range = live_ranges_.back(); range.GetEnd() > ln; range = live_ranges_.back()) { in SplitAt() local
660 for (auto range : GetRanges()) { in GetFirstIntersectionWith() local
Dliveness_analyzer.h214 for (auto range : GetRanges()) { in SplitCover() local
351 for (const auto &range : GetRanges()) { in ToString() local
/arkcompiler/ets_frontend/ets2panda/compiler/base/
Dlexenv.cpp80 auto range = pg->Scope()->AsModuleScope()->LocalExports().equal_range(variable); in StoreLocalExport() local
/arkcompiler/ets_frontend/es2panda/parser/module/
DsourceTextModuleRecord.cpp140 auto range = localExportEntries_.equal_range(importEntry->localName_); in CheckImplicitIndirectExport() local

123