1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
|
#include "gen/uda.h"
#include "dmd/aggregate.h"
#include "dmd/attrib.h"
#include "dmd/declaration.h"
#include "dmd/errors.h"
#include "dmd/expression.h"
#include "dmd/id.h"
#include "dmd/identifier.h"
#include "dmd/module.h"
#include "driver/cl_options_sanitizers.h"
#include "gen/irstate.h"
#include "gen/llvm.h"
#include "gen/llvmhelpers.h"
#include "ir/irfunction.h"
#include "ir/irvar.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/StringSwitch.h"
#if LDC_LLVM_VER < 1100
namespace llvm {
// Auto-generate:
// Attribute::AttrKind getAttrKindFromName(StringRef AttrName) { ... }
#define GET_ATTR_KIND_FROM_NAME
#include "llvm/IR/Attributes.inc"
}
#endif
namespace {
/// Checks whether `moduleDecl` is in the ldc package and it's identifier is
/// `id`.
bool isMagicModule(const ModuleDeclaration *moduleDecl, const Identifier *id) {
if (!moduleDecl)
return false;
if (moduleDecl->id != id) {
return false;
}
if (moduleDecl->packages.length != 1 ||
moduleDecl->packages.ptr[0] != Id::ldc) {
return false;
}
return true;
}
/// Checks whether the type of `e` is a struct from an ldc recognised module,
/// i.e. ldc.attributes or ldc.dcompute.
bool isFromMagicModule(const StructLiteralExp *e, const Identifier *id) {
auto moduleDecl = e->sd->getModule()->md;
return isMagicModule(moduleDecl, id);
}
StructLiteralExp *getLdcAttributesStruct(Expression *attr) {
// See whether we can evaluate the attribute at compile-time. All the LDC
// attributes are struct literals that may be constructed using a CTFE
// function.
unsigned prevErrors = global.startGagging();
auto e = attr->ctfeInterpret();
if (global.endGagging(prevErrors)) {
return nullptr;
}
if (auto sle = e->isStructLiteralExp()) {
if (isFromMagicModule(sle, Id::attributes))
return sle;
}
return nullptr;
}
void checkStructElems(StructLiteralExp *sle, ArrayParam<Type *> elemTypes) {
if (sle->elements->length != elemTypes.size()) {
sle->error("unexpected field count in `ldc.%s.%s`; does druntime not "
"match compiler version?",
sle->sd->getModule()->md->id->toChars(),
sle->sd->ident->toChars());
fatal();
}
for (size_t i = 0; i < sle->elements->length; ++i) {
if ((*sle->elements)[i]->type->toBasetype() != elemTypes[i]) {
sle->error("invalid field type in `ldc.%s.%s`; does druntime not "
"match compiler version?",
sle->sd->getModule()->md->id->toChars(),
sle->sd->ident->toChars());
fatal();
}
}
}
/// Returns the StructLiteralExp magic attribute with identifier `id` from
/// the ldc magic module with identifier `from` (attributes or dcompute)
/// if it is applied to `sym`, otherwise returns nullptr.
StructLiteralExp *getMagicAttribute(Dsymbol *sym, const Identifier *id,
const Identifier *from) {
if (!sym->userAttribDecl)
return nullptr;
// Loop over all UDAs and early return the expression if a match was found.
Expressions *attrs = sym->userAttribDecl->getAttributes();
expandTuples(attrs);
for (auto attr : *attrs) {
if (auto sle = attr->isStructLiteralExp())
if (isFromMagicModule(sle, from) && id == sle->sd->ident)
return sle;
}
return nullptr;
}
/// Calls `action` for each magic attribute with identifier `id` from
/// the ldc magic module with identifier `from` (attributes or dcompute)
/// applied to `sym`.
void callForEachMagicAttribute(Dsymbol &sym, const Identifier *id,
const Identifier *from,
std::function<void(StructLiteralExp *)> action) {
if (!sym.userAttribDecl)
return;
// Loop over all UDAs and call `action` if a match was found.
Expressions *attrs = sym.userAttribDecl->getAttributes();
expandTuples(attrs);
for (auto attr : *attrs) {
if (auto sle = attr->isStructLiteralExp())
if (isFromMagicModule(sle, from) && id == sle->sd->ident)
action(sle);
}
}
sinteger_t getIntElem(StructLiteralExp *sle, size_t idx) {
auto arg = (*sle->elements)[idx];
return arg->toInteger();
}
llvm::StringRef getStringElem(StructLiteralExp *sle, size_t idx) {
if (auto arg = (*sle->elements)[idx]) {
if (auto strexp = arg->isStringExp()) {
DString str = strexp->peekString();
return {str.ptr, str.length};
}
}
// Default initialized element (arg->op == TOKnull)
return {};
}
llvm::StringRef getFirstElemString(StructLiteralExp *sle) {
return getStringElem(sle, 0);
}
// @allocSize(1)
// @allocSize(0,2)
void applyAttrAllocSize(StructLiteralExp *sle, IrFunction *irFunc) {
checkStructElems(sle, {Type::tint32, Type::tint32});
auto sizeArgIdx = getIntElem(sle, 0);
auto numArgIdx = getIntElem(sle, 1);
// Get the number of parameters that the user specified (excluding the
// implicit `this` parameter)
auto numUserParams = irFunc->irFty.args.size();
// Verify that the index values are valid
bool error = false;
if (sizeArgIdx + 1 > sinteger_t(numUserParams)) {
sle->error("`@ldc.attributes.allocSize.sizeArgIdx=%d` too large for "
"function `%s` with %d arguments.",
(int)sizeArgIdx, irFunc->decl->toChars(), (int)numUserParams);
error = true;
}
if (numArgIdx + 1 > sinteger_t(numUserParams)) {
sle->error("`@ldc.attributes.allocSize.numArgIdx=%d` too large for "
"function `%s` with %d arguments.",
(int)numArgIdx, irFunc->decl->toChars(), (int)numUserParams);
error = true;
}
if (error)
return;
// Get the number of parameters of the function in LLVM IR. This includes
// the `this` and sret parameters.
const auto llvmNumParams = irFunc->irFty.funcType->getNumParams();
// Offset to correct indices for sret and this parameters.
// These parameters can never be used for allocsize, and the user-specified
// index does not account for these.
unsigned offset = llvmNumParams - numUserParams;
// Calculate the param indices for the function as defined in LLVM IR
const auto llvmSizeIdx = sizeArgIdx + offset;
const auto llvmNumIdx = numArgIdx + offset;
#if LDC_LLVM_VER >= 1400
llvm::AttrBuilder builder(getGlobalContext());
#else
llvm::AttrBuilder builder;
#endif
if (numArgIdx >= 0) {
builder.addAllocSizeAttr(llvmSizeIdx, llvmNumIdx);
} else {
builder.addAllocSizeAttr(llvmSizeIdx, llvm::Optional<unsigned>());
}
llvm::Function *func = irFunc->getLLVMFunc();
#if LDC_LLVM_VER >= 1400
func->addFnAttrs(builder);
#else
func->addAttributes(LLAttributeList::FunctionIndex, builder);
#endif
}
// @llvmAttr("key", "value")
// @llvmAttr("key")
void applyAttrLLVMAttr(StructLiteralExp *sle, llvm::AttrBuilder &attrs) {
checkStructElems(sle, {Type::tstring, Type::tstring});
llvm::StringRef key = getStringElem(sle, 0);
llvm::StringRef value = getStringElem(sle, 1);
if (value.empty()) {
#if LDC_LLVM_VER >= 1100
const auto kind = llvm::Attribute::getAttrKindFromName(key);
#else
const auto kind = llvm::getAttrKindFromName(key);
#endif
if (kind != llvm::Attribute::None) {
attrs.addAttribute(kind);
} else {
attrs.addAttribute(key);
}
} else {
attrs.addAttribute(key, value);
}
}
// @llvmFastMathFlag("flag")
void applyAttrLLVMFastMathFlag(StructLiteralExp *sle, IrFunction *irFunc) {
checkStructElems(sle, {Type::tstring});
llvm::StringRef value = getStringElem(sle, 0);
if (value == "clear") {
irFunc->FMF.clear();
} else if (value == "fast") {
irFunc->FMF.setFast();
} else if (value == "contract") {
irFunc->FMF.setAllowContract(true);
} else if (value == "nnan") {
irFunc->FMF.setNoNaNs();
} else if (value == "ninf") {
irFunc->FMF.setNoInfs();
} else if (value == "nsz") {
irFunc->FMF.setNoSignedZeros();
} else if (value == "arcp") {
irFunc->FMF.setAllowReciprocal();
} else {
sle->warning(
"ignoring unrecognized flag parameter `%.*s` for `@ldc.attributes.%s`",
static_cast<int>(value.size()), value.data(),
sle->sd->ident->toChars());
}
}
void applyAttrOptStrategy(StructLiteralExp *sle, IrFunction *irFunc) {
checkStructElems(sle, {Type::tstring});
llvm::StringRef value = getStringElem(sle, 0);
llvm::Function *func = irFunc->getLLVMFunc();
if (value == "none") {
if (irFunc->decl->inlining == PINLINE::always) {
sle->error("cannot combine `@ldc.attributes.%s(\"none\")` with "
"`pragma(inline, true)`",
sle->sd->ident->toChars());
return;
}
irFunc->decl->inlining = PINLINE::never;
func->addFnAttr(llvm::Attribute::OptimizeNone);
} else if (value == "optsize") {
func->addFnAttr(llvm::Attribute::OptimizeForSize);
} else if (value == "minsize") {
func->addFnAttr(llvm::Attribute::MinSize);
} else {
sle->warning(
"ignoring unrecognized parameter `%.*s` for `@ldc.attributes.%s`",
static_cast<int>(value.size()), value.data(),
sle->sd->ident->toChars());
}
}
void applyAttrSection(StructLiteralExp *sle, llvm::GlobalObject *globj) {
checkStructElems(sle, {Type::tstring});
globj->setSection(getFirstElemString(sle));
}
void applyAttrTarget(StructLiteralExp *sle, llvm::Function *func,
IrFunction *irFunc) {
// TODO: this is a rudimentary implementation for @target. Many more
// target-related attributes could be applied to functions (not just for
// @target): clang applies many attributes that LDC does not.
// The current implementation here does not do any checking of the specified
// string and simply passes all to llvm.
checkStructElems(sle, {Type::tstring});
llvm::StringRef targetspec = getFirstElemString(sle);
if (targetspec.empty() || targetspec == "default")
return;
llvm::StringRef CPU;
std::vector<std::string> features;
if (func->hasFnAttribute("target-features")) {
auto attr = func->getFnAttribute("target-features");
features.push_back(std::string(attr.getValueAsString()));
}
llvm::SmallVector<llvm::StringRef, 4> fragments;
llvm::SplitString(targetspec, fragments, ",");
// special strings: "arch=<cpu>", "tune=<...>", "fpmath=<...>"
// if string starts with "no-", strip "no"
// otherwise add "+"
for (auto s : fragments) {
s = s.trim();
if (s.empty())
continue;
if (s.startswith("arch=")) {
// TODO: be smarter than overwriting the previous arch= setting
CPU = s.drop_front(5);
continue;
}
if (s.startswith("tune=")) {
// clang 3.8 ignores tune= too
continue;
}
if (s.startswith("fpmath=")) {
// TODO: implementation; clang 3.8 ignores fpmath= too
continue;
}
if (s.startswith("no-")) {
std::string f = (std::string("-") + s.drop_front(3)).str();
features.emplace_back(std::move(f));
continue;
}
std::string f = (std::string("+") + s).str();
features.emplace_back(std::move(f));
}
if (!CPU.empty()) {
func->addFnAttr("target-cpu", CPU);
irFunc->targetCpuOverridden = true;
}
if (!features.empty()) {
// Sorting the features puts negative features ("-") after positive features
// ("+"). This provides the desired behavior of negative features overriding
// positive features regardless of their order in the source code.
sort(features.begin(), features.end());
func->addFnAttr("target-features",
llvm::join(features.begin(), features.end(), ","));
irFunc->targetFeaturesOverridden = true;
}
}
void applyAttrAssumeUsed(IRState &irs, StructLiteralExp *sle,
llvm::Constant *symbol) {
checkStructElems(sle, {});
irs.usedArray.push_back(symbol);
}
} // anonymous namespace
void applyVarDeclUDAs(VarDeclaration *decl, llvm::GlobalVariable *gvar) {
if (!decl->userAttribDecl)
return;
Expressions *attrs = decl->userAttribDecl->getAttributes();
expandTuples(attrs);
for (auto &attr : *attrs) {
auto sle = getLdcAttributesStruct(attr);
if (!sle)
continue;
auto ident = sle->sd->ident;
if (ident == Id::udaSection) {
applyAttrSection(sle, gvar);
} else if (ident == Id::udaHidden) {
if (!decl->isExport()) // export visibility is stronger
gvar->setVisibility(LLGlobalValue::HiddenVisibility);
} else if (ident == Id::udaOptStrategy || ident == Id::udaTarget) {
sle->error(
"Special attribute `ldc.attributes.%s` is only valid for functions",
ident->toChars());
} else if (ident == Id::udaAssumeUsed) {
applyAttrAssumeUsed(*gIR, sle, gvar);
} else if (ident == Id::udaWeak) {
// @weak is applied elsewhere
} else if (ident == Id::udaDynamicCompile ||
ident == Id::udaDynamicCompileEmit) {
sle->error(
"Special attribute `ldc.attributes.%s` is only valid for functions",
ident->toChars());
} else if (ident == Id::udaDynamicCompileConst) {
getIrGlobal(decl)->dynamicCompileConst = true;
} else {
sle->warning(
"Ignoring unrecognized special attribute `ldc.attributes.%s`",
ident->toChars());
}
}
}
void applyFuncDeclUDAs(FuncDeclaration *decl, IrFunction *irFunc) {
// function UDAs
if (decl->userAttribDecl) {
llvm::Function *func = irFunc->getLLVMFunc();
assert(func);
Expressions *attrs = decl->userAttribDecl->getAttributes();
expandTuples(attrs);
for (auto &attr : *attrs) {
auto sle = getLdcAttributesStruct(attr);
if (!sle)
continue;
auto ident = sle->sd->ident;
if (ident == Id::udaAllocSize) {
applyAttrAllocSize(sle, irFunc);
} else if (ident == Id::udaLLVMAttr) {
#if LDC_LLVM_VER >= 1400
llvm::AttrBuilder attrs(getGlobalContext());
#else
llvm::AttrBuilder attrs;
#endif
applyAttrLLVMAttr(sle, attrs);
#if LDC_LLVM_VER >= 1400
func->addFnAttrs(attrs);
#else
func->addAttributes(LLAttributeList::FunctionIndex, attrs);
#endif
} else if (ident == Id::udaHidden) {
if (!decl->isExport()) // export visibility is stronger
func->setVisibility(LLGlobalValue::HiddenVisibility);
} else if (ident == Id::udaLLVMFastMathFlag) {
applyAttrLLVMFastMathFlag(sle, irFunc);
} else if (ident == Id::udaOptStrategy) {
applyAttrOptStrategy(sle, irFunc);
} else if (ident == Id::udaSection) {
applyAttrSection(sle, func);
} else if (ident == Id::udaTarget) {
applyAttrTarget(sle, func, irFunc);
} else if (ident == Id::udaAssumeUsed) {
applyAttrAssumeUsed(*gIR, sle, func);
} else if (ident == Id::udaWeak || ident == Id::udaKernel ||
ident == Id::udaNoSanitize) {
// These UDAs are applied elsewhere, thus should silently be ignored here.
} else if (ident == Id::udaDynamicCompile) {
irFunc->dynamicCompile = true;
} else if (ident == Id::udaDynamicCompileEmit) {
irFunc->dynamicCompileEmit = true;
} else if (ident == Id::udaDynamicCompileConst) {
sle->error(
"Special attribute `ldc.attributes.%s` is only valid for variables",
ident->toChars());
} else {
sle->warning(
"Ignoring unrecognized special attribute `ldc.attributes.%s`",
ident->toChars());
}
}
}
// parameter UDAs
auto parameterList = irFunc->type->parameterList;
for (auto arg : irFunc->irFty.args) {
if (arg->parametersIdx >= parameterList.length())
continue;
auto param =
Parameter::getNth(parameterList.parameters, arg->parametersIdx);
if (!param->userAttribDecl)
continue;
Expressions *attrs = param->userAttribDecl->getAttributes();
expandTuples(attrs);
for (auto &attr : *attrs) {
auto sle = getLdcAttributesStruct(attr);
if (!sle)
continue;
auto ident = sle->sd->ident;
if (ident == Id::udaLLVMAttr) {
applyAttrLLVMAttr(sle, arg->attrs);
} else {
sle->warning("Ignoring unrecognized special parameter attribute "
"`ldc.attributes.%s`",
ident->toChars());
}
}
}
}
/// Checks whether 'sym' has the @ldc.attributes._weak() UDA applied.
bool hasWeakUDA(Dsymbol *sym) {
auto sle = getMagicAttribute(sym, Id::udaWeak, Id::attributes);
if (!sle)
return false;
checkStructElems(sle, {});
auto vd = sym->isVarDeclaration();
if (!(vd && vd->isDataseg()) && !sym->isFuncDeclaration())
sym->error("`@ldc.attributes.weak` can only be applied to functions or "
"global variables");
return true;
}
/// Returns 0 if 'sym' does not have the @ldc.dcompute.compute() UDA applied.
/// Returns 1 + n if 'sym' does and is @compute(n).
extern "C" DComputeCompileFor hasComputeAttr(Dsymbol *sym) {
auto sle = getMagicAttribute(sym, Id::udaCompute, Id::dcompute);
if (!sle)
return DComputeCompileFor::hostOnly;
checkStructElems(sle, {Type::tint32});
return static_cast<DComputeCompileFor>(1 + (*sle->elements)[0]->toInteger());
}
/// Checks whether 'sym' has the @ldc.dcompute._kernel() UDA applied.
bool hasKernelAttr(Dsymbol *sym) {
auto sle = getMagicAttribute(sym, Id::udaKernel, Id::dcompute);
if (!sle)
return false;
checkStructElems(sle, {});
if (!sym->isFuncDeclaration() &&
hasComputeAttr(sym->getModule()) != DComputeCompileFor::hostOnly) {
sym->error("`@ldc.dcompute.kernel` can only be applied to functions"
" in modules marked `@ldc.dcompute.compute`");
}
return true;
}
/// Creates a mask (for &) of @ldc.attributes.noSanitize UDA applied to the
/// function.
/// If a bit is set in the mask, then the sanitizer is enabled.
/// If a bit is not set in the mask, then the sanitizer is explicitly disabled
/// by @noSanitize.
unsigned getMaskFromNoSanitizeUDA(FuncDeclaration &fd) {
opts::SanitizerBits inverse_mask = opts::NoneSanitizer;
callForEachMagicAttribute(fd, Id::udaNoSanitize, Id::attributes,
[&inverse_mask](StructLiteralExp *sle) {
checkStructElems(sle, {Type::tstring});
auto name = getFirstElemString(sle);
inverse_mask |= opts::parseSanitizerName(name, [&] {
sle->warning(
"Unrecognized sanitizer name '%s' for `@ldc.attributes.noSanitize`.",
name.str().c_str());
});
});
return ~inverse_mask;
}
|