Home
last modified time | relevance | path

Searched refs:slots_ (Results 1 - 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/mem/refstorage/
H A Dref_block.cpp21 slots_ = START_VALUE; in RefBlock()
27 slots_ = START_VALUE; in Reset()
50 slots_ |= static_cast<uint64_t>(1U) << index; in Remove()
119 auto res = Ffs(slots_) - 1; in GetFreeIndex()
135 slots_ &= ~(static_cast<uint64_t>(1U) << index); in Set()
145 return ((slots_ >> index) & 1U) == 0; in IsBusyIndex()
H A Dref_block.h85 SlotBitMap slots_ {START_VALUE};
103 return slots_ == FINAL_VALUE; in IsFull()
108 return slots_ == START_VALUE; in IsEmpty()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_alloc_stat.h35 return slots_; in GetSlotCount()
45 size_t slots_ = 0; member in panda::compiler::RegAllocStat
H A Dreg_alloc_stat.cpp43 slots_ = static_cast<size_t>(std::count(used_slots.begin(), used_slots.end(), true)); in RegAllocStat()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_alloc_stat.h35 return slots_; in GetSlotCount()
45 size_t slots_ = 0; member in ark::compiler::RegAllocStat
H A Dreg_alloc_stat.cpp44 slots_ = static_cast<size_t>(std::count(usedSlots.begin(), usedSlots.end(), true)); in RegAllocStat()
/arkcompiler/runtime_core/static_core/runtime/
H A Dcompiler.cpp830 if (slots_.find(method) == slots_.end()) { in AddTableSlot()
831 slots_[method][key] = 0; in AddTableSlot()
834 auto &table = slots_.at(method); in AddTableSlot()
844 ASSERT(slots_.find(method) != slots_.end()); in GetTableSlot()
845 auto &table = slots_.at(method); in GetTableSlot()
H A Dcompiler.h80 PandaMap<RuntimeInterface::MethodPtr, PandaMap<std::pair<uint32_t, SlotKind>, uintptr_t>> slots_; member in ark::UnresolvedTypesWrapper

Completed in 5 milliseconds