forked from OSchip/llvm-project
[OpenMP] Change remaining globalization from an analysis remark to missed
After landing the globalization optimizations, the precense of globalization on the device that was not put in shared or stack memory is a failed optimization with performance consequences so it should indicate a missed remark. Reviewed By: jdoerfert Differential Revision: https://reviews.llvm.org/D104735
This commit is contained in:
parent
544d20eab6
commit
44feacc736
|
@ -1145,13 +1145,12 @@ private:
|
|||
|
||||
auto CheckGlobalization = [&](Use &U, Function &Decl) {
|
||||
if (CallInst *CI = getCallIfRegularCall(U, &RFI)) {
|
||||
auto Remark = [&](OptimizationRemarkAnalysis ORA) {
|
||||
return ORA
|
||||
auto Remark = [&](OptimizationRemarkMissed ORM) {
|
||||
return ORM
|
||||
<< "Found thread data sharing on the GPU. "
|
||||
<< "Expect degraded performance due to data globalization.";
|
||||
};
|
||||
emitRemark<OptimizationRemarkAnalysis>(CI, "OpenMPGlobalization",
|
||||
Remark);
|
||||
emitRemark<OptimizationRemarkMissed>(CI, "OpenMPGlobalization", Remark);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -passes=openmp-opt -pass-remarks-analysis=openmp-opt -disable-output < %s 2>&1 | FileCheck %s
|
||||
; RUN: opt -passes=openmp-opt -pass-remarks-missed=openmp-opt -disable-output < %s 2>&1 | FileCheck %s
|
||||
; ModuleID = 'declare_target_codegen_globalization.cpp'
|
||||
source_filename = "declare_target_codegen_globalization.cpp"
|
||||
target datalayout = "e-i64:64-i128:128-v16:16-v32:32-n16:32:64"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -O2 -pass-remarks-analysis=openmp-opt -enable-new-pm < %s 2>&1 | FileCheck %s --check-prefix=MODULE
|
||||
; RUN: opt -O2 -pass-remarks-missed=openmp-opt -enable-new-pm < %s 2>&1 | FileCheck %s --check-prefix=MODULE
|
||||
target datalayout = "e-i64:64-i128:128-v16:16-v32:32-n16:32:64"
|
||||
|
||||
@.str = private unnamed_addr constant [13 x i8] c"Alloc Shared\00", align 1
|
||||
|
|
Loading…
Reference in New Issue