Home
last modified time | relevance | path

Searched refs:phis_ (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/maglev/
Dmaglev-interpreter-frame-state.h349 bool has_phi() const { return !phis_.is_empty(); } in has_phi()
350 Phi::List* phis() { return &phis_; } in phis()
354 DCHECK(phis_.is_empty()); in SetPhis()
355 phis_.MoveTail(&phis, phis.begin()); in SetPhis()
448 phis_.Add(result); in MergeValue()
476 phis_.Add(result); in NewLoopPhi()
482 Phi::List phis_; variable
/third_party/node/deps/v8/src/compiler/backend/
Dinstruction.h1584 const PhiInstructions& phis() const { return phis_; } in NON_EXPORTED_BASE()
1585 PhiInstruction* PhiAt(size_t i) const { return phis_[i]; } in NON_EXPORTED_BASE()
1586 void AddPhi(PhiInstruction* phi) { phis_.push_back(phi); } in NON_EXPORTED_BASE()
1608 PhiInstructions phis_; in NON_EXPORTED_BASE() local
Dinstruction.cc621 phis_(zone), in InstructionBlock()