| 1287 | } |
| 1288 | |
| 1289 | void IRContext::UpdateDefUse(Instruction* inst) { |
| 1290 | if (AreAnalysesValid(kAnalysisDefUse)) { |
| 1291 | get_def_use_mgr()->UpdateDefUse(inst); |
| 1292 | } |
| 1293 | } |
| 1294 | |
| 1295 | void IRContext::BuildIdToNameMap() { |
| 1296 | id_to_name_ = MakeUnique<std::multimap<uint32_t, Instruction*>>(); |
no outgoing calls