Searched refs:condition_ (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | barrier.cc | 31 condition_(new ConditionVariable("GC barrier condition", *lock_)), in Barrier() 66 condition_->WaitHoldingLocks(self); in Increment() 68 condition_->Wait(self); in Increment() 81 timed_out = condition_->TimedWait(self, timeout_ms, timeout_ns); in Increment() 102 condition_->Broadcast(self); in SetCountLocked()
|
D | barrier.h | 90 std::unique_ptr<ConditionVariable> condition_ GUARDED_BY(GetLock());
|
/art/runtime/gc/ |
D | reference_processor.cc | 45 condition_("reference processor condition", *Locks::reference_processor_lock_) , in ReferenceProcessor() 75 condition_.Broadcast(self); in DisableSlowPath() 86 condition_.Broadcast(self); in BroadcastForSlowPath() 135 condition_.WaitHoldingLocks(self); in GetReferent() 149 condition_.Broadcast(self); in StopPreservingReferences() 343 condition_.WaitHoldingLocks(self); in WaitUntilDoneProcessingReferences()
|
D | reference_processor.h | 104 ConditionVariable condition_ GUARDED_BY(Locks::reference_processor_lock_);
|
/art/compiler/optimizing/ |
D | induction_var_range_test.cc | 106 condition_ = new (GetAllocator()) HLessThan(phi, upper); // i < u in BuildLoop() 108 condition_ = new (GetAllocator()) HGreaterThan(phi, upper); // i > u in BuildLoop() 110 loop_header_->AddInstruction(condition_); in BuildLoop() 111 loop_header_->AddInstruction(new (GetAllocator()) HIf(condition_)); in BuildLoop() 315 HInstruction* condition_; member in art::InductionVarRangeTest 762 HInstruction* phi = condition_->InputAt(0); in TEST_F() 766 range_.GetInductionRange(condition_, phi, x_, &v1, &v2, &needs_finite_test); in TEST_F() 814 HInstruction* phi = condition_->InputAt(0); in TEST_F() 818 range_.GetInductionRange(condition_, phi, x_, &v1, &v2, &needs_finite_test); in TEST_F() 873 HInstruction* phi = condition_->InputAt(0); in TEST_F() [all …]
|
/art/compiler/utils/mips64/ |
D | assembler_mips64.cc | 2372 switch (condition_) { in InitializeType() 2391 type_ = (condition_ == kUncond) ? kBareUncondBranch : kBareCondBranch; in InitializeType() 2401 switch (condition_) { in InitializeType() 2412 LOG(FATAL) << "Unexpected R2 branch condition " << condition_; in InitializeType() 2455 condition_(kUncond) { in Branch() 2473 condition_(condition) { in Branch() 2506 condition_ = kUncond; in Branch() 2517 condition_(kUncond) { in Branch() 2568 return condition_; in GetCondition() 2670 (r6_cond_branch && (condition_ == kCondEQZ || condition_ == kCondNEZ)) in GetOffsetSize()
|
D | assembler_mips64.h | 1646 BranchCondition condition_; // Condition for conditional branches. variable
|
/art/compiler/utils/mips/ |
D | assembler_mips.cc | 2934 switch (condition_) { in InitializeType() 2953 type_ = (condition_ == kUncond) ? kR6BareUncondBranch : kR6BareCondBranch; in InitializeType() 2975 switch (condition_) { in InitializeType() 2989 type_ = (condition_ == kUncond) ? kBareUncondBranch : kBareCondBranch; in InitializeType() 3036 condition_(kUncond), in Branch() 3056 condition_(condition), in Branch() 3099 condition_ = kUncond; in Branch() 3114 condition_(kUncond), in Branch() 3170 return condition_; in GetCondition() 3314 (r6_cond_branch && (condition_ == kCondEQZ || condition_ == kCondNEZ)) in GetOffsetSize() [all …]
|
D | assembler_mips.h | 1669 BranchCondition condition_; // Condition for conditional branches. variable
|