Home
last modified time | relevance | path

Searched refs:PhiInstruction (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/compiler/
Dinstruction.cc617 PhiInstruction::PhiInstruction(Zone* zone, int virtual_register, in PhiInstruction() function in v8::internal::compiler::PhiInstruction
625 void PhiInstruction::SetInput(size_t offset, int virtual_register) { in SetInput()
630 void PhiInstruction::RenameInput(size_t offset, int virtual_register) { in RenameInput()
719 for (const PhiInstruction* phi : block->phis()) { in operator <<()
Dregister-allocator.h722 PhiMapValue(PhiInstruction* phi, const InstructionBlock* block, Zone* zone);
724 const PhiInstruction* phi() const { return phi_; } in phi()
739 PhiInstruction* const phi_;
826 PhiInstruction* phi);
Dinstruction.h1346 class V8_EXPORT_PRIVATE PhiInstruction final
1351 PhiInstruction(Zone* zone, int virtual_register, size_t input_count); in NON_EXPORTED_BASE()
1421 typedef ZoneVector<PhiInstruction*> PhiInstructions; in NON_EXPORTED_BASE()
1423 PhiInstruction* PhiAt(size_t i) const { return phis_[i]; } in NON_EXPORTED_BASE()
1424 void AddPhi(PhiInstruction* phi) { phis_.push_back(phi); } in NON_EXPORTED_BASE()
Dregister-allocator-verifier.cc409 const PhiInstruction* phi = nullptr; in ValidatePendingAssessment()
410 for (const PhiInstruction* candidate : origin->phis()) { in ValidatePendingAssessment()
Dregister-allocator.cc1328 RegisterAllocationData::PhiMapValue::PhiMapValue(PhiInstruction* phi, in PhiMapValue()
1446 const InstructionBlock* block, PhiInstruction* phi) { in InitializePhiMap()
1817 for (PhiInstruction* phi : block->phis()) { in ResolvePhis()
1875 for (PhiInstruction* phi : successor->phis()) { in ComputeLiveOut()
2242 for (PhiInstruction* phi : block->phis()) { in ProcessPhis()
3357 const PhiInstruction* phi = phi_map_value->phi(); in TryReuseSpillForPhi()
Dinstruction-selector.h504 void UpdateRenamesInPhi(PhiInstruction* phi);
Dinstruction-selector.cc305 void InstructionSelector::UpdateRenamesInPhi(PhiInstruction* phi) { in UpdateRenamesInPhi()
2617 PhiInstruction* phi = new (instruction_zone()) in VisitPhi()
2618 PhiInstruction(instruction_zone(), GetVirtualRegister(node), in VisitPhi()