Lines Matching defs:StartAddr
1135 /// \param StartAddr start address of the fused/unfused branch.
1139 static bool mayCrossBoundary(uint64_t StartAddr, uint64_t Size,
1141 uint64_t EndAddr = StartAddr + Size;
1142 return (StartAddr >> Log2(BoundaryAlignment)) !=
1148 /// \param StartAddr start address of the fused/unfused branch.
1152 static bool isAgainstBoundary(uint64_t StartAddr, uint64_t Size,
1154 uint64_t EndAddr = StartAddr + Size;
1160 /// \param StartAddr start address of the fused/unfused branch.
1164 static bool needPadding(uint64_t StartAddr, uint64_t Size,
1166 return mayCrossBoundary(StartAddr, Size, BoundaryAlignment) ||
1167 isAgainstBoundary(StartAddr, Size, BoundaryAlignment);