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
|
//===- LoopAnnotationImporter.cpp - Loop annotation import ----------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "LoopAnnotationImporter.h"
#include "llvm/IR/Constants.h"
using namespace mlir;
using namespace mlir::LLVM;
using namespace mlir::LLVM::detail;
namespace {
/// Helper class that keeps the state of one metadata to attribute conversion.
struct LoopMetadataConversion {
LoopMetadataConversion(const llvm::MDNode *node, Location loc,
LoopAnnotationImporter &loopAnnotationImporter)
: node(node), loc(loc), loopAnnotationImporter(loopAnnotationImporter),
ctx(loc->getContext()){};
/// Converts this structs loop metadata node into a LoopAnnotationAttr.
LoopAnnotationAttr convert();
/// Initializes the shared state for the conversion member functions.
LogicalResult initConversionState();
/// Helper function to get and erase a property.
const llvm::MDNode *lookupAndEraseProperty(StringRef name);
/// Helper functions to lookup and convert MDNodes into a specifc attribute
/// kind. These functions return null-attributes if there is no node with the
/// specified name, or failure, if the node is ill-formatted.
FailureOr<BoolAttr> lookupUnitNode(StringRef name);
FailureOr<BoolAttr> lookupBoolNode(StringRef name, bool negated = false);
FailureOr<BoolAttr> lookupIntNodeAsBoolAttr(StringRef name);
FailureOr<IntegerAttr> lookupIntNode(StringRef name);
FailureOr<llvm::MDNode *> lookupMDNode(StringRef name);
FailureOr<SmallVector<llvm::MDNode *>> lookupMDNodes(StringRef name);
FailureOr<LoopAnnotationAttr> lookupFollowupNode(StringRef name);
FailureOr<BoolAttr> lookupBooleanUnitNode(StringRef enableName,
StringRef disableName,
bool negated = false);
/// Conversion functions for sub-attributes.
FailureOr<LoopVectorizeAttr> convertVectorizeAttr();
FailureOr<LoopInterleaveAttr> convertInterleaveAttr();
FailureOr<LoopUnrollAttr> convertUnrollAttr();
FailureOr<LoopUnrollAndJamAttr> convertUnrollAndJamAttr();
FailureOr<LoopLICMAttr> convertLICMAttr();
FailureOr<LoopDistributeAttr> convertDistributeAttr();
FailureOr<LoopPipelineAttr> convertPipelineAttr();
FailureOr<LoopPeeledAttr> convertPeeledAttr();
FailureOr<LoopUnswitchAttr> convertUnswitchAttr();
FailureOr<SmallVector<AccessGroupAttr>> convertParallelAccesses();
FusedLoc convertStartLoc();
FailureOr<FusedLoc> convertEndLoc();
llvm::SmallVector<llvm::DILocation *, 2> locations;
llvm::StringMap<const llvm::MDNode *> propertyMap;
const llvm::MDNode *node;
Location loc;
LoopAnnotationImporter &loopAnnotationImporter;
MLIRContext *ctx;
};
} // namespace
LogicalResult LoopMetadataConversion::initConversionState() {
// Check if it's a valid node.
if (node->getNumOperands() == 0 ||
dyn_cast<llvm::MDNode>(node->getOperand(0)) != node)
return emitWarning(loc) << "invalid loop node";
for (const llvm::MDOperand &operand : llvm::drop_begin(node->operands())) {
if (auto *diLoc = dyn_cast<llvm::DILocation>(operand)) {
locations.push_back(diLoc);
continue;
}
auto *property = dyn_cast<llvm::MDNode>(operand);
if (!property)
return emitWarning(loc) << "expected all loop properties to be either "
"debug locations or metadata nodes";
if (property->getNumOperands() == 0)
return emitWarning(loc) << "cannot import empty loop property";
auto *nameNode = dyn_cast<llvm::MDString>(property->getOperand(0));
if (!nameNode)
return emitWarning(loc) << "cannot import loop property without a name";
StringRef name = nameNode->getString();
bool succ = propertyMap.try_emplace(name, property).second;
if (!succ)
return emitWarning(loc)
<< "cannot import loop properties with duplicated names " << name;
}
return success();
}
const llvm::MDNode *
LoopMetadataConversion::lookupAndEraseProperty(StringRef name) {
auto it = propertyMap.find(name);
if (it == propertyMap.end())
return nullptr;
const llvm::MDNode *property = it->getValue();
propertyMap.erase(it);
return property;
}
FailureOr<BoolAttr> LoopMetadataConversion::lookupUnitNode(StringRef name) {
const llvm::MDNode *property = lookupAndEraseProperty(name);
if (!property)
return BoolAttr(nullptr);
if (property->getNumOperands() != 1)
return emitWarning(loc)
<< "expected metadata node " << name << " to hold no value";
return BoolAttr::get(ctx, true);
}
FailureOr<BoolAttr> LoopMetadataConversion::lookupBooleanUnitNode(
StringRef enableName, StringRef disableName, bool negated) {
auto enable = lookupUnitNode(enableName);
auto disable = lookupUnitNode(disableName);
if (failed(enable) || failed(disable))
return failure();
if (*enable && *disable)
return emitWarning(loc)
<< "expected metadata nodes " << enableName << " and " << disableName
<< " to be mutually exclusive.";
if (*enable)
return BoolAttr::get(ctx, !negated);
if (*disable)
return BoolAttr::get(ctx, negated);
return BoolAttr(nullptr);
}
FailureOr<BoolAttr> LoopMetadataConversion::lookupBoolNode(StringRef name,
bool negated) {
const llvm::MDNode *property = lookupAndEraseProperty(name);
if (!property)
return BoolAttr(nullptr);
auto emitNodeWarning = [&]() {
return emitWarning(loc)
<< "expected metadata node " << name << " to hold a boolean value";
};
if (property->getNumOperands() != 2)
return emitNodeWarning();
llvm::ConstantInt *val =
llvm::mdconst::dyn_extract<llvm::ConstantInt>(property->getOperand(1));
if (!val || val->getBitWidth() != 1)
return emitNodeWarning();
return BoolAttr::get(ctx, val->getValue().getLimitedValue(1) ^ negated);
}
FailureOr<BoolAttr>
LoopMetadataConversion::lookupIntNodeAsBoolAttr(StringRef name) {
const llvm::MDNode *property = lookupAndEraseProperty(name);
if (!property)
return BoolAttr(nullptr);
auto emitNodeWarning = [&]() {
return emitWarning(loc)
<< "expected metadata node " << name << " to hold an integer value";
};
if (property->getNumOperands() != 2)
return emitNodeWarning();
llvm::ConstantInt *val =
llvm::mdconst::dyn_extract<llvm::ConstantInt>(property->getOperand(1));
if (!val || val->getBitWidth() != 32)
return emitNodeWarning();
return BoolAttr::get(ctx, val->getValue().getLimitedValue(1));
}
FailureOr<IntegerAttr> LoopMetadataConversion::lookupIntNode(StringRef name) {
const llvm::MDNode *property = lookupAndEraseProperty(name);
if (!property)
return IntegerAttr(nullptr);
auto emitNodeWarning = [&]() {
return emitWarning(loc)
<< "expected metadata node " << name << " to hold an i32 value";
};
if (property->getNumOperands() != 2)
return emitNodeWarning();
llvm::ConstantInt *val =
llvm::mdconst::dyn_extract<llvm::ConstantInt>(property->getOperand(1));
if (!val || val->getBitWidth() != 32)
return emitNodeWarning();
return IntegerAttr::get(IntegerType::get(ctx, 32),
val->getValue().getLimitedValue());
}
FailureOr<llvm::MDNode *> LoopMetadataConversion::lookupMDNode(StringRef name) {
const llvm::MDNode *property = lookupAndEraseProperty(name);
if (!property)
return nullptr;
auto emitNodeWarning = [&]() {
return emitWarning(loc)
<< "expected metadata node " << name << " to hold an MDNode";
};
if (property->getNumOperands() != 2)
return emitNodeWarning();
auto *node = dyn_cast<llvm::MDNode>(property->getOperand(1));
if (!node)
return emitNodeWarning();
return node;
}
FailureOr<SmallVector<llvm::MDNode *>>
LoopMetadataConversion::lookupMDNodes(StringRef name) {
const llvm::MDNode *property = lookupAndEraseProperty(name);
SmallVector<llvm::MDNode *> res;
if (!property)
return res;
auto emitNodeWarning = [&]() {
return emitWarning(loc) << "expected metadata node " << name
<< " to hold one or multiple MDNodes";
};
if (property->getNumOperands() < 2)
return emitNodeWarning();
for (unsigned i = 1, e = property->getNumOperands(); i < e; ++i) {
auto *node = dyn_cast<llvm::MDNode>(property->getOperand(i));
if (!node)
return emitNodeWarning();
res.push_back(node);
}
return res;
}
FailureOr<LoopAnnotationAttr>
LoopMetadataConversion::lookupFollowupNode(StringRef name) {
auto node = lookupMDNode(name);
if (failed(node))
return failure();
if (*node == nullptr)
return LoopAnnotationAttr(nullptr);
return loopAnnotationImporter.translateLoopAnnotation(*node, loc);
}
static bool isEmptyOrNull(const Attribute attr) { return !attr; }
template <typename T>
static bool isEmptyOrNull(const SmallVectorImpl<T> &vec) {
return vec.empty();
}
/// Helper function that only creates and attribute of type T if all argument
/// conversion were successfull and at least one of them holds a non-null value.
template <typename T, typename... P>
static T createIfNonNull(MLIRContext *ctx, const P &...args) {
bool anyFailed = (failed(args) || ...);
if (anyFailed)
return {};
bool allEmpty = (isEmptyOrNull(*args) && ...);
if (allEmpty)
return {};
return T::get(ctx, *args...);
}
FailureOr<LoopVectorizeAttr> LoopMetadataConversion::convertVectorizeAttr() {
FailureOr<BoolAttr> enable =
lookupBoolNode("llvm.loop.vectorize.enable", true);
FailureOr<BoolAttr> predicateEnable =
lookupBoolNode("llvm.loop.vectorize.predicate.enable");
FailureOr<BoolAttr> scalableEnable =
lookupBoolNode("llvm.loop.vectorize.scalable.enable");
FailureOr<IntegerAttr> width = lookupIntNode("llvm.loop.vectorize.width");
FailureOr<LoopAnnotationAttr> followupVec =
lookupFollowupNode("llvm.loop.vectorize.followup_vectorized");
FailureOr<LoopAnnotationAttr> followupEpi =
lookupFollowupNode("llvm.loop.vectorize.followup_epilogue");
FailureOr<LoopAnnotationAttr> followupAll =
lookupFollowupNode("llvm.loop.vectorize.followup_all");
return createIfNonNull<LoopVectorizeAttr>(ctx, enable, predicateEnable,
scalableEnable, width, followupVec,
followupEpi, followupAll);
}
FailureOr<LoopInterleaveAttr> LoopMetadataConversion::convertInterleaveAttr() {
FailureOr<IntegerAttr> count = lookupIntNode("llvm.loop.interleave.count");
return createIfNonNull<LoopInterleaveAttr>(ctx, count);
}
FailureOr<LoopUnrollAttr> LoopMetadataConversion::convertUnrollAttr() {
FailureOr<BoolAttr> disable = lookupBooleanUnitNode(
"llvm.loop.unroll.enable", "llvm.loop.unroll.disable", /*negated=*/true);
FailureOr<IntegerAttr> count = lookupIntNode("llvm.loop.unroll.count");
FailureOr<BoolAttr> runtimeDisable =
lookupUnitNode("llvm.loop.unroll.runtime.disable");
FailureOr<BoolAttr> full = lookupUnitNode("llvm.loop.unroll.full");
FailureOr<LoopAnnotationAttr> followupUnrolled =
lookupFollowupNode("llvm.loop.unroll.followup_unrolled");
FailureOr<LoopAnnotationAttr> followupRemainder =
lookupFollowupNode("llvm.loop.unroll.followup_remainder");
FailureOr<LoopAnnotationAttr> followupAll =
lookupFollowupNode("llvm.loop.unroll.followup_all");
return createIfNonNull<LoopUnrollAttr>(ctx, disable, count, runtimeDisable,
full, followupUnrolled,
followupRemainder, followupAll);
}
FailureOr<LoopUnrollAndJamAttr>
LoopMetadataConversion::convertUnrollAndJamAttr() {
FailureOr<BoolAttr> disable = lookupBooleanUnitNode(
"llvm.loop.unroll_and_jam.enable", "llvm.loop.unroll_and_jam.disable",
/*negated=*/true);
FailureOr<IntegerAttr> count =
lookupIntNode("llvm.loop.unroll_and_jam.count");
FailureOr<LoopAnnotationAttr> followupOuter =
lookupFollowupNode("llvm.loop.unroll_and_jam.followup_outer");
FailureOr<LoopAnnotationAttr> followupInner =
lookupFollowupNode("llvm.loop.unroll_and_jam.followup_inner");
FailureOr<LoopAnnotationAttr> followupRemainderOuter =
lookupFollowupNode("llvm.loop.unroll_and_jam.followup_remainder_outer");
FailureOr<LoopAnnotationAttr> followupRemainderInner =
lookupFollowupNode("llvm.loop.unroll_and_jam.followup_remainder_inner");
FailureOr<LoopAnnotationAttr> followupAll =
lookupFollowupNode("llvm.loop.unroll_and_jam.followup_all");
return createIfNonNull<LoopUnrollAndJamAttr>(
ctx, disable, count, followupOuter, followupInner, followupRemainderOuter,
followupRemainderInner, followupAll);
}
FailureOr<LoopLICMAttr> LoopMetadataConversion::convertLICMAttr() {
FailureOr<BoolAttr> disable = lookupUnitNode("llvm.licm.disable");
FailureOr<BoolAttr> versioningDisable =
lookupUnitNode("llvm.loop.licm_versioning.disable");
return createIfNonNull<LoopLICMAttr>(ctx, disable, versioningDisable);
}
FailureOr<LoopDistributeAttr> LoopMetadataConversion::convertDistributeAttr() {
FailureOr<BoolAttr> disable =
lookupBoolNode("llvm.loop.distribute.enable", true);
FailureOr<LoopAnnotationAttr> followupCoincident =
lookupFollowupNode("llvm.loop.distribute.followup_coincident");
FailureOr<LoopAnnotationAttr> followupSequential =
lookupFollowupNode("llvm.loop.distribute.followup_sequential");
FailureOr<LoopAnnotationAttr> followupFallback =
lookupFollowupNode("llvm.loop.distribute.followup_fallback");
FailureOr<LoopAnnotationAttr> followupAll =
lookupFollowupNode("llvm.loop.distribute.followup_all");
return createIfNonNull<LoopDistributeAttr>(ctx, disable, followupCoincident,
followupSequential,
followupFallback, followupAll);
}
FailureOr<LoopPipelineAttr> LoopMetadataConversion::convertPipelineAttr() {
FailureOr<BoolAttr> disable = lookupBoolNode("llvm.loop.pipeline.disable");
FailureOr<IntegerAttr> initiationinterval =
lookupIntNode("llvm.loop.pipeline.initiationinterval");
return createIfNonNull<LoopPipelineAttr>(ctx, disable, initiationinterval);
}
FailureOr<LoopPeeledAttr> LoopMetadataConversion::convertPeeledAttr() {
FailureOr<IntegerAttr> count = lookupIntNode("llvm.loop.peeled.count");
return createIfNonNull<LoopPeeledAttr>(ctx, count);
}
FailureOr<LoopUnswitchAttr> LoopMetadataConversion::convertUnswitchAttr() {
FailureOr<BoolAttr> partialDisable =
lookupUnitNode("llvm.loop.unswitch.partial.disable");
return createIfNonNull<LoopUnswitchAttr>(ctx, partialDisable);
}
FailureOr<SmallVector<AccessGroupAttr>>
LoopMetadataConversion::convertParallelAccesses() {
FailureOr<SmallVector<llvm::MDNode *>> nodes =
lookupMDNodes("llvm.loop.parallel_accesses");
if (failed(nodes))
return failure();
SmallVector<AccessGroupAttr> refs;
for (llvm::MDNode *node : *nodes) {
FailureOr<SmallVector<AccessGroupAttr>> accessGroups =
loopAnnotationImporter.lookupAccessGroupAttrs(node);
if (failed(accessGroups)) {
emitWarning(loc) << "could not lookup access group";
continue;
}
llvm::append_range(refs, *accessGroups);
}
return refs;
}
FusedLoc LoopMetadataConversion::convertStartLoc() {
if (locations.empty())
return {};
return dyn_cast<FusedLoc>(
loopAnnotationImporter.moduleImport.translateLoc(locations[0]));
}
FailureOr<FusedLoc> LoopMetadataConversion::convertEndLoc() {
if (locations.size() < 2)
return FusedLoc();
if (locations.size() > 2)
return emitError(loc)
<< "expected loop metadata to have at most two DILocations";
return dyn_cast<FusedLoc>(
loopAnnotationImporter.moduleImport.translateLoc(locations[1]));
}
LoopAnnotationAttr LoopMetadataConversion::convert() {
if (failed(initConversionState()))
return {};
FailureOr<BoolAttr> disableNonForced =
lookupUnitNode("llvm.loop.disable_nonforced");
FailureOr<LoopVectorizeAttr> vecAttr = convertVectorizeAttr();
FailureOr<LoopInterleaveAttr> interleaveAttr = convertInterleaveAttr();
FailureOr<LoopUnrollAttr> unrollAttr = convertUnrollAttr();
FailureOr<LoopUnrollAndJamAttr> unrollAndJamAttr = convertUnrollAndJamAttr();
FailureOr<LoopLICMAttr> licmAttr = convertLICMAttr();
FailureOr<LoopDistributeAttr> distributeAttr = convertDistributeAttr();
FailureOr<LoopPipelineAttr> pipelineAttr = convertPipelineAttr();
FailureOr<LoopPeeledAttr> peeledAttr = convertPeeledAttr();
FailureOr<LoopUnswitchAttr> unswitchAttr = convertUnswitchAttr();
FailureOr<BoolAttr> mustProgress = lookupUnitNode("llvm.loop.mustprogress");
FailureOr<BoolAttr> isVectorized =
lookupIntNodeAsBoolAttr("llvm.loop.isvectorized");
FailureOr<SmallVector<AccessGroupAttr>> parallelAccesses =
convertParallelAccesses();
// Drop the metadata if there are parts that cannot be imported.
if (!propertyMap.empty()) {
for (auto name : propertyMap.keys())
emitWarning(loc) << "unknown loop annotation " << name;
return {};
}
FailureOr<FusedLoc> startLoc = convertStartLoc();
FailureOr<FusedLoc> endLoc = convertEndLoc();
return createIfNonNull<LoopAnnotationAttr>(
ctx, disableNonForced, vecAttr, interleaveAttr, unrollAttr,
unrollAndJamAttr, licmAttr, distributeAttr, pipelineAttr, peeledAttr,
unswitchAttr, mustProgress, isVectorized, parallelAccesses, startLoc,
endLoc);
}
LoopAnnotationAttr
LoopAnnotationImporter::translateLoopAnnotation(const llvm::MDNode *node,
Location loc) {
if (!node)
return {};
// Note: This check is necessary to distinguish between failed translations
// and not yet attempted translations.
auto it = loopMetadataMapping.find(node);
if (it != loopMetadataMapping.end())
return it->getSecond();
LoopAnnotationAttr attr = LoopMetadataConversion(node, loc, *this).convert();
mapLoopMetadata(node, attr);
return attr;
}
LogicalResult
LoopAnnotationImporter::translateAccessGroup(const llvm::MDNode *node,
Location loc) {
SmallVector<const llvm::MDNode *> accessGroups;
if (!node->getNumOperands())
accessGroups.push_back(node);
for (const llvm::MDOperand &operand : node->operands()) {
auto *childNode = dyn_cast<llvm::MDNode>(operand);
if (!childNode)
return failure();
accessGroups.push_back(cast<llvm::MDNode>(operand.get()));
}
// Convert all entries of the access group list to access group operations.
for (const llvm::MDNode *accessGroup : accessGroups) {
if (accessGroupMapping.count(accessGroup))
continue;
// Verify the access group node is distinct and empty.
if (accessGroup->getNumOperands() != 0 || !accessGroup->isDistinct())
return emitWarning(loc)
<< "expected an access group node to be empty and distinct";
// Add a mapping from the access group node to the newly created attribute.
accessGroupMapping[accessGroup] = builder.getAttr<AccessGroupAttr>();
}
return success();
}
FailureOr<SmallVector<AccessGroupAttr>>
LoopAnnotationImporter::lookupAccessGroupAttrs(const llvm::MDNode *node) const {
// An access group node is either a single access group or an access group
// list.
SmallVector<AccessGroupAttr> accessGroups;
if (!node->getNumOperands())
accessGroups.push_back(accessGroupMapping.lookup(node));
for (const llvm::MDOperand &operand : node->operands()) {
auto *node = cast<llvm::MDNode>(operand.get());
accessGroups.push_back(accessGroupMapping.lookup(node));
}
// Exit if one of the access group node lookups failed.
if (llvm::is_contained(accessGroups, nullptr))
return failure();
return accessGroups;
}
|