Searched refs:GetParent (Results 1 - 14 of 14) sorted by relevance

/art/runtime/mirror/
H A Dclass_loader.h35 ClassLoader* GetParent() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
/art/compiler/optimizing/
H A Dlicm.cc44 environment = environment->GetParent()) {
67 for (; environment != nullptr; environment = environment->GetParent()) {
H A Dssa_liveness_analysis.cc223 environment = environment->GetParent()) {
328 if (GetParent() == this && defined_by_ != nullptr) {
348 LiveInterval* existing = GetParent()->GetSiblingAt(position);
493 HInstruction* defined_by = GetParent()->GetDefinedBy();
496 } else if (GetParent()->HasSpillSlot()) {
498 return Location::DoubleStackSlot(GetParent()->GetSpillSlot());
500 return Location::StackSlot(GetParent()->GetSpillSlot());
H A Dregister_allocator.cc486 HInstruction* defined_by = current->GetParent()->GetDefinedBy();
487 if (current->GetParent()->HasSpillSlot()
491 + current->GetParent()->GetSpillSlot() / kVRegSize
1013 << split->GetParent()->GetDefinedBy()->DebugName() << " "
1014 << split->GetParent()->GetDefinedBy()->GetId()
1202 LiveInterval* parent = interval->GetParent();
1495 ? Location::DoubleStackSlot(interval->GetParent()->GetSpillSlot())
1496 : Location::StackSlot(interval->GetParent()->GetSpillSlot()));
1569 if ((current->GetType() == Primitive::kPrimNot) && current->GetParent()->HasSpillSlot()) {
1570 locations->SetStackBit(current->GetParent()
[all...]
H A Dssa_liveness_analysis.h402 LiveInterval* GetParent() const { return parent_; } function in class:art::LiveInterval
744 return GetParent()->is_high_interval_;
748 return !IsHighInterval() && (GetParent()->high_or_low_interval_ != nullptr);
H A Dgraph_visualizer.cc218 environment = environment->GetParent()) {
H A Dnodes.h1144 if (parent->GetParent() != nullptr) {
1145 parent_->SetAndCopyParentChain(allocator, parent->GetParent());
1170 HEnvironment* GetParent() const { return parent_; } function in class:art::HEnvironment
1427 if (environment->GetParent() != nullptr) {
1428 environment_->SetAndCopyParentChain(allocator, environment->GetParent());
1441 if (environment->GetParent() != nullptr) {
1442 environment_->SetAndCopyParentChain(allocator, environment->GetParent());
H A Dgraph_checker.cc415 environment = environment->GetParent()) {
H A Dcode_generator.cc697 DCHECK(environment->GetParent() == nullptr);
H A Dnodes.cc44 environment = environment->GetParent()) {
/art/runtime/
H A Dprofiler.h59 StackTrieNode* GetParent() { return parent_; } function in class:art::StackTrieNode
H A Dprofiler.cc618 StackTrieNode* current = node->GetParent();
622 while (current != nullptr && current->GetParent() != nullptr) {
626 current = current->GetParent();
H A Dcommon_runtime_test.cc487 DCHECK_EQ(class_loader->GetParent()->GetClass(),
H A Dclass_linker.cc1643 Handle<mirror::ClassLoader> h_parent(hs.NewHandle(class_loader->GetParent()));

Completed in 317 milliseconds