2015-04-24 17:25:35 +12:00
|
|
|
// Namespace Handling.
|
2015-04-24 16:00:47 +12:00
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
use super::utils::{debug_context, DIB};
|
2020-03-29 16:41:09 +02:00
|
|
|
use rustc_middle::ty::{self, Instance};
|
2015-04-24 16:00:47 +12:00
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
use crate::common::CodegenCx;
|
2019-02-18 03:58:58 +09:00
|
|
|
use crate::llvm;
|
|
|
|
use crate::llvm::debuginfo::DIScope;
|
2020-01-05 02:37:57 +01:00
|
|
|
use rustc_hir::def_id::DefId;
|
2020-09-01 13:11:28 +01:00
|
|
|
use rustc_hir::definitions::DefPathData;
|
2015-04-24 16:00:47 +12:00
|
|
|
|
2017-12-20 21:28:10 -08:00
|
|
|
pub fn mangled_name_of_instance<'a, 'tcx>(
|
2018-01-05 07:04:08 +02:00
|
|
|
cx: &CodegenCx<'a, 'tcx>,
|
2017-12-20 21:28:10 -08:00
|
|
|
instance: Instance<'tcx>,
|
2020-07-10 15:45:05 +10:00
|
|
|
) -> ty::SymbolName<'tcx> {
|
2019-12-22 17:42:04 -05:00
|
|
|
let tcx = cx.tcx;
|
|
|
|
tcx.symbol_name(instance)
|
2016-04-06 15:37:19 +03:00
|
|
|
}
|
2016-04-06 13:51:55 +03:00
|
|
|
|
2018-07-04 16:36:49 +03:00
|
|
|
pub fn item_namespace(cx: &CodegenCx<'ll, '_>, def_id: DefId) -> &'ll DIScope {
|
2018-01-05 07:04:08 +02:00
|
|
|
if let Some(&scope) = debug_context(cx).namespace_map.borrow().get(&def_id) {
|
2016-04-06 15:37:19 +03:00
|
|
|
return scope;
|
2016-04-06 13:51:55 +03:00
|
|
|
}
|
|
|
|
|
2018-01-05 07:04:08 +02:00
|
|
|
let def_key = cx.tcx.def_key(def_id);
|
2019-12-22 17:42:04 -05:00
|
|
|
let parent_scope = def_key
|
|
|
|
.parent
|
|
|
|
.map(|parent| item_namespace(cx, DefId { krate: def_id.krate, index: parent }));
|
2016-04-06 15:37:19 +03:00
|
|
|
|
2020-09-23 23:38:38 +01:00
|
|
|
let crate_name_as_str;
|
|
|
|
let name_to_string;
|
2016-04-06 15:37:19 +03:00
|
|
|
let namespace_name = match def_key.disambiguated_data.data {
|
2020-09-23 23:38:38 +01:00
|
|
|
DefPathData::CrateRoot => {
|
|
|
|
crate_name_as_str = cx.tcx.crate_name(def_id.krate).as_str();
|
|
|
|
&*crate_name_as_str
|
|
|
|
}
|
|
|
|
data => {
|
|
|
|
name_to_string = data.to_string();
|
|
|
|
&*name_to_string
|
|
|
|
}
|
2016-04-06 15:37:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
let scope = unsafe {
|
2016-08-02 02:35:09 +03:00
|
|
|
llvm::LLVMRustDIBuilderCreateNameSpace(
|
2018-01-05 07:04:08 +02:00
|
|
|
DIB(cx),
|
2016-04-06 15:37:19 +03:00
|
|
|
parent_scope,
|
2020-03-06 00:00:00 +00:00
|
|
|
namespace_name.as_ptr().cast(),
|
|
|
|
namespace_name.len(),
|
|
|
|
false, // ExportSymbols (only relevant for C++ anonymous namespaces)
|
2019-12-22 17:42:04 -05:00
|
|
|
)
|
2016-04-06 15:37:19 +03:00
|
|
|
};
|
|
|
|
|
2018-01-05 07:04:08 +02:00
|
|
|
debug_context(cx).namespace_map.borrow_mut().insert(def_id, scope);
|
2016-04-06 15:37:19 +03:00
|
|
|
scope
|
2015-04-24 16:00:47 +12:00
|
|
|
}
|