OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LogAlign
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Target/AArch64/
AArch64BranchRelaxation.cpp
74
/// Compute the offset immediately following this block. If
LogAlign
is
77
unsigned postOffset(unsigned
LogAlign
= 0) const {
79
unsigned Align = 1 <<
LogAlign
;
211
unsigned
LogAlign
= MBB.getAlignment();
212
BlockInfo[Num].Offset = BlockInfo[PrevNum].postOffset(
LogAlign
);
/external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp
65
/// @param
LogAlign
log2(alignment)
67
static inline unsigned UnknownPadding(unsigned
LogAlign
, unsigned KnownBits) {
68
if (KnownBits <
LogAlign
)
69
return (1u <<
LogAlign
) - (1u << KnownBits);
136
/// Compute the offset immediately following this block. If
LogAlign
is
139
unsigned postOffset(unsigned
LogAlign
= 0) const {
141
unsigned LA = std::max(unsigned(PostAlign),
LogAlign
);
152
/// If
LogAlign
is given, also consider the alignment of the next block.
153
unsigned postKnownBits(unsigned
LogAlign
= 0) const {
154
return std::max(std::max(unsigned(PostAlign),
LogAlign
),
[
all
...]
/external/llvm/lib/Target/Mips/
MipsConstantIslandPass.cpp
230
// FIXME: ignore
LogAlign
for this patch
232
unsigned postOffset(unsigned
LogAlign
= 0) const {
574
unsigned
LogAlign
= Log2_32(Align);
575
MachineBasicBlock::iterator InsAt = InsPoint[
LogAlign
];
585
for (unsigned a =
LogAlign
+ 1; a <= MaxAlign; ++a)
[
all
...]
Completed in 1390 milliseconds