Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackColoring.cpp497 void remapInstructions(DenseMap<int, int> &SlotRemap);
509 void expungeSlotMap(DenseMap<int, int> &SlotRemap, unsigned NumSlots);
902 void StackColoring::remapInstructions(DenseMap<int, int> &SlotRemap) { in remapInstructions() argument
912 if (SlotRemap.count(Slot)) { in remapInstructions()
915 VI.updateStackSlot(SlotRemap[Slot]); in remapInstructions()
926 for (const std::pair<int, int> &SI : SlotRemap) { in remapInstructions()
1019 if (!SlotRemap.count(FromSlot)) in remapInstructions()
1042 int ToSlot = SlotRemap[FromSlot]; in remapInstructions()
1056 auto To = SlotRemap.find(FI); in remapInstructions()
1057 if (To != SlotRemap.end()) in remapInstructions()
[all …]