Lines Matching defs:ML
433 MachineLoc ML = GetLocForOp(Op);
434 auto It = find(Locs, ML);
436 Locs.push_back(ML);
439 // ML duplicates an element in Locs; replace references to Op
523 for (MachineLoc &ML : VL.Locs)
524 if (ML == OldML) {
525 ML.Kind = MachineLocKind::RegisterKind;
526 ML.Value.RegNo = NewReg;
537 for (MachineLoc &ML : VL.Locs)
538 if (ML == OldML) {
539 ML.Kind = MachineLocKind::SpillLocKind;
540 ML.Value.SpillLocation = {SpillBase, SpillOffset};
669 return any_of(Locs, [](VarLoc::MachineLoc ML) {
670 return ML.Kind == VarLoc::MachineLocKind::SpillLocKind;
694 return any_of(Locs, [](VarLoc::MachineLoc ML) {
695 return ML.Kind == VarLoc::MachineLocKind::WasmLocKind;