|
11 | 11 |
|
12 | 12 | use libc::c_uint;
|
13 | 13 | use llvm::{self, ValueRef};
|
14 |
| -use session::config::NoDebugInfo; |
15 | 14 | pub use syntax::attr::InlineAttr;
|
16 | 15 | use syntax::ast;
|
17 | 16 | use context::CrateContext;
|
@@ -74,25 +73,28 @@ pub fn naked(val: ValueRef, is_naked: bool) {
|
74 | 73 | }
|
75 | 74 | }
|
76 | 75 |
|
77 |
| -/// Composite function which sets LLVM attributes for function depending on its AST (#[attribute]) |
78 |
| -/// attributes. |
79 |
| -pub fn from_fn_attrs(ccx: &CrateContext, attrs: &[ast::Attribute], llfn: ValueRef) { |
80 |
| - use syntax::attr::*; |
81 |
| - inline(llfn, find_inline_attr(Some(ccx.sess().diagnostic()), attrs)); |
82 |
| - |
| 76 | +pub fn set_frame_pointer_elimination(ccx: &CrateContext, llfn: ValueRef) { |
83 | 77 | // FIXME: #11906: Omitting frame pointers breaks retrieving the value of a
|
84 | 78 | // parameter.
|
85 |
| - let no_fp_elim = (ccx.sess().opts.debuginfo != NoDebugInfo) || |
86 |
| - !ccx.sess().target.target.options.eliminate_frame_pointer; |
87 |
| - if no_fp_elim { |
| 79 | + if ccx.sess().must_not_eliminate_frame_pointers() { |
88 | 80 | unsafe {
|
89 | 81 | let attr = "no-frame-pointer-elim\0".as_ptr() as *const _;
|
90 | 82 | let val = "true\0".as_ptr() as *const _;
|
91 | 83 | llvm::LLVMAddFunctionAttrStringValue(llfn,
|
92 | 84 | llvm::FunctionIndex as c_uint,
|
93 |
| - attr, val); |
| 85 | + attr, |
| 86 | + val); |
94 | 87 | }
|
95 | 88 | }
|
| 89 | +} |
| 90 | + |
| 91 | +/// Composite function which sets LLVM attributes for function depending on its AST (#[attribute]) |
| 92 | +/// attributes. |
| 93 | +pub fn from_fn_attrs(ccx: &CrateContext, attrs: &[ast::Attribute], llfn: ValueRef) { |
| 94 | + use syntax::attr::*; |
| 95 | + inline(llfn, find_inline_attr(Some(ccx.sess().diagnostic()), attrs)); |
| 96 | + |
| 97 | + set_frame_pointer_elimination(ccx, llfn); |
96 | 98 |
|
97 | 99 | for attr in attrs {
|
98 | 100 | if attr.check_name("cold") {
|
|
0 commit comments