/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
D | condition_chain.h | 51 : begin_(begin), in ConditionChain() 60 return *begin_; in GetFirstBlock() 65 return *begin_; in GetFirstBlock() 70 return *(begin_ + size_ - 1); in GetLastBlock() 75 return *(begin_ + size_ - 1); in GetLastBlock() 80 return begin_; in GetBegin() 85 return begin_ + size_; in GetEnd() 95 return begin_; in GetBegin() 100 return begin_ + size_; in GetEnd() 105 auto last = begin_ + size_; in Contains() [all …]
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
D | labelPair.h | 25 LabelPair(Label *begin, Label *end) : begin_(begin), end_(end) {} in LabelPair() 26 explicit LabelPair(LabelPair *labelPair) : begin_(labelPair->begin_), end_(labelPair->end_) {} in LabelPair() 30 return begin_; in Begin() 40 Label *begin_ {};
|
D | labelTarget.h | 59 return begin_; in BreakTarget() 64 begin_ = label; in SetBreakTarget()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | range.h | 24 Range(It begin, It end) : begin_(begin), end_(end) {} in Range() 28 return begin_; in begin() 38 return std::distance(begin_, end_); in size() 42 It begin_;
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
D | range.h | 23 Range(It begin, It end) : begin_(begin), end_(end) {} in Range() 28 return begin_; in begin() 40 return std::distance(begin_, end_); in size() 50 It begin_;
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | area.h | 24 : begin_(begin), end_(begin + capacity), next_(nullptr), prev_(nullptr) in Area() 33 return begin_; in GetBegin() 53 return end_ - begin_; in GetSize() 69 uintptr_t begin_; variable
|
D | mark_stack.h | 35 return begin_; in GetBegin() 40 if (UNLIKELY(top_ <= reinterpret_cast<uintptr_t *>(begin_))) { in PopBackChecked() 71 return top_ == reinterpret_cast<uintptr_t *>(begin_); in IsEmpty() 76 begin_ = begin; in ResetBegin() 83 begin_ = begin; in ResetTop() 91 uintptr_t begin_ {0}; 126 if (UNLIKELY(top_ <= reinterpret_cast<uintptr_t *>(begin_))) { in PopBack()
|
D | region.h | 147 return packedData_.begin_; in GetBegin() 167 return end_ - packedData_.begin_; in GetSize() 388 return address >= packedData_.begin_ && address <= end_; in InRange() 399 return (top == 0) ? (highWaterMark_ - packedData_.begin_) : (top - packedData_.begin_); 569 … begin_ = AlignUp(begin + bitsetSize_, static_cast<size_t>(MemAlignment::MEM_ALIGN_OBJECT)); in PackedData() 571 ASAN_POISON_MEMORY_REGION(reinterpret_cast<void *>(begin_), (end - begin_)); in PackedData() 597 alignas(EAS) uintptr_t begin_ {0};
|
D | allocator-inl.h | 26 BumpPointerAllocator::BumpPointerAllocator(uintptr_t begin, uintptr_t end) : begin_(begin), top_(be… in BumpPointerAllocator() 30 begin_ = 0; in Reset() 37 begin_ = begin; in Reset() 45 begin_ = begin; in Reset()
|
D | allocator.h | 77 uintptr_t begin_ {0};
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | labelPair.h | 25 LabelPair(Label *begin, Label *end) : begin_(begin), end_(end) {} in LabelPair() 29 return begin_; in Begin() 38 Label *begin_ {};
|
D | labelTarget.h | 60 return begin_; in BreakTarget() 65 begin_ = label; in SetBreakTarget()
|
/arkcompiler/runtime_core/compiler/optimizer/analysis/ |
D | liveness_analyzer.h | 35 LiveRange(LifeNumber begin, LifeNumber end) : begin_(begin), end_(end) {} in LiveRange() 44 return (begin_ <= other.begin_ && other.end_ <= end_); in Contains() 49 return (begin_ <= number && number <= end_); in Contains() 54 return begin_ == other.begin_ && end_ == other.end_; 59 begin_ = begin; in SetBegin() 63 return begin_; in GetBegin() 78 ss << "[" << begin_ << ":" << end_ << ")"; in ToString() 83 LifeNumber begin_ = 0;
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
D | liveness_analyzer.h | 36 LiveRange(LifeNumber begin, LifeNumber end) : begin_(begin), end_(end) {} in LiveRange() 45 return (begin_ <= other.begin_ && other.end_ <= end_); in Contains() 50 return (begin_ <= number && number <= end_); in Contains() 55 return begin_ == other.begin_ && end_ == other.end_; 60 begin_ = begin; in SetBegin() 64 return begin_; in GetBegin() 79 ss << "[" << begin_ << ":" << end_ << ")"; in ToString() 84 LifeNumber begin_ = 0;
|
D | live_registers.h | 31 : minValue_(minValue), maxValue_(maxValue), begin_(begin), end_(end) in LifeIntervalsTreeNode() 56 return begin_; in GetBegin() 89 LifeIntervalsIt begin_; variable
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
D | bitmap_test_base.h | 37 : bitmap_(bitmapArg), begin_(beginArg), end_(endArg) in BitmapVerify() 43 EXPECT_TRUE(obj >= begin_); in operator() 52 void *begin_; variable
|
/arkcompiler/runtime_core/static_core/runtime/mem/ |
D | region_space.h | 59 : space_(space), begin_(begin), end_(end), top_(begin) in Region() 77 return begin_; in Begin() 87 return !(end <= begin_ || end_ <= begin); in Intersect() 220 ASSERT((tlabVector_ == nullptr) || (top_ == begin_)); in IsTLAB() 264 return ToUintPtr(object) >= begin_ && ToUintPtr(object) < end_; in IsInRange() 271 inRange = (ToUintPtr(object) >= begin_ && ToUintPtr(object) < top_); in IsInAllocRange() 385 uintptr_t begin_; variable
|
D | region_space.cpp | 26 return top_ - begin_; in GetAllocatedBytes()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot_processor.cpp | 1091 writer.write(reinterpret_cast<char *>(current->packedData_.begin_), in WriteSpaceObjectToFile() 1092 … ToUintPtr(current) + DEFAULT_REGION_SIZE - current->packedData_.begin_); in WriteSpaceObjectToFile() 1099 writer.write(reinterpret_cast<char *>(lastRegion->packedData_.begin_), in WriteSpaceObjectToFile() 1100 lastRegion->highWaterMark_ - lastRegion->packedData_.begin_); in WriteSpaceObjectToFile() 1138 size_t lastRegionSize = lastRegion->highWaterMark_ - lastRegion->packedData_.begin_; in StatisticsSpaceObjectSize() 1250 liveObjectSize = fileRegion->highWaterMark_ - fileRegion->packedData_.begin_; in DeserializeSpaceObject() 1251 ASSERT(liveObjectSize <= region->end_ - region->packedData_.begin_); in DeserializeSpaceObject() 1257 … ASAN_UNPOISON_MEMORY_REGION(reinterpret_cast<void *>(region->packedData_.begin_), liveObjectSize); in DeserializeSpaceObject() 1258 if (memcpy_s(ToVoidPtr(region->packedData_.begin_), in DeserializeSpaceObject() 1268 region->highWaterMark_ = region->packedData_.begin_ + liveObjectSize; in DeserializeSpaceObject() [all …]
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_serializer.h | 187 begin_(data), position_(data), end_(data + size), engine_(hint) in thread_() 233 uint8_t *begin_ = nullptr; variable
|
D | js_serializer.cpp | 1103 ECMA_BYTRACE_NAME(HITRACE_TAG_ARK, "Deserialize dataSize: " + std::to_string(end_ - begin_)); in Deserialize()
|