Searched refs:PhiInstruction (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/compiler/ |
D | instruction.cc | 617 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 <<()
|
D | register-allocator.h | 722 PhiMapValue(PhiInstruction* phi, const InstructionBlock* block, Zone* zone); 724 const PhiInstruction* phi() const { return phi_; } in phi() 739 PhiInstruction* const phi_; 826 PhiInstruction* phi);
|
D | instruction.h | 1346 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()
|
D | register-allocator-verifier.cc | 409 const PhiInstruction* phi = nullptr; in ValidatePendingAssessment() 410 for (const PhiInstruction* candidate : origin->phis()) { in ValidatePendingAssessment()
|
D | register-allocator.cc | 1328 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()
|
D | instruction-selector.h | 504 void UpdateRenamesInPhi(PhiInstruction* phi);
|
D | instruction-selector.cc | 305 void InstructionSelector::UpdateRenamesInPhi(PhiInstruction* phi) { in UpdateRenamesInPhi() 2617 PhiInstruction* phi = new (instruction_zone()) in VisitPhi() 2618 PhiInstruction(instruction_zone(), GetVirtualRegister(node), in VisitPhi()
|