Home
last modified time | relevance | path

Searched refs:p2Align (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lld/COFF/
H A DChunks.h71 uint32_t getAlignment() const { return 1U << p2Align; } in getAlignment()
79 p2Align = llvm::Log2_32(align); in setAlignment()
80 assert(p2Align <= Log2MaxSectionAlignment && in setAlignment()
133 Chunk(Kind k = OtherKind) : chunkKind(k), hasData(true), p2Align(0) {} in chunkKind()
147 uint8_t p2Align : 7;
H A DChunks.cpp747 p2Align = std::max(p2Align, other->p2Align); in replace()
1027 uint8_t p2Align = llvm::Log2_32(c->getAlignment()); in addSection() local
1028 assert(p2Align < std::size(ctx.mergeChunkInstances)); in addSection()
1029 auto *&mc = ctx.mergeChunkInstances[p2Align]; in addSection()