Lines Matching defs:StartAddr
1151 /// \param StartAddr start address of the fused/unfused branch.
1155 static bool mayCrossBoundary(uint64_t StartAddr, uint64_t Size,
1157 uint64_t EndAddr = StartAddr + Size;
1158 return (StartAddr >> Log2(BoundaryAlignment)) !=
1164 /// \param StartAddr start address of the fused/unfused branch.
1168 static bool isAgainstBoundary(uint64_t StartAddr, uint64_t Size,
1170 uint64_t EndAddr = StartAddr + Size;
1176 /// \param StartAddr start address of the fused/unfused branch.
1180 static bool needPadding(uint64_t StartAddr, uint64_t Size,
1182 return mayCrossBoundary(StartAddr, Size, BoundaryAlignment) ||
1183 isAgainstBoundary(StartAddr, Size, BoundaryAlignment);