Skip to content

Commit fa01ce8

Browse files
committed
cg_llvm: fewer_names in uncached_llvm_type
This commit changes `uncached_llvm_type` so that a named struct type (with an empty name) is always created when the `fewer_names` option is enabled. By skipping the generation of names, we can improve perf. Giving `LLVMStructCreateNamed` an empty name works because LLVM will perform random renames to avoid collisions. Signed-off-by: David Wood <[email protected]>
1 parent 6c44bcc commit fa01ce8

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

compiler/rustc_codegen_llvm/src/type_of.rs

+14-10
Original file line numberDiff line numberDiff line change
@@ -51,30 +51,34 @@ fn uncached_llvm_type<'a, 'tcx>(
5151
}
5252

5353
let name = match layout.ty.kind {
54-
ty::Closure(..) |
55-
ty::Generator(..) |
56-
ty::Adt(..) |
5754
// FIXME(eddyb) producing readable type names for trait objects can result
5855
// in problematically distinct types due to HRTB and subtyping (see #47638).
5956
// ty::Dynamic(..) |
60-
ty::Foreign(..) |
61-
ty::Str => {
57+
ty::Adt(..) | ty::Closure(..) | ty::Foreign(..) | ty::Generator(..) | ty::Str
58+
if !cx.sess().fewer_names() =>
59+
{
6260
let mut name = layout.ty.to_string();
63-
if let (&ty::Adt(def, _), &Variants::Single { index })
64-
= (&layout.ty.kind, &layout.variants)
61+
if let (&ty::Adt(def, _), &Variants::Single { index }) =
62+
(&layout.ty.kind, &layout.variants)
6563
{
6664
if def.is_enum() && !def.variants.is_empty() {
6765
write!(&mut name, "::{}", def.variants[index].ident).unwrap();
6866
}
6967
}
70-
if let (&ty::Generator(_, _, _), &Variants::Single { index })
71-
= (&layout.ty.kind, &layout.variants)
68+
if let (&ty::Generator(_, _, _), &Variants::Single { index }) =
69+
(&layout.ty.kind, &layout.variants)
7270
{
7371
write!(&mut name, "::{}", ty::GeneratorSubsts::variant_name(index)).unwrap();
7472
}
7573
Some(name)
7674
}
77-
_ => None
75+
ty::Adt(..) => {
76+
// If `Some` is returned then a named struct is created in LLVM. Name collisions are
77+
// avoided by LLVM (with increasing suffixes). If rustc doesn't generate names then that
78+
// can improve perf.
79+
Some(String::new())
80+
}
81+
_ => None,
7882
};
7983

8084
match layout.fields {

0 commit comments

Comments
 (0)