2013-04-10 07:47:22 -05:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2013-03-27 14:50:57 -05:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
/*!
|
|
|
|
# Translation of inline assembly.
|
|
|
|
*/
|
|
|
|
|
2013-08-03 19:13:14 -05:00
|
|
|
use std::c_str::ToCStr;
|
2013-05-17 17:28:44 -05:00
|
|
|
|
2013-03-27 14:50:57 -05:00
|
|
|
use lib;
|
|
|
|
use middle::trans::build::*;
|
|
|
|
use middle::trans::callee;
|
|
|
|
use middle::trans::common::*;
|
2013-10-17 13:24:41 -05:00
|
|
|
use middle::trans::expr::*;
|
|
|
|
use middle::trans::type_of::*;
|
2013-03-27 14:50:57 -05:00
|
|
|
use middle::ty;
|
|
|
|
|
2013-06-16 05:52:44 -05:00
|
|
|
use middle::trans::type_::Type;
|
|
|
|
|
2013-03-27 14:50:57 -05:00
|
|
|
use syntax::ast;
|
|
|
|
|
|
|
|
// Take an inline assembly expression and splat it out via LLVM
|
2013-12-18 16:54:42 -06:00
|
|
|
pub fn trans_inline_asm(bcx: @Block, ia: &ast::inline_asm) -> @Block {
|
2013-03-27 14:50:57 -05:00
|
|
|
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let mut constraints = ~[];
|
|
|
|
let mut cleanups = ~[];
|
2013-10-17 13:24:41 -05:00
|
|
|
let mut output_types = ~[];
|
2013-03-27 14:50:57 -05:00
|
|
|
|
|
|
|
// Prepare the output operands
|
2013-11-21 17:42:55 -06:00
|
|
|
let outputs = ia.outputs.map(|&(c, out)| {
|
2013-06-12 12:02:55 -05:00
|
|
|
constraints.push(c);
|
2013-03-27 14:50:57 -05:00
|
|
|
|
2013-10-17 13:24:41 -05:00
|
|
|
let out_datum = unpack_datum!(bcx, trans_to_datum(bcx, out));
|
|
|
|
output_types.push(type_of(bcx.ccx(), out_datum.ty));
|
|
|
|
out_datum.val
|
2013-03-27 14:50:57 -05:00
|
|
|
|
2013-11-21 17:42:55 -06:00
|
|
|
});
|
2013-03-27 14:50:57 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for c in cleanups.iter() {
|
2013-03-27 14:50:57 -05:00
|
|
|
revoke_clean(bcx, *c);
|
|
|
|
}
|
|
|
|
cleanups.clear();
|
|
|
|
|
|
|
|
// Now the input operands
|
2013-11-21 17:42:55 -06:00
|
|
|
let inputs = ia.inputs.map(|&(c, input)| {
|
2013-06-12 12:02:55 -05:00
|
|
|
constraints.push(c);
|
2013-03-27 14:50:57 -05:00
|
|
|
|
|
|
|
unpack_result!(bcx, {
|
2013-04-24 03:29:46 -05:00
|
|
|
callee::trans_arg_expr(bcx,
|
2013-07-31 16:59:59 -05:00
|
|
|
expr_ty(bcx, input),
|
2013-04-24 03:29:46 -05:00
|
|
|
ty::ByCopy,
|
2013-07-31 16:59:59 -05:00
|
|
|
input,
|
2013-04-24 03:29:46 -05:00
|
|
|
&mut cleanups,
|
|
|
|
callee::DontAutorefArg)
|
2013-03-27 14:50:57 -05:00
|
|
|
})
|
2013-11-21 17:42:55 -06:00
|
|
|
});
|
2013-03-27 14:50:57 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for c in cleanups.iter() {
|
2013-03-27 14:50:57 -05:00
|
|
|
revoke_clean(bcx, *c);
|
|
|
|
}
|
|
|
|
|
2013-06-10 08:25:25 -05:00
|
|
|
let mut constraints = constraints.connect(",");
|
2013-03-27 14:50:57 -05:00
|
|
|
|
2013-03-27 17:37:28 -05:00
|
|
|
let mut clobbers = getClobbers();
|
2013-06-12 12:02:55 -05:00
|
|
|
if !ia.clobbers.is_empty() && !clobbers.is_empty() {
|
2013-09-28 00:38:08 -05:00
|
|
|
clobbers = format!("{},{}", ia.clobbers, clobbers);
|
2013-03-27 17:37:28 -05:00
|
|
|
} else {
|
2013-06-14 21:40:11 -05:00
|
|
|
clobbers.push_str(ia.clobbers);
|
2013-10-17 13:24:41 -05:00
|
|
|
}
|
2013-03-27 17:37:28 -05:00
|
|
|
|
2013-03-27 14:50:57 -05:00
|
|
|
// Add the clobbers to our constraints list
|
2013-06-11 21:13:42 -05:00
|
|
|
if clobbers.len() != 0 && constraints.len() != 0 {
|
|
|
|
constraints.push_char(',');
|
|
|
|
constraints.push_str(clobbers);
|
2013-03-27 14:50:57 -05:00
|
|
|
} else {
|
2013-06-11 21:13:42 -05:00
|
|
|
constraints.push_str(clobbers);
|
2013-03-27 14:50:57 -05:00
|
|
|
}
|
|
|
|
|
2013-10-21 15:08:31 -05:00
|
|
|
debug!("Asm Constraints: {:?}", constraints);
|
2013-03-27 14:50:57 -05:00
|
|
|
|
|
|
|
let numOutputs = outputs.len();
|
|
|
|
|
|
|
|
// Depending on how many outputs we have, the return type is different
|
2013-10-17 13:24:41 -05:00
|
|
|
let output_type = if numOutputs == 0 {
|
2013-06-15 09:29:52 -05:00
|
|
|
Type::void()
|
2013-03-27 14:50:57 -05:00
|
|
|
} else if numOutputs == 1 {
|
2013-10-17 13:24:41 -05:00
|
|
|
output_types[0]
|
2013-03-27 14:50:57 -05:00
|
|
|
} else {
|
2013-10-17 13:24:41 -05:00
|
|
|
Type::struct_(output_types, false)
|
2013-03-27 14:50:57 -05:00
|
|
|
};
|
|
|
|
|
2013-03-27 16:42:19 -05:00
|
|
|
let dialect = match ia.dialect {
|
|
|
|
ast::asm_att => lib::llvm::AD_ATT,
|
|
|
|
ast::asm_intel => lib::llvm::AD_Intel
|
|
|
|
};
|
|
|
|
|
2013-11-21 17:42:55 -06:00
|
|
|
let r = ia.asm.with_c_str(|a| {
|
|
|
|
constraints.with_c_str(|c| {
|
2013-10-17 13:24:41 -05:00
|
|
|
InlineAsmCall(bcx, a, c, inputs, output_type, ia.volatile, ia.alignstack, dialect)
|
2013-11-21 17:42:55 -06:00
|
|
|
})
|
|
|
|
});
|
2013-03-27 14:50:57 -05:00
|
|
|
|
2013-03-28 18:34:10 -05:00
|
|
|
// Again, based on how many outputs we have
|
2013-03-27 14:50:57 -05:00
|
|
|
if numOutputs == 1 {
|
2013-10-17 13:24:41 -05:00
|
|
|
Store(bcx, r, outputs[0]);
|
2013-03-27 14:50:57 -05:00
|
|
|
} else {
|
2013-10-17 13:24:41 -05:00
|
|
|
for (i, o) in outputs.iter().enumerate() {
|
2013-03-27 14:50:57 -05:00
|
|
|
let v = ExtractValue(bcx, r, i);
|
2013-10-17 13:24:41 -05:00
|
|
|
Store(bcx, v, *o);
|
2013-03-27 14:50:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return bcx;
|
|
|
|
|
|
|
|
}
|
2013-03-27 17:37:28 -05:00
|
|
|
|
|
|
|
// Default per-arch clobbers
|
|
|
|
// Basically what clang does
|
|
|
|
|
|
|
|
#[cfg(target_arch = "arm")]
|
|
|
|
#[cfg(target_arch = "mips")]
|
|
|
|
fn getClobbers() -> ~str {
|
|
|
|
~""
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_arch = "x86")]
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
fn getClobbers() -> ~str {
|
|
|
|
~"~{dirflag},~{fpsr},~{flags}"
|
|
|
|
}
|