[OpenMP] Remove doing assumption propagation in the front end.
This patch removes the assumption propagation that was added in D110655 primarily to get assumption informatino on opaque call sites for optimizations. The analysis done in D111445 allows us to do this more intelligently in the back-end. Depends on D111445 Reviewed By: jdoerfert Differential Revision: https://reviews.llvm.org/D111463
This commit is contained in:
parent
e52937eba0
commit
4b5c3e591d
@ -1748,8 +1748,7 @@ static void AddAttributesFromFunctionProtoType(ASTContext &Ctx,
|
||||
}
|
||||
|
||||
static void AddAttributesFromAssumes(llvm::AttrBuilder &FuncAttrs,
|
||||
const Decl *Callee, const Decl *Caller,
|
||||
bool AssumptionOnCallSite) {
|
||||
const Decl *Callee) {
|
||||
if (!Callee)
|
||||
return;
|
||||
|
||||
@ -1758,10 +1757,6 @@ static void AddAttributesFromAssumes(llvm::AttrBuilder &FuncAttrs,
|
||||
for (const AssumptionAttr *AA : Callee->specific_attrs<AssumptionAttr>())
|
||||
AA->getAssumption().split(Attrs, ",");
|
||||
|
||||
if (Caller && Caller->hasAttrs() && AssumptionOnCallSite)
|
||||
for (const AssumptionAttr *AA : Caller->specific_attrs<AssumptionAttr>())
|
||||
AA->getAssumption().split(Attrs, ",");
|
||||
|
||||
if (!Attrs.empty())
|
||||
FuncAttrs.addAttribute(llvm::AssumptionAttrKey,
|
||||
llvm::join(Attrs.begin(), Attrs.end(), ","));
|
||||
@ -2019,10 +2014,12 @@ static bool DetermineNoUndef(QualType QTy, CodeGenTypes &Types,
|
||||
/// attributes that restrict how the frontend generates code must be
|
||||
/// added here rather than getDefaultFunctionAttributes.
|
||||
///
|
||||
void CodeGenModule::ConstructAttributeList(
|
||||
StringRef Name, const CGFunctionInfo &FI, CGCalleeInfo CalleeInfo,
|
||||
llvm::AttributeList &AttrList, unsigned &CallingConv, bool AttrOnCallSite,
|
||||
bool IsThunk, const Decl *Caller) {
|
||||
void CodeGenModule::ConstructAttributeList(StringRef Name,
|
||||
const CGFunctionInfo &FI,
|
||||
CGCalleeInfo CalleeInfo,
|
||||
llvm::AttributeList &AttrList,
|
||||
unsigned &CallingConv,
|
||||
bool AttrOnCallSite, bool IsThunk) {
|
||||
llvm::AttrBuilder FuncAttrs;
|
||||
llvm::AttrBuilder RetAttrs;
|
||||
|
||||
@ -2040,12 +2037,9 @@ void CodeGenModule::ConstructAttributeList(
|
||||
|
||||
const Decl *TargetDecl = CalleeInfo.getCalleeDecl().getDecl();
|
||||
|
||||
// Only attach assumptions to call sites in OpenMP mode.
|
||||
bool AssumptionOnCallSite = getLangOpts().OpenMP && AttrOnCallSite;
|
||||
|
||||
// Attach assumption attributes to the declaration. If this is a call
|
||||
// site, attach assumptions from the caller to the call as well.
|
||||
AddAttributesFromAssumes(FuncAttrs, TargetDecl, Caller, AssumptionOnCallSite);
|
||||
AddAttributesFromAssumes(FuncAttrs, TargetDecl);
|
||||
|
||||
bool HasOptnone = false;
|
||||
// The NoBuiltinAttr attached to the target FunctionDecl.
|
||||
@ -5180,7 +5174,7 @@ RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
|
||||
CGM.ConstructAttributeList(CalleePtr->getName(), CallInfo,
|
||||
Callee.getAbstractInfo(), Attrs, CallingConv,
|
||||
/*AttrOnCallSite=*/true,
|
||||
/*IsThunk=*/false, CurFuncDecl);
|
||||
/*IsThunk=*/false);
|
||||
|
||||
if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl))
|
||||
if (FD->hasAttr<StrictFPAttr>())
|
||||
|
||||
@ -2224,20 +2224,6 @@ static void UpdateAsmCallInst(llvm::CallBase &Result, bool HasSideEffect,
|
||||
Result.addFnAttr(llvm::Attribute::ReadOnly);
|
||||
}
|
||||
|
||||
// Attach OpenMP assumption attributes from the caller, if they exist.
|
||||
if (CGF.CGM.getLangOpts().OpenMP) {
|
||||
SmallVector<StringRef, 4> Attrs;
|
||||
|
||||
for (const AssumptionAttr *AA :
|
||||
CGF.CurFuncDecl->specific_attrs<AssumptionAttr>())
|
||||
AA->getAssumption().split(Attrs, ",");
|
||||
|
||||
if (!Attrs.empty())
|
||||
Result.addFnAttr(
|
||||
llvm::Attribute::get(CGF.getLLVMContext(), llvm::AssumptionAttrKey,
|
||||
llvm::join(Attrs.begin(), Attrs.end(), ",")));
|
||||
}
|
||||
|
||||
// Slap the source location of the inline asm into a !srcloc metadata on the
|
||||
// call.
|
||||
if (const auto *gccAsmStmt = dyn_cast<GCCAsmStmt>(&S))
|
||||
|
||||
@ -428,7 +428,7 @@ void CodeGenFunction::EmitMustTailThunk(GlobalDecl GD,
|
||||
llvm::AttributeList Attrs;
|
||||
CGM.ConstructAttributeList(Callee.getCallee()->getName(), *CurFnInfo, GD,
|
||||
Attrs, CallingConv, /*AttrOnCallSite=*/true,
|
||||
/*IsThunk=*/false, CurFuncDecl);
|
||||
/*IsThunk=*/false);
|
||||
Call->setAttributes(Attrs);
|
||||
Call->setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
|
||||
|
||||
|
||||
@ -1200,8 +1200,7 @@ public:
|
||||
void ConstructAttributeList(StringRef Name, const CGFunctionInfo &Info,
|
||||
CGCalleeInfo CalleeInfo,
|
||||
llvm::AttributeList &Attrs, unsigned &CallingConv,
|
||||
bool AttrOnCallSite, bool IsThunk,
|
||||
const Decl *Caller = nullptr);
|
||||
bool AttrOnCallSite, bool IsThunk);
|
||||
|
||||
/// Adds attributes to F according to our CodeGenOptions and LangOptions, as
|
||||
/// though we had emitted it ourselves. We remove any attributes on F that
|
||||
|
||||
@ -67,20 +67,6 @@ int lambda_outer() {
|
||||
}
|
||||
#pragma omp end assumes
|
||||
|
||||
void no_assume() {
|
||||
foo();
|
||||
}
|
||||
|
||||
#pragma omp begin assumes ext_call_site
|
||||
void assume() {
|
||||
foo();
|
||||
}
|
||||
|
||||
void assembly() {
|
||||
asm ("nop");
|
||||
}
|
||||
#pragma omp end assumes ext_call_site
|
||||
|
||||
// AST: void foo() __attribute__((assume("omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses"))) __attribute__((assume("omp_no_openmp"))) {
|
||||
// AST-NEXT: }
|
||||
// AST-NEXT: class BAR {
|
||||
@ -129,41 +115,29 @@ void assembly() {
|
||||
// CHECK: define{{.*}} void @_Z3barv()
|
||||
// CHECK-SAME: [[attr1:#[0-9]]]
|
||||
// CHECK: call{{.*}} @_ZN3BARC1Ev(%class.BAR*{{.*}} %b)
|
||||
// CHECK-SAME: [[attr10:#[0-9]]]
|
||||
// CHECK-SAME: [[attr9:#[0-9]]]
|
||||
// CHECK: define{{.*}} void @_ZN3BARC1Ev(%class.BAR*{{.*}} %this)
|
||||
// CHECK-SAME: [[attr2:#[0-9]]]
|
||||
// CHECK: call{{.*}} @_ZN3BARC2Ev(%class.BAR*{{.*}} %this1)
|
||||
// CHECK-SAME: [[attr10]]
|
||||
// CHECK-SAME: [[attr9]]
|
||||
// CHECK: define{{.*}} void @_ZN3BARC2Ev(%class.BAR*{{.*}} %this)
|
||||
// CHECK-SAME: [[attr3:#[0-9]]]
|
||||
// CHECK: define{{.*}} void @_Z3bazv()
|
||||
// CHECK-SAME: [[attr4:#[0-9]]]
|
||||
// CHECK: call{{.*}} @_ZN3BAZIfEC1Ev(%class.BAZ*{{.*}} %b)
|
||||
// CHECK-SAME: [[attr11:#[0-9]]]
|
||||
// CHECK-SAME: [[attr10:#[0-9]]]
|
||||
// CHECK: define{{.*}} void @_ZN3BAZIfEC1Ev(%class.BAZ*{{.*}} %this)
|
||||
// CHECK-SAME: [[attr5:#[0-9]]]
|
||||
// CHECK: call{{.*}} @_ZN3BAZIfEC2Ev(%class.BAZ*{{.*}} %this1)
|
||||
// CHECK-SAME: [[attr12:#[0-9]]]
|
||||
// CHECK-SAME: [[attr10]]
|
||||
// CHECK: define{{.*}} void @_ZN3BAZIfEC2Ev(%class.BAZ*{{.*}} %this)
|
||||
// CHECK-SAME: [[attr6:#[0-9]]]
|
||||
// CHECK: define{{.*}} i32 @_Z12lambda_outerv()
|
||||
// CHECK-SAME: [[attr7:#[0-9]]]
|
||||
// CHECK: call{{.*}} @"_ZZ12lambda_outervENK3$_0clEv"
|
||||
// CHECK-SAME: [[attr13:#[0-9]]]
|
||||
// CHECK-SAME: [[attr11:#[0-9]]]
|
||||
// CHECK: define{{.*}} i32 @"_ZZ12lambda_outervENK3$_0clEv"(%class.anon*{{.*}} %this)
|
||||
// CHECK-SAME: [[attr8:#[0-9]]]
|
||||
// CHECK: define{{.*}} void @_Z9no_assumev()
|
||||
// CHECK-SAME: [[attr0:#[0-9]]]
|
||||
// CHECK: call{{.*}} @_Z3foov()
|
||||
// CHECK-SAME: [[attr14:#[0-9]]]
|
||||
// CHECK: define{{.*}} void @_Z6assumev()
|
||||
// CHECK-SAME: [[attr9:#[0-9]]]
|
||||
// CHECK: call{{.*}} @_Z3foov()
|
||||
// CHECK-SAME: [[attr15:#[0-9]]]
|
||||
// CHECK: define{{.*}} void @_Z8assemblyv()
|
||||
// CHECK-SAME: [[attr9:#[0-9]]]
|
||||
// CHECK: call{{.*}} void asm sideeffect "nop", "~{dirflag},~{fpsr},~{flags}"()
|
||||
// CHECK-SAME: [[attr16:#[0-9]]]
|
||||
|
||||
// CHECK: attributes [[attr0]]
|
||||
// CHECK-SAME: "llvm.assume"="omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
@ -184,18 +158,8 @@ void assembly() {
|
||||
// CHECK: attributes [[attr8]]
|
||||
// CHECK-SAME: "llvm.assume"="ompx_lambda_assumption,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK: attributes [[attr9]]
|
||||
// CHECK-SAME: "llvm.assume"="ompx_call_site,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK-SAME: "llvm.assume"="ompx_range_bar_only,ompx_range_bar_only_2,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK: attributes [[attr10]]
|
||||
// CHECK-SAME: "llvm.assume"="ompx_range_bar_only,ompx_range_bar_only_2,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,ompx_range_bar_only,ompx_range_bar_only_2,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK-SAME: "llvm.assume"="ompx_1234,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK: attributes [[attr11]]
|
||||
// CHECK-SAME: "llvm.assume"="ompx_1234,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,ompx_1234,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,ompx_1234,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK: attributes [[attr12]]
|
||||
// CHECK-SAME: "llvm.assume"="ompx_1234,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,ompx_1234,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK: attributes [[attr13]]
|
||||
// CHECK-SAME: "llvm.assume"="ompx_lambda_assumption,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,ompx_lambda_assumption,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK: attributes [[attr14]]
|
||||
// CHECK-SAME: "llvm.assume"="omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK: attributes [[attr15]]
|
||||
// CHECK-SAME: "llvm.assume"="omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp,ompx_call_site,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK: attributes [[attr16]]
|
||||
// CHECK-SAME: "llvm.assume"="ompx_call_site,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
// CHECK-SAME: "llvm.assume"="ompx_lambda_assumption,omp_no_openmp_routines,ompx_another_warning,ompx_after_invalid_clauses,omp_no_openmp"
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
// CHECK: attributes [[attr1]]
|
||||
// CHECK-SAME: "llvm.assume"="ompx_check_that_this_is_attached_to_included_functions_and_template_instantiations"
|
||||
// CHECK: attributes [[attr2]]
|
||||
// CHECK-SAME: "llvm.assume"="ompx_check_that_this_is_attached_to_included_functions_and_template_instantiations,ompx_check_that_this_is_attached_to_included_functions_and_template_instantiations"
|
||||
// CHECK-SAME: "llvm.assume"="ompx_check_that_this_is_attached_to_included_functions_and_template_instantiations"
|
||||
|
||||
|
||||
template <typename T>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user