Searched refs:ensure_safety (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | nodes.cc | 1049 bool ensure_safety) { in Remove() argument 1053 if (ensure_safety) { in Remove() 1060 void HBasicBlock::RemoveInstruction(HInstruction* instruction, bool ensure_safety) { in RemoveInstruction() argument 1062 Remove(&instructions_, this, instruction, ensure_safety); in RemoveInstruction() 1065 void HBasicBlock::RemovePhi(HPhi* phi, bool ensure_safety) { in RemovePhi() argument 1066 Remove(&phis_, this, phi, ensure_safety); in RemovePhi() 1069 void HBasicBlock::RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety) { in RemoveInstructionOrPhi() argument 1071 RemovePhi(instruction->AsPhi(), ensure_safety); in RemoveInstructionOrPhi() 1073 RemoveInstruction(instruction, ensure_safety); in RemoveInstructionOrPhi()
|
D | nodes.h | 1304 void RemoveInstruction(HInstruction* instruction, bool ensure_safety = true); 1305 void RemovePhi(HPhi* phi, bool ensure_safety = true); 1306 void RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety = true);
|