forked from OSchip/llvm-project
[ELF] elfiamcu triple should imply e_machine == EM_IAMCU
Differential Revision: http://reviews.llvm.org/D14109 llvm-svn: 252043
This commit is contained in:
parent
b34de72269
commit
a3b79dd783
|
@ -825,6 +825,8 @@ StringRef ELFObjectFile<ELFT>::getFileFormatName() const {
|
|||
switch (EF.getHeader()->e_machine) {
|
||||
case ELF::EM_386:
|
||||
return "ELF32-i386";
|
||||
case ELF::EM_IAMCU:
|
||||
return "ELF32-iamcu";
|
||||
case ELF::EM_X86_64:
|
||||
return "ELF32-x86-64";
|
||||
case ELF::EM_ARM:
|
||||
|
@ -873,6 +875,7 @@ unsigned ELFObjectFile<ELFT>::getArch() const {
|
|||
bool IsLittleEndian = ELFT::TargetEndianness == support::little;
|
||||
switch (EF.getHeader()->e_machine) {
|
||||
case ELF::EM_386:
|
||||
case ELF::EM_IAMCU:
|
||||
return Triple::x86;
|
||||
case ELF::EM_X86_64:
|
||||
return Triple::x86_64;
|
||||
|
|
|
@ -26,6 +26,7 @@ StringRef getELFRelocationTypeName(uint32_t Machine, uint32_t Type) {
|
|||
}
|
||||
break;
|
||||
case ELF::EM_386:
|
||||
case ELF::EM_IAMCU:
|
||||
switch (Type) {
|
||||
#include "llvm/Support/ELFRelocs/i386.def"
|
||||
default:
|
||||
|
|
|
@ -486,6 +486,7 @@ void ScalarEnumerationTraits<ELFYAML::ELF_REL>::enumeration(
|
|||
#include "llvm/Support/ELFRelocs/Hexagon.def"
|
||||
break;
|
||||
case ELF::EM_386:
|
||||
case ELF::EM_IAMCU:
|
||||
#include "llvm/Support/ELFRelocs/i386.def"
|
||||
break;
|
||||
case ELF::EM_AARCH64:
|
||||
|
|
|
@ -359,6 +359,17 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
class ELFX86_IAMCUAsmBackend : public ELFX86AsmBackend {
|
||||
public:
|
||||
ELFX86_IAMCUAsmBackend(const Target &T, uint8_t OSABI, StringRef CPU)
|
||||
: ELFX86AsmBackend(T, OSABI, CPU) {}
|
||||
|
||||
MCObjectWriter *createObjectWriter(raw_pwrite_stream &OS) const override {
|
||||
return createX86ELFObjectWriter(OS, /*IsELF64*/ false, OSABI,
|
||||
ELF::EM_IAMCU);
|
||||
}
|
||||
};
|
||||
|
||||
class ELFX86_64AsmBackend : public ELFX86AsmBackend {
|
||||
public:
|
||||
ELFX86_64AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU)
|
||||
|
@ -780,6 +791,10 @@ MCAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
|
|||
return new WindowsX86AsmBackend(T, false, CPU);
|
||||
|
||||
uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TheTriple.getOS());
|
||||
|
||||
if (TheTriple.isOSIAMCU())
|
||||
return new ELFX86_IAMCUAsmBackend(T, OSABI, CPU);
|
||||
|
||||
return new ELFX86_32AsmBackend(T, OSABI, CPU);
|
||||
}
|
||||
|
||||
|
|
|
@ -32,9 +32,11 @@ namespace {
|
|||
|
||||
X86ELFObjectWriter::X86ELFObjectWriter(bool IsELF64, uint8_t OSABI,
|
||||
uint16_t EMachine)
|
||||
: MCELFObjectTargetWriter(IsELF64, OSABI, EMachine,
|
||||
// Only i386 uses Rel instead of RelA.
|
||||
/*HasRelocationAddend*/ EMachine != ELF::EM_386) {}
|
||||
: MCELFObjectTargetWriter(IsELF64, OSABI, EMachine,
|
||||
// Only i386 and IAMCU use Rel instead of RelA.
|
||||
/*HasRelocationAddend*/
|
||||
(EMachine != ELF::EM_386) &&
|
||||
(EMachine != ELF::EM_IAMCU)) {}
|
||||
|
||||
X86ELFObjectWriter::~X86ELFObjectWriter()
|
||||
{}
|
||||
|
@ -246,7 +248,8 @@ unsigned X86ELFObjectWriter::GetRelocType(const MCValue &Target,
|
|||
if (getEMachine() == ELF::EM_X86_64)
|
||||
return getRelocType64(Modifier, Type, IsPCRel);
|
||||
|
||||
assert(getEMachine() == ELF::EM_386 && "Unsupported ELF machine type.");
|
||||
assert((getEMachine() == ELF::EM_386 || getEMachine() == ELF::EM_IAMCU) &&
|
||||
"Unsupported ELF machine type.");
|
||||
return getRelocType32(Modifier, getType32(Type), IsPCRel);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
// RUN: llvm-mc -filetype=obj -triple i386-pc-linux-gnu %s -o - | llvm-readobj -r | FileCheck %s
|
||||
// RUN: llvm-mc -filetype=obj -triple i386-pc-linux-gnu %s -o - | llvm-readobj -r | FileCheck %s --check-prefix=CHECK --check-prefix=I386
|
||||
// RUN: llvm-mc -filetype=obj -triple i386-pc-elfiamcu %s -o - | llvm-readobj -r | FileCheck %s --check-prefix=CHECK --check-prefix=IAMCU
|
||||
|
||||
// Test that we produce the correct relocation types and that the relocations
|
||||
// correctly point to the section or the symbol.
|
||||
|
||||
// IAMCU: Format: ELF32-iamcu
|
||||
// I386: Format: ELF32-i386
|
||||
// CHECK: Relocations [
|
||||
// CHECK-NEXT: Section {{.*}} .rel.text {
|
||||
// CHECK-NEXT: 0x2 R_386_GOTOFF .Lfoo 0x0
|
||||
|
|
|
@ -477,6 +477,7 @@ static std::error_code getRelocationValueString(const ELFObjectFile<ELFT> *Obj,
|
|||
break;
|
||||
}
|
||||
case ELF::EM_386:
|
||||
case ELF::EM_IAMCU:
|
||||
case ELF::EM_ARM:
|
||||
case ELF::EM_HEXAGON:
|
||||
case ELF::EM_MIPS:
|
||||
|
|
Loading…
Reference in New Issue