mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-03 19:15:30 +00:00
fix minsize detection: minsize attribute implies optimizing for size
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244463 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3758d95e05
commit
8fc705702c
@ -24127,10 +24127,7 @@ static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
|
||||
return SDValue();
|
||||
|
||||
// fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
|
||||
MachineFunction &MF = DAG.getMachineFunction();
|
||||
// FIXME: Use Function::optForSize().
|
||||
bool OptForSize =
|
||||
MF.getFunction()->hasFnAttribute(Attribute::OptimizeForSize);
|
||||
bool OptForSize = DAG.getMachineFunction().getFunction()->optForSize();
|
||||
|
||||
// SHLD/SHRD instructions have lower register pressure, but on some
|
||||
// platforms they have higher latency than the equivalent
|
||||
|
@ -9,7 +9,7 @@
|
||||
; return (a << 10) | (b >> 54);
|
||||
; }
|
||||
|
||||
; Function Attrs: minsize nounwind optsize readnone uwtable
|
||||
; Function Attrs: minsize nounwind readnone uwtable
|
||||
define i64 @_Z8lshift10mm(i64 %a, i64 %b) #0 {
|
||||
entry:
|
||||
; CHECK: shldq $10
|
||||
@ -19,7 +19,7 @@ entry:
|
||||
ret i64 %or
|
||||
}
|
||||
|
||||
attributes #0 = { minsize nounwind optsize readnone uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
||||
attributes #0 = { minsize nounwind readnone uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
||||
|
||||
|
||||
; clang -Os -c test2.cpp -emit-llvm -S
|
||||
|
Loading…
x
Reference in New Issue
Block a user