Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp105 SZFrameObjVec SortingObjects(MFI.getObjectIndexEnd()); in orderFrameObjects() local
107 SortingObjects[Obj].IsValid = true; in orderFrameObjects()
108 SortingObjects[Obj].ObjectIndex = Obj; in orderFrameObjects()
109 SortingObjects[Obj].ObjectSize = MFI.getObjectSize(Obj); in orderFrameObjects()
124 SortingObjects[Index].IsValid) { in orderFrameObjects()
126 SortingObjects[Index].DPairCount++; in orderFrameObjects()
128 SortingObjects[Index].D12Count++; in orderFrameObjects()
152 std::stable_sort(SortingObjects.begin(), SortingObjects.end(), CmpD12); in orderFrameObjects()
157 for (auto &Obj : SortingObjects) { in orderFrameObjects()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp3808 std::vector<X86FrameSortingObject> SortingObjects(MFI.getObjectIndexEnd()); in orderFrameObjects() local
3813 SortingObjects[Obj].IsValid = true; in orderFrameObjects()
3814 SortingObjects[Obj].ObjectIndex = Obj; in orderFrameObjects()
3815 SortingObjects[Obj].ObjectAlignment = MFI.getObjectAlign(Obj); in orderFrameObjects()
3820 SortingObjects[Obj].ObjectSize = 4; in orderFrameObjects()
3822 SortingObjects[Obj].ObjectSize = ObjectSize; in orderFrameObjects()
3838 SortingObjects[Index].IsValid) in orderFrameObjects()
3839 SortingObjects[Index].ObjectNumUses++; in orderFrameObjects()
3846 llvm::stable_sort(SortingObjects, X86FrameSortingComparator()); in orderFrameObjects()
3854 for (auto &Obj : SortingObjects) { in orderFrameObjects()