Skip to content
Closed
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
3 changes: 2 additions & 1 deletion llvm/include/llvm/Frontend/OpenMP/OMPIRBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,8 @@ class OpenMPIRBuilder {
void applySimd(CanonicalLoopInfo *Loop,
MapVector<Value *, Value *> AlignedVars, Value *IfCond,
omp::OrderKind Order, ConstantInt *Simdlen,
ConstantInt *Safelen);
ConstantInt *Safelen,
SmallVector<Value *> NontempralVars = {});

/// Generator for '#omp flush'
///
Expand Down
29 changes: 28 additions & 1 deletion llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5183,10 +5183,31 @@ OpenMPIRBuilder::getOpenMPDefaultSimdAlign(const Triple &TargetTriple,
return 0;
}

/// Attach nontemporal metadata to the load/store instructions of nontemporal
/// variables of \p Block
static void addNonTemporalMetadata(BasicBlock *Block, MDNode *Nontemporal,
SmallVector<Value *> NontemporalVars) {
for (Instruction &I : *Block) {
llvm::Value *mem_ptr = nullptr;
if (llvm::LoadInst *li = dyn_cast<llvm::LoadInst>(&I))
mem_ptr = li->getPointerOperand();
else if (llvm::StoreInst *si = dyn_cast<llvm::StoreInst>(&I))
mem_ptr = si->getPointerOperand();
if (mem_ptr) {
if (llvm::GetElementPtrInst *gep =
dyn_cast<llvm::GetElementPtrInst>(mem_ptr))
mem_ptr = gep->getPointerOperand();
if (is_contained(NontemporalVars, mem_ptr))
I.setMetadata(LLVMContext::MD_nontemporal, Nontemporal);
}
}
}

void OpenMPIRBuilder::applySimd(CanonicalLoopInfo *CanonicalLoop,
MapVector<Value *, Value *> AlignedVars,
Value *IfCond, OrderKind Order,
ConstantInt *Simdlen, ConstantInt *Safelen) {
ConstantInt *Simdlen, ConstantInt *Safelen,
SmallVector<Value *> NontemporalVars) {
LLVMContext &Ctx = Builder.getContext();

Function *F = CanonicalLoop->getFunction();
Expand Down Expand Up @@ -5283,6 +5304,12 @@ void OpenMPIRBuilder::applySimd(CanonicalLoopInfo *CanonicalLoop,
}

addLoopMetadata(CanonicalLoop, LoopMDList);
// Set nontemporal metadata to load and stores of nontemporal values
if (NontemporalVars.size()) {
MDNode *NontemporalNode = MDNode::getDistinct(Ctx, {});
for (BasicBlock *BB : Reachable)
addNonTemporalMetadata(BB, NontemporalNode, NontemporalVars);
}
}

/// Create the TargetMachine object to query the backend for optimization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1867,11 +1867,19 @@ convertOmpSimd(Operation &opInst, llvm::IRBuilderBase &builder,

llvm::MapVector<llvm::Value *, llvm::Value *> alignedVars;
llvm::omp::OrderKind order = convertOrderKind(simdOp.getOrder());

llvm::SmallVector<llvm::Value *> nontemporalVars;
mlir::OperandRange nontemporals = simdOp.getNontemporalVars();
for (mlir::Value nontemporal : nontemporals) {
llvm::Value *nt = moduleTranslation.lookupValue(nontemporal);
nontemporalVars.push_back(nt);
}

ompBuilder->applySimd(loopInfo, alignedVars,
simdOp.getIfExpr()
? moduleTranslation.lookupValue(simdOp.getIfExpr())
: nullptr,
order, simdlen, safelen);
order, simdlen, safelen, nontemporalVars);

builder.restoreIP(afterIP);
return success();
Expand Down
22 changes: 22 additions & 0 deletions mlir/test/Target/LLVMIR/openmp-llvm.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,28 @@ llvm.func @simd_order() {
// CHECK-NEXT: llvm.loop.vectorize.width{{.*}}i64 2
// -----

// CHECK-LABEL: @simd_nontemporal
llvm.func @simd_nontemporal() {
%0 = llvm.mlir.constant(10 : i64) : i64
%1 = llvm.mlir.constant(1 : i64) : i64
%2 = llvm.alloca %1 x i64 : (i64) -> !llvm.ptr
%3 = llvm.alloca %1 x i64 : (i64) -> !llvm.ptr
//CHECK: %[[A_ADDR:.*]] = alloca i64, i64 1, align 8
//CHECK: %[[B_ADDR:.*]] = alloca i64, i64 1, align 8
//CHECK: %[[B:.*]] = load i64, ptr %[[B_ADDR]], align 4, !nontemporal !1, !llvm.access.group !2
//CHECK: store i64 %[[B]], ptr %[[A_ADDR]], align 4, !nontemporal !1, !llvm.access.group !2
omp.simd nontemporal(%2, %3 : !llvm.ptr, !llvm.ptr) {
omp.loop_nest (%arg0) : i64 = (%1) to (%0) inclusive step (%1) {
%4 = llvm.load %3 : !llvm.ptr -> i64
llvm.store %4, %2 : i64, !llvm.ptr
omp.yield
}
omp.terminator
}
llvm.return
}
// -----

llvm.func @body(i64)

llvm.func @test_omp_wsloop_ordered(%lb : i64, %ub : i64, %step : i64) -> () {
Expand Down