Skip to content

Commit f40985b

Browse files
committed
Add new TransItem for global_asm trans
1 parent 9ffc347 commit f40985b

File tree

5 files changed

+63
-15
lines changed

5 files changed

+63
-15
lines changed

src/librustc_trans/asm.rs

+8
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,11 @@ pub fn trans_inline_asm<'a, 'tcx>(
124124
llvm::LLVMMDNodeInContext(bcx.ccx.llcx(), &val, 1));
125125
}
126126
}
127+
128+
pub fn trans_global_asm<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>,
129+
ga: &hir::GlobalAsm) {
130+
let asm = CString::new(ga.asm.as_str().as_bytes()).unwrap();
131+
unsafe {
132+
llvm::LLVMSetModuleInlineAsm(ccx.llmod(), asm.as_ptr());
133+
}
134+
}

src/librustc_trans/collector.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ fn collect_items_rec<'a, 'tcx: 'a>(scx: &SharedCrateContext<'a, 'tcx>,
361361

362362
collect_neighbours(scx, instance, &mut neighbors);
363363
}
364+
TransItem::GlobalAsm(..) => {
365+
recursion_depth_reset = None;
366+
}
364367
}
365368

366369
record_inlining_canditates(scx.tcx(), starting_point, &neighbors[..], inlining_map);
@@ -1157,7 +1160,6 @@ impl<'b, 'a, 'v> ItemLikeVisitor<'v> for RootCollector<'b, 'a, 'v> {
11571160
hir::ItemExternCrate(..) |
11581161
hir::ItemUse(..) |
11591162
hir::ItemForeignMod(..) |
1160-
hir::ItemGlobalAsm(..) |
11611163
hir::ItemTy(..) |
11621164
hir::ItemDefaultImpl(..) |
11631165
hir::ItemTrait(..) |
@@ -1188,6 +1190,12 @@ impl<'b, 'a, 'v> ItemLikeVisitor<'v> for RootCollector<'b, 'a, 'v> {
11881190
}
11891191
}
11901192
}
1193+
hir::ItemGlobalAsm(..) => {
1194+
debug!("RootCollector: ItemGlobalAsm({})",
1195+
def_id_to_string(self.scx.tcx(),
1196+
self.scx.tcx().hir.local_def_id(item.id)));
1197+
self.output.push(TransItem::GlobalAsm(item.id));
1198+
}
11911199
hir::ItemStatic(..) => {
11921200
debug!("RootCollector: ItemStatic({})",
11931201
def_id_to_string(self.scx.tcx(),

src/librustc_trans/partitioning.rs

+14-9
Original file line numberDiff line numberDiff line change
@@ -185,15 +185,16 @@ impl<'tcx> CodegenUnit<'tcx> {
185185
symbol_name.len().hash(&mut state);
186186
symbol_name.hash(&mut state);
187187
let exported = match item {
188-
TransItem::Fn(ref instance) => {
188+
TransItem::Fn(ref instance) => {
189189
let node_id = scx.tcx().hir.as_local_node_id(instance.def);
190190
node_id.map(|node_id| exported_symbols.contains(&node_id))
191-
.unwrap_or(false)
192-
}
193-
TransItem::Static(node_id) => {
191+
.unwrap_or(false)
192+
}
193+
TransItem::Static(node_id) => {
194194
exported_symbols.contains(&node_id)
195-
}
196-
TransItem::DropGlue(..) => false,
195+
}
196+
TransItem::DropGlue(..) => false,
197+
TransItem::GlobalAsm(..) => true,
197198
};
198199
exported.hash(&mut state);
199200
}
@@ -243,7 +244,9 @@ impl<'tcx> CodegenUnit<'tcx> {
243244
TransItem::Fn(instance) => {
244245
tcx.hir.as_local_node_id(instance.def)
245246
}
246-
TransItem::Static(node_id) => Some(node_id),
247+
TransItem::Static(node_id) | TransItem::GlobalAsm(node_id) => {
248+
Some(node_id)
249+
}
247250
TransItem::DropGlue(_) => None,
248251
}
249252
}
@@ -339,7 +342,8 @@ fn place_root_translation_items<'a, 'tcx, I>(scx: &SharedCrateContext<'a, 'tcx>,
339342
None => {
340343
match trans_item {
341344
TransItem::Fn(..) |
342-
TransItem::Static(..) => llvm::ExternalLinkage,
345+
TransItem::Static(..) |
346+
TransItem::GlobalAsm(..) => llvm::ExternalLinkage,
343347
TransItem::DropGlue(..) => unreachable!(),
344348
}
345349
}
@@ -477,7 +481,8 @@ fn characteristic_def_id_of_trans_item<'a, 'tcx>(scx: &SharedCrateContext<'a, 't
477481
Some(instance.def)
478482
}
479483
TransItem::DropGlue(dg) => characteristic_def_id_of_type(dg.ty()),
480-
TransItem::Static(node_id) => Some(tcx.hir.local_def_id(node_id)),
484+
TransItem::Static(node_id) |
485+
TransItem::GlobalAsm(node_id) => Some(tcx.hir.local_def_id(node_id)),
481486
}
482487
}
483488

src/librustc_trans/symbol_map.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@ impl<'tcx> SymbolMap<'tcx> {
9999
TransItem::Fn(Instance { def, .. }) => {
100100
tcx.hir.as_local_node_id(def)
101101
}
102-
TransItem::Static(node_id) => Some(node_id),
102+
TransItem::Static(node_id) |
103+
TransItem::GlobalAsm(node_id) => {
104+
Some(node_id)
105+
}
103106
TransItem::DropGlue(_) => None,
104107
}.map(|node_id| {
105108
tcx.hir.span(node_id)

src/librustc_trans/trans_item.rs

+28-4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
//! item-path. This is used for unit testing the code that generates
1515
//! paths etc in all kinds of annoying scenarios.
1616
17+
use asm;
1718
use attributes;
1819
use base;
1920
use consts;
@@ -42,7 +43,8 @@ use std::iter;
4243
pub enum TransItem<'tcx> {
4344
DropGlue(DropGlueKind<'tcx>),
4445
Fn(Instance<'tcx>),
45-
Static(NodeId)
46+
Static(NodeId),
47+
GlobalAsm(NodeId),
4648
}
4749

4850
/// Describes how a translation item will be instantiated in object files.
@@ -93,6 +95,14 @@ impl<'a, 'tcx> TransItem<'tcx> {
9395
span_bug!(item.span, "Mismatch between hir::Item type and TransItem type")
9496
}
9597
}
98+
TransItem::GlobalAsm(node_id) => {
99+
let item = ccx.tcx().hir.expect_item(node_id);
100+
if let hir::ItemGlobalAsm(ref ga) = item.node {
101+
asm::trans_global_asm(ccx, ga);
102+
} else {
103+
span_bug!(item.span, "Mismatch between hir::Item type and TransItem type")
104+
}
105+
}
96106
TransItem::Fn(instance) => {
97107
let _task = ccx.tcx().dep_graph.in_task(
98108
DepNode::TransCrateItem(instance.def)); // (*)
@@ -133,6 +143,7 @@ impl<'a, 'tcx> TransItem<'tcx> {
133143
TransItem::DropGlue(dg) => {
134144
TransItem::predefine_drop_glue(ccx, dg, linkage, &symbol_name);
135145
}
146+
TransItem::GlobalAsm(..) => {}
136147
}
137148

138149
debug!("END PREDEFINING '{} ({})' in cgu {}",
@@ -235,14 +246,19 @@ impl<'a, 'tcx> TransItem<'tcx> {
235246
};
236247
symbol_names::exported_name_from_type_and_prefix(scx, dg.ty(), prefix)
237248
}
249+
TransItem::GlobalAsm(node_id) => {
250+
let def_id = scx.tcx().hir.local_def_id(node_id);
251+
format!("global_asm_{:?}", def_id)
252+
}
238253
}
239254
}
240255

241256
pub fn is_from_extern_crate(&self) -> bool {
242257
match *self {
243258
TransItem::Fn(ref instance) => !instance.def.is_local(),
244259
TransItem::DropGlue(..) |
245-
TransItem::Static(..) => false,
260+
TransItem::Static(..) |
261+
TransItem::GlobalAsm(..) => false,
246262
}
247263
}
248264

@@ -261,6 +277,7 @@ impl<'a, 'tcx> TransItem<'tcx> {
261277
}
262278
TransItem::DropGlue(..) => InstantiationMode::LocalCopy,
263279
TransItem::Static(..) => InstantiationMode::GloballyShared,
280+
TransItem::GlobalAsm(..) => InstantiationMode::GloballyShared,
264281
}
265282
}
266283

@@ -270,15 +287,16 @@ impl<'a, 'tcx> TransItem<'tcx> {
270287
instance.substs.types().next().is_some()
271288
}
272289
TransItem::DropGlue(..) |
273-
TransItem::Static(..) => false,
290+
TransItem::Static(..) |
291+
TransItem::GlobalAsm(..) => false,
274292
}
275293
}
276294

277295
pub fn explicit_linkage(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>) -> Option<llvm::Linkage> {
278296
let def_id = match *self {
279297
TransItem::Fn(ref instance) => instance.def,
280298
TransItem::Static(node_id) => tcx.hir.local_def_id(node_id),
281-
TransItem::DropGlue(..) => return None,
299+
TransItem::DropGlue(..) | TransItem::GlobalAsm(..) => return None,
282300
};
283301

284302
let attributes = tcx.get_attrs(def_id);
@@ -320,6 +338,9 @@ impl<'a, 'tcx> TransItem<'tcx> {
320338
let instance = Instance::new(def_id, tcx.intern_substs(&[]));
321339
to_string_internal(tcx, "static ", instance)
322340
},
341+
TransItem::GlobalAsm(..) => {
342+
"global_asm".to_string()
343+
}
323344
};
324345

325346
fn to_string_internal<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
@@ -351,6 +372,9 @@ impl<'a, 'tcx> TransItem<'tcx> {
351372
TransItem::Static(id) => {
352373
format!("Static({:?})", id)
353374
}
375+
TransItem::GlobalAsm(id) => {
376+
format!("GlobalAsm({:?})", id)
377+
}
354378
}
355379
}
356380
}

0 commit comments

Comments
 (0)