Skip to content

Commit 9b5c577

Browse files
committed
rustc_trans: avoid a separate entry BB if START_BLOCK has no backedges.
1 parent cb3c4d0 commit 9b5c577

File tree

3 files changed

+49
-18
lines changed

3 files changed

+49
-18
lines changed

src/librustc_trans/debuginfo/metadata.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,8 @@ pub fn compile_unit_metadata(scc: &SharedCrateContext,
784784
};
785785

786786
debug!("compile_unit_metadata: {:?}", compile_unit_name);
787-
let producer = format!("rustc version {}",
787+
// FIXME(#41252) Remove "clang LLVM" if we can get GDB and LLVM to play nice.
788+
let producer = format!("clang LLVM (rustc version {})",
788789
(option_env!("CFG_VERSION")).expect("CFG_VERSION"));
789790

790791
let compile_unit_name = compile_unit_name.as_ptr();

src/librustc_trans/mir/mod.rs

+10-7
Original file line numberDiff line numberDiff line change
@@ -195,15 +195,17 @@ pub fn trans_mir<'a, 'tcx: 'a>(
195195
debug!("fn_ty: {:?}", fn_ty);
196196
let debug_context =
197197
debuginfo::create_function_debug_context(ccx, instance, sig, llfn, mir);
198-
let bcx = Builder::new_block(ccx, llfn, "entry-block");
198+
let bcx = Builder::new_block(ccx, llfn, "start");
199199

200200
let cleanup_kinds = analyze::cleanup_kinds(&mir);
201201

202-
// Allocate a `Block` for every basic block
202+
// Allocate a `Block` for every basic block, except
203+
// the start block, if nothing loops back to it.
204+
let reentrant_start_block = !mir.predecessors_for(mir::START_BLOCK).is_empty();
203205
let block_bcxs: IndexVec<mir::BasicBlock, BasicBlockRef> =
204206
mir.basic_blocks().indices().map(|bb| {
205-
if bb == mir::START_BLOCK {
206-
bcx.build_sibling_block("start").llbb()
207+
if bb == mir::START_BLOCK && !reentrant_start_block {
208+
bcx.llbb()
207209
} else {
208210
bcx.build_sibling_block(&format!("{:?}", bb)).llbb()
209211
}
@@ -289,9 +291,10 @@ pub fn trans_mir<'a, 'tcx: 'a>(
289291
.collect()
290292
};
291293

292-
// Branch to the START block
293-
let start_bcx = mircx.blocks[mir::START_BLOCK];
294-
bcx.br(start_bcx);
294+
// Branch to the START block, if it's not the entry block.
295+
if reentrant_start_block {
296+
bcx.br(mircx.blocks[mir::START_BLOCK]);
297+
}
295298

296299
// Up until here, IR instructions for this function have explicitly not been annotated with
297300
// source code location, so we don't step into call setup code. From here on, source location

src/test/codegen/naked-functions.rs

+37-10
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,28 @@
2020
#[no_mangle]
2121
#[naked]
2222
fn naked_empty() {
23-
// CHECK: ret void
23+
// CHECK-NEXT: {{.+}}:
24+
// CHECK-NEXT: ret void
2425
}
2526

2627
// CHECK: Function Attrs: naked uwtable
2728
#[no_mangle]
2829
#[naked]
2930
// CHECK-NEXT: define internal void @naked_with_args(i{{[0-9]+}})
3031
fn naked_with_args(a: isize) {
31-
// CHECK: %a = alloca i{{[0-9]+}}
32-
// CHECK: ret void
32+
// CHECK-NEXT: {{.+}}:
33+
// CHECK-NEXT: %a = alloca i{{[0-9]+}}
3334
&a; // keep variable in an alloca
35+
// CHECK: ret void
3436
}
3537

3638
// CHECK: Function Attrs: naked uwtable
3739
// CHECK-NEXT: define internal i{{[0-9]+}} @naked_with_return()
3840
#[no_mangle]
3941
#[naked]
4042
fn naked_with_return() -> isize {
41-
// CHECK: ret i{{[0-9]+}} 0
43+
// CHECK-NEXT: {{.+}}:
44+
// CHECK-NEXT: ret i{{[0-9]+}} 0
4245
0
4346
}
4447

@@ -47,9 +50,10 @@ fn naked_with_return() -> isize {
4750
#[no_mangle]
4851
#[naked]
4952
fn naked_with_args_and_return(a: isize) -> isize {
50-
// CHECK: %a = alloca i{{[0-9]+}}
51-
// CHECK: ret i{{[0-9]+}} %{{[0-9]+}}
53+
// CHECK-NEXT: {{.+}}:
54+
// CHECK-NEXT: %a = alloca i{{[0-9]+}}
5255
&a; // keep variable in an alloca
56+
// CHECK: ret i{{[0-9]+}} %{{[0-9]+}}
5357
a
5458
}
5559

@@ -58,14 +62,37 @@ fn naked_with_args_and_return(a: isize) -> isize {
5862
#[no_mangle]
5963
#[naked]
6064
fn naked_recursive() {
61-
// CHECK: call void @naked_empty()
65+
// CHECK-NEXT: {{.+}}:
66+
// CHECK-NEXT: call void @naked_empty()
67+
68+
// FIXME(#39685) Avoid one block per call.
69+
// CHECK-NEXT: br label %bb1
70+
// CHECK: bb1:
71+
6272
naked_empty();
63-
// CHECK: %{{[0-9]+}} = call i{{[0-9]+}} @naked_with_return()
73+
74+
// CHECK-NEXT: %{{[0-9]+}} = call i{{[0-9]+}} @naked_with_return()
75+
76+
// FIXME(#39685) Avoid one block per call.
77+
// CHECK-NEXT: br label %bb2
78+
// CHECK: bb2:
79+
80+
// CHECK-NEXT: %{{[0-9]+}} = call i{{[0-9]+}} @naked_with_args_and_return(i{{[0-9]+}} %{{[0-9]+}})
81+
82+
// FIXME(#39685) Avoid one block per call.
83+
// CHECK-NEXT: br label %bb3
84+
// CHECK: bb3:
85+
86+
// CHECK-NEXT: call void @naked_with_args(i{{[0-9]+}} %{{[0-9]+}})
87+
88+
// FIXME(#39685) Avoid one block per call.
89+
// CHECK-NEXT: br label %bb4
90+
// CHECK: bb4:
91+
6492
naked_with_args(
65-
// CHECK: %{{[0-9]+}} = call i{{[0-9]+}} @naked_with_args_and_return(i{{[0-9]+}} %{{[0-9]+}})
6693
naked_with_args_and_return(
67-
// CHECK: call void @naked_with_args(i{{[0-9]+}} %{{[0-9]+}})
6894
naked_with_return()
6995
)
7096
);
97+
// CHECK-NEXT: ret void
7198
}

0 commit comments

Comments
 (0)