Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default to rv64gc on riscv64 [slightly revised] #4474

Merged
merged 2 commits into from
Aug 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#### Platform support
- Supports LLVM 11.0 - 16.0.
- 64-bit RISC-V: Now defaults to `-mattr=+m,+a,+f,+d,+c` ('rv64gc' ABI) for non-bare-metal targets, i.e., if the target triple includes a valid operating system. (#4390)

#### Bug fixes
- Fix function pointers/delegates on Harvard architectures (e.g., AVR). (#4432, #4465)
Expand Down
31 changes: 29 additions & 2 deletions driver/targetmachine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,20 @@ static llvm::cl::opt<bool, true> preserveDwarfLineSection(
llvm::cl::init(false));
#endif

const char *getABI(const llvm::Triple &triple) {
// Returns true if 'feature' is enabled and false otherwise. Handles the
// case where the feature is specified multiple times ('+m,-m'), and
// takes the last occurrence.
bool isFeatureEnabled(const llvm::SmallVectorImpl<llvm::StringRef> &features,
llvm::StringRef feature) {
for (auto it = features.rbegin(), end = features.rend(); it != end; ++it) {
if (it->substr(1) == feature) {
return (*it)[0] == '+';
}
}
return false;
};

const char *getABI(const llvm::Triple &triple, const llvm::SmallVectorImpl<llvm::StringRef> &features) {
llvm::StringRef ABIName(opts::mABI);
if (ABIName != "") {
switch (triple.getArch()) {
Expand Down Expand Up @@ -120,6 +133,10 @@ const char *getABI(const llvm::Triple &triple) {
case llvm::Triple::ppc64le:
return "elfv2";
case llvm::Triple::riscv64:
if (isFeatureEnabled(features, "d"))
return "lp64d";
if (isFeatureEnabled(features, "f"))
return "lp64f";
return "lp64";
case llvm::Triple::riscv32:
return "ilp32";
Expand Down Expand Up @@ -441,6 +458,16 @@ createTargetMachine(const std::string targetTriple, const std::string arch,
features.push_back("+cx16");
}

// For a hosted RISC-V 64-bit target default to rv64gc if nothing has
// been selected
if (triple.getArch() == llvm::Triple::riscv64 && features.empty()) {
const llvm::StringRef os = triple.getOSName();
const bool isFreeStanding = os.empty() || os == "unknown" || os == "none";
if (!isFreeStanding) {
features = {"+m", "+a", "+f", "+d", "+c"};
}
}

// Handle cases where LLVM picks wrong default relocModel
#if LDC_LLVM_VER >= 1600
if (relocModel.has_value()) {}
Expand Down Expand Up @@ -478,7 +505,7 @@ createTargetMachine(const std::string targetTriple, const std::string arch,
opts::InitTargetOptionsFromCodeGenFlags(triple);

if (targetOptions.MCOptions.ABIName.empty())
targetOptions.MCOptions.ABIName = getABI(triple);
targetOptions.MCOptions.ABIName = getABI(triple, features);

if (floatABI == FloatABI::Default) {
switch (triple.getArch()) {
Expand Down
8 changes: 7 additions & 1 deletion driver/targetmachine.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#pragma once

#include "llvm/ADT/Optional.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/CodeGen.h"
#include <string>
#include <vector>
Expand Down Expand Up @@ -73,4 +75,8 @@ MipsABI::Type getMipsABI();
const llvm::Target *lookupTarget(const std::string &arch, llvm::Triple &triple,
std::string &errorMsg);

const char *getABI(const llvm::Triple &triple);
const char *getABI(const llvm::Triple &triple,
const llvm::SmallVectorImpl<llvm::StringRef> &features);

bool isFeatureEnabled(const llvm::SmallVectorImpl<llvm::StringRef> &features,
llvm::StringRef feature);
91 changes: 37 additions & 54 deletions driver/tool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,62 +121,45 @@ void appendTargetArgsForGcc(std::vector<std::string> &args) {
}
return;

case Triple::riscv64:
{
std::string mabi = getABI(triple);
args.push_back("-mabi=" + mabi);

extern llvm::TargetMachine* gTargetMachine;
auto featuresStr = gTargetMachine->getTargetFeatureString();
llvm::SmallVector<llvm::StringRef, 8> features;
featuresStr.split(features, ",", -1, false);

// Returns true if 'feature' is enabled and false otherwise. Handles the
// case where the feature is specified multiple times ('+m,-m'), and
// takes the last occurrence.
auto hasFeature = [&features](llvm::StringRef feature) {
for (int i = features.size() - 1; i >= 0; i--) {
auto f = features[i];
if (f.substr(1) == feature) {
return f[0] == '+';
}
}
return false;
};

std::string march;
if (triple.isArch64Bit())
march = "rv64";
else
march = "rv32";
bool m = hasFeature("m");
bool a = hasFeature("a");
bool f = hasFeature("f");
bool d = hasFeature("d");
bool c = hasFeature("c");
bool g = false;

if (m && a && f && d) {
march += "g";
g = true;
} else {
march += "i";
if (m)
march += "m";
if (a)
march += "a";
if (f)
march += "f";
if (d)
march += "d";
}
if (c)
march += "c";
if (!g)
march += "_zicsr_zifencei";
args.push_back("-march=" + march);
case Triple::riscv64: {
extern llvm::TargetMachine* gTargetMachine;
const auto featuresStr = gTargetMachine->getTargetFeatureString();
llvm::SmallVector<llvm::StringRef, 8> features;
featuresStr.split(features, ",", -1, false);

const std::string mabi = getABI(triple, features);
args.push_back("-mabi=" + mabi);

std::string march = triple.isArch64Bit() ? "rv64" : "rv32";
const bool m = isFeatureEnabled(features, "m");
const bool a = isFeatureEnabled(features, "a");
const bool f = isFeatureEnabled(features, "f");
const bool d = isFeatureEnabled(features, "d");
const bool c = isFeatureEnabled(features, "c");
bool g = false;

if (m && a && f && d) {
march += "g";
g = true;
} else {
march += "i";
if (m)
march += "m";
if (a)
march += "a";
if (f)
march += "f";
if (d)
march += "d";
}
if (c)
march += "c";
if (!g)
march += "_zicsr_zifencei";
args.push_back("-march=" + march);
return;
}

default:
break;
}
Expand Down
6 changes: 6 additions & 0 deletions tests/driver/riscv_abi4.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// REQUIRES: target_RISCV

// RUN: %ldc %s -mtriple=riscv64-unknown-linux --gcc=echo > %t && FileCheck %s < %t
// CHECK: -mabi=lp64d -march=rv64gc

void main() {}
6 changes: 6 additions & 0 deletions tests/driver/riscv_abi5.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// REQUIRES: target_RISCV

// RUN: %ldc %s -mtriple=riscv64-unknown-linux -mattr=+m,+a,+f,-d --gcc=echo > %t && FileCheck %s < %t
// CHECK: -mabi=lp64f -march=rv64imaf_zicsr_zifencei

void main() {}