Skip to content

Commit bb479ca

Browse files
committedJul 16, 2019
[RISCV] Avoid overflow when determining number of nops for code align
RISCVAsmBackend::shouldInsertExtraNopBytesForCodeAlign() assumed that the align specified would be greater than or equal to the minimum nop length, but that is not always the case - for example if a user specifies ".align 0" in assembly. Differential Revision: https://reviews.llvm.org/D63274 Patch by Edward Jones. llvm-svn: 366176
1 parent e9ad0cf commit bb479ca

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed
 

‎llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,12 @@ bool RISCVAsmBackend::shouldInsertExtraNopBytesForCodeAlign(
313313
bool HasStdExtC = STI.getFeatureBits()[RISCV::FeatureStdExtC];
314314
unsigned MinNopLen = HasStdExtC ? 2 : 4;
315315

316-
Size = AF.getAlignment() - MinNopLen;
317-
return true;
316+
if (AF.getAlignment() <= MinNopLen) {
317+
return false;
318+
} else {
319+
Size = AF.getAlignment() - MinNopLen;
320+
return true;
321+
}
318322
}
319323

320324
// We need to insert R_RISCV_ALIGN relocation type to indicate the

‎llvm/test/MC/RISCV/align.s

+7
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,13 @@ test:
9090
ret
9191
# NORELAX-RELOC-NOT: R_RISCV
9292
# C-EXT-NORELAX-RELOC-NOT: R_RISCV
93+
# Code alignment of a byte size less than the size of a nop must be treated
94+
# as no alignment. This used to trigger a fatal error with relaxation enabled
95+
# as the calculation to emit the worst-case sequence of nops would overflow.
96+
.p2align 1
97+
add a0, a0, a1
98+
.p2align 0
99+
add a0, a0, a1
93100
# We only need to insert R_RISCV_ALIGN for code section
94101
# when the linker relaxation enabled.
95102
.data

0 commit comments

Comments
 (0)
Please sign in to comment.