Searched refs:worklist_ (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/heap/ |
D | worklist.h | 33 : worklist_(worklist), task_id_(task_id) {} in View() 36 bool Push(EntryType entry) { return worklist_->Push(task_id_, entry); } in Push() 39 bool Pop(EntryType* entry) { return worklist_->Pop(task_id_, entry); } in Pop() 42 bool IsLocalEmpty() { return worklist_->IsLocalEmpty(task_id_); } in IsLocalEmpty() 46 bool IsEmpty() { return worklist_->IsEmpty(); } in IsEmpty() 48 bool IsGlobalPoolEmpty() { return worklist_->IsGlobalPoolEmpty(); } in IsGlobalPoolEmpty() 51 return worklist_->LocalPushSegmentSize(task_id_); in LocalPushSegmentSize() 55 Worklist<EntryType, SEGMENT_SIZE>* worklist_;
|
D | mark-compact.h | 1006 inline MarkingWorklist* worklist() { return worklist_; } in worklist() 1033 MarkingWorklist* worklist_; variable
|
D | mark-compact.cc | 3565 : worklist_(global_worklist, task_id), marking_state_(marking_state) {} in YoungGenerationMarkingVisitor() 3606 CHECK(worklist_.Push(object)); in MarkObjectViaMarkingWorklist() 3610 MinorMarkCompactCollector::MarkingWorklist::View worklist_; member in v8::internal::YoungGenerationMarkingVisitor 3620 worklist_(new MinorMarkCompactCollector::MarkingWorklist()), in MinorMarkCompactCollector() 3622 marking_state(), worklist_, kMainMarker)), in MinorMarkCompactCollector() 3630 delete worklist_; in ~MinorMarkCompactCollector()
|
D | mark-compact-inl.h | 373 worklist_->Push(kMainThread, obj); in MarkRootObject()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | multi_output_fusion.cc | 102 worklist_.emplace(instruction, candidate, profit); in Run() 212 worklist_.emplace(fusion, it.first, it.second); in Update() 289 while (!worklist_.empty()) { in Perform() 294 ToBeFused candidate = worklist_.top(); in Perform() 295 worklist_.pop(); in Perform()
|
D | multi_output_fusion.h | 148 std::priority_queue<ToBeFused> worklist_; variable
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | aggressive_dead_code_elim_pass.h | 80 worklist_.push(inst); in AddToWorklist() 158 std::queue<Instruction*> worklist_; variable
|
D | aggressive_dead_code_elim_pass.cpp | 420 while (!worklist_.empty()) { in AggressiveDCE() 421 Instruction* liveInst = worklist_.front(); in AggressiveDCE() 492 worklist_.pop(); in AggressiveDCE()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | aggressive_dead_code_elim_pass.h | 82 worklist_.push(inst); in AddToWorklist() 160 std::queue<Instruction*> worklist_; variable
|
D | aggressive_dead_code_elim_pass.cpp | 420 while (!worklist_.empty()) { in AggressiveDCE() 421 Instruction* liveInst = worklist_.front(); in AggressiveDCE() 492 worklist_.pop(); in AggressiveDCE()
|