Searched refs:LogAlign (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/
H A DAArch64BranchFixupPass.cpp34 /// @param LogAlign log2(alignment)
36 static inline unsigned UnknownPadding(unsigned LogAlign, unsigned KnownBits) { argument
37 if (KnownBits < LogAlign)
38 return (1u << LogAlign) - (1u << KnownBits);
94 /// Compute the offset immediately following this block. If LogAlign is
97 unsigned postOffset(unsigned LogAlign = 0) const {
99 if (!LogAlign)
102 return PO + UnknownPadding(LogAlign, internalKnownBits());
109 /// If LogAlign is given, also consider the alignment of the next block.
110 unsigned postKnownBits(unsigned LogAlign
414 unsigned LogAlign = MF->getBlockNumbered(i)->getAlignment(); local
[all...]
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp64 /// @param LogAlign log2(alignment)
66 static inline unsigned UnknownPadding(unsigned LogAlign, unsigned KnownBits) { argument
67 if (KnownBits < LogAlign)
68 return (1u << LogAlign) - (1u << KnownBits);
135 /// Compute the offset immediately following this block. If LogAlign is
138 unsigned postOffset(unsigned LogAlign = 0) const {
140 unsigned LA = std::max(unsigned(PostAlign), LogAlign);
151 /// If LogAlign is given, also consider the alignment of the next block.
152 unsigned postKnownBits(unsigned LogAlign = 0) const {
153 return std::max(std::max(unsigned(PostAlign), LogAlign),
542 unsigned LogAlign = Log2_32(Align); local
1076 unsigned LogAlign = MF->getBlockNumbered(i)->getAlignment(); local
1288 unsigned LogAlign = MF->getAlignment(); local
[all...]
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp122 // FIXME: ignore LogAlign for this patch
124 unsigned postOffset(unsigned LogAlign = 0) const {
481 unsigned LogAlign = Log2_32(Align); local
482 MachineBasicBlock::iterator InsAt = InsPoint[LogAlign];
492 for (unsigned a = LogAlign + 1; a <= MaxAlign; ++a)
1145 // LogAlign which is the largest possible alignment in the function.
1146 unsigned LogAlign = MF->getAlignment(); local
1147 assert(LogAlign >= CPELogAlign && "Over-aligned constant pool entry");
1158 << " la=" << LogAlign << '\n');
1184 BaseInsertOffset -= 1u << LogAlign;
[all...]

Completed in 36 milliseconds