Home
last modified time | relevance | path

Searched refs:bss_roots_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Doat_file.cc366 bss_roots_ = const_cast<uint8_t*>(FindDynamicSymbolAddress("oatbssroots", &symbol_error_msg)); in ComputeFields()
546 !IsAlignedParam(bss_roots_, static_cast<size_t>(pointer_size)) || in Setup()
553 bss_roots_, in Setup()
559 (bss_roots_ != nullptr && (bss_roots_ < bss_begin_ || bss_roots_ > bss_end_)) || in Setup()
560 (bss_methods_ != nullptr && bss_roots_ != nullptr && bss_methods_ > bss_roots_)) { in Setup()
566 bss_roots_, in Setup()
572 (bss_methods_ != nullptr) ? bss_methods_ : bss_roots_; // May be null. in Setup()
1548 bss_roots_(nullptr), in OatFile()
1602 reinterpret_cast<ArtMethod**>(bss_roots_ != nullptr ? bss_roots_ : bss_end_); in GetBssMethods()
1610 if (bss_roots_ != nullptr) { in GetBssGcRoots()
[all …]
Doat_file.h301 return (bss_roots_ != nullptr) ? bss_roots_ - BssBegin() : BssSize(); in BssRootsOffset()
376 uint8_t* bss_roots_; variable