Searched defs:SlotRemap (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/CodeGen/
H A DStackColoring.cpp161 void remapInstructions(DenseMap<int, int> &SlotRemap);
173 void expungeSlotMap(DenseMap<int, int> &SlotRemap, unsigned NumSlots);
455 void StackColoring::remapInstructions(DenseMap<int, int> &SlotRemap) { argument
465 if (SlotRemap.count(VI.Slot)) {
467 VI.Slot = SlotRemap[VI.Slot];
474 for (const std::pair<int, int> &SI : SlotRemap) {
544 if (!SlotRemap.count(FromSlot))
567 int ToSlot = SlotRemap[FromSlot];
620 void StackColoring::expungeSlotMap(DenseMap<int, int> &SlotRemap, argument
625 if (SlotRemap
704 DenseMap<int, int> SlotRemap; local
[all...]

Completed in 64 milliseconds