Lines Matching defs:Size
50 /// BasicBlockInfo - Information about the offset and size of a single
59 /// Size - Size of the basic block in bytes. If the block contains
62 /// The size does not include any alignment padding whether from the
64 unsigned Size;
66 BasicBlockInfo() : Offset(0), Size(0) {}
72 unsigned PO = Offset + Size;
121 /// print block size and offset information - debugging
126 << format("size=%#x\n", BBI.Size);
153 // First thing, compute the size of all basic blocks, and see if the function
155 // alignment assumptions, as we don't know for sure the size of any
164 /// computeBlockSize - Compute the size for MBB.
167 unsigned Size = 0;
169 Size += TII->GetInstSizeInBytes(&MI);
170 BlockInfo[MBB.getNumber()].Size = Size;
236 // block, it cannot contain a tablejump. The size includes
415 BlockInfo[MBB->getNumber()].Size -= delta;
440 BlockInfo[MBB->getNumber()].Size += TII->GetInstSizeInBytes(&MBB->back());
442 BlockInfo[MBB->getNumber()].Size += TII->GetInstSizeInBytes(&MBB->back());
445 BlockInfo[MI->getParent()->getNumber()].Size -= TII->GetInstSizeInBytes(MI);