Home
last modified time | relevance | path

Searched refs:ByteAlign (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonFixupHwLoops.cpp122 int ByteAlign = (1u << MBB.getAlignment()) - 1; in fixupLoopInstrs() local
123 InstOffset = (InstOffset + ByteAlign) & ~(ByteAlign); in fixupLoopInstrs()
H A DHexagonBranchRelaxation.cpp113 int ByteAlign = (1u << B.getAlignment()) - 1; in computeOffset() local
114 InstOffset = (InstOffset + ByteAlign) & ~(ByteAlign); in computeOffset()
H A DHexagonTargetStreamer.h26 unsigned ByteAlign, in EmitLocalCommonSymbolSorted() argument
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCAsmStreamer.cpp768 unsigned ByteAlign) { in EmitLocalCommonSymbol() argument
773 if (ByteAlign > 1) { in EmitLocalCommonSymbol()
778 OS << ',' << ByteAlign; in EmitLocalCommonSymbol()
781 assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2"); in EmitLocalCommonSymbol()
782 OS << ',' << Log2_32(ByteAlign); in EmitLocalCommonSymbol()