Skip to content

Commit

Permalink
[llvm-dlltool] Handle MIPS R4000 architecture (#114621)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpoussin authored Dec 26, 2024
1 parent a0e1fcc commit a72bfc5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions llvm/lib/Object/COFFImportFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ static uint16_t getImgRelRelocation(MachineTypes Machine) {
return IMAGE_REL_ARM64_ADDR32NB;
case IMAGE_FILE_MACHINE_I386:
return IMAGE_REL_I386_DIR32NB;
case IMAGE_FILE_MACHINE_R4000:
return IMAGE_REL_MIPS_REFWORDNB;
}
}

Expand Down
6 changes: 5 additions & 1 deletion llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ MachineTypes getEmulation(StringRef S) {
.Case("arm", IMAGE_FILE_MACHINE_ARMNT)
.Case("arm64", IMAGE_FILE_MACHINE_ARM64)
.Case("arm64ec", IMAGE_FILE_MACHINE_ARM64EC)
.Case("r4000", IMAGE_FILE_MACHINE_R4000)
.Default(IMAGE_FILE_MACHINE_UNKNOWN);
}

Expand All @@ -93,6 +94,8 @@ MachineTypes getMachine(Triple T) {
case Triple::aarch64:
return T.isWindowsArm64EC() ? COFF::IMAGE_FILE_MACHINE_ARM64EC
: COFF::IMAGE_FILE_MACHINE_ARM64;
case Triple::mipsel:
return COFF::IMAGE_FILE_MACHINE_R4000;
default:
return COFF::IMAGE_FILE_MACHINE_UNKNOWN;
}
Expand Down Expand Up @@ -173,7 +176,8 @@ int llvm::dlltoolDriverMain(llvm::ArrayRef<const char *> ArgsArr) {
(!Args.hasArgNoClaim(OPT_d) && !Args.hasArgNoClaim(OPT_l))) {
Table.printHelp(outs(), "llvm-dlltool [options] file...", "llvm-dlltool",
false);
llvm::outs() << "\nTARGETS: i386, i386:x86-64, arm, arm64, arm64ec\n";
llvm::outs()
<< "\nTARGETS: i386, i386:x86-64, arm, arm64, arm64ec, r4000\n";
return 1;
}

Expand Down
3 changes: 3 additions & 0 deletions llvm/test/tools/llvm-dlltool/machine-opt.def
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
; RUN: llvm-readobj %t.a | FileCheck --check-prefix=ARM %s
; RUN: llvm-dlltool -m arm64 -d %s -l %t.a
; RUN: llvm-readobj %t.a | FileCheck --check-prefix=ARM64 %s
; RUN: llvm-dlltool -m r4000 -d %s -l %t.a
; RUN: llvm-readobj %t.a | FileCheck --check-prefix=MIPS %s

LIBRARY test.dll
EXPORTS
Expand All @@ -15,3 +17,4 @@ TestFunction
; X86_64: Format: COFF-x86-64
; ARM: Format: COFF-ARM{{$}}
; ARM64: Format: COFF-ARM64
; MIPS: Format: COFF-MIPS

0 comments on commit a72bfc5

Please sign in to comment.