Home | History | Annotate | Download | only in Mips

Lines Matching defs:Size

54     uint64_t Size, Address;
58 MBBInfo() : Size(0), HasLongBranch(false), Br(nullptr) {}
168 MBBInfos.resize(MF->size());
172 for (unsigned I = 0, E = MBBInfos.size(); I < E; ++I) {
175 // Compute size of MBB.
178 MBBInfos[I].Size += TII->GetInstSizeInBytes(&*MI);
201 Offset += MBBInfos[N].Size;
208 Offset += MBBInfos[N].Size;
414 assert(LongBrMBB->size() + BalTgtMBB->size() == LongBranchSeqSize);
427 assert(LongBrMBB->size() == LongBranchSeqSize);
500 I->Size += LongBranchSeqSize * 4;
513 for (I = MBBInfos.begin(); I != E; Address += I->Size, ++I)