mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[Sparc] Implement writeNopData. Emit actual NOP instruction instead of just filling with zeroes.
llvm-svn: 202572
This commit is contained in:
parent
dd81a65959
commit
9242ded302
@ -200,9 +200,14 @@ namespace {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool writeNopData(uint64_t Count, MCObjectWriter *OW) const {
|
bool writeNopData(uint64_t Count, MCObjectWriter *OW) const {
|
||||||
// FIXME: Zero fill for now.
|
// Cannot emit NOP with size not multiple of 32 bits.
|
||||||
for (uint64_t i = 0; i != Count; ++i)
|
if (Count % 4 != 0)
|
||||||
OW->Write8(0);
|
return false;
|
||||||
|
|
||||||
|
uint64_t NumNops = Count / 4;
|
||||||
|
for (uint64_t i = 0; i != NumNops; ++i)
|
||||||
|
OW->Write32(0x01000000);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
11
test/MC/Sparc/sparc-nop-data.s
Normal file
11
test/MC/Sparc/sparc-nop-data.s
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
! RUN: llvm-mc %s -arch=sparc -filetype=obj | llvm-readobj -s -sd | FileCheck %s
|
||||||
|
! RUN: llvm-mc %s -arch=sparcv9 -filetype=obj | llvm-readobj -s -sd | FileCheck %s
|
||||||
|
|
||||||
|
! CHECK: 0000: BA1F401D 01000000 01000000 01000000
|
||||||
|
! CHECK: 0010: BA1F401D
|
||||||
|
|
||||||
|
foo:
|
||||||
|
xor %i5, %i5, %i5
|
||||||
|
.align 16
|
||||||
|
xor %i5, %i5, %i5
|
||||||
|
|
Loading…
Reference in New Issue
Block a user