2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// 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.
|
|
|
|
|
2011-08-04 12:46:10 -05:00
|
|
|
// A "shape" is a compact encoding of a type that is used by interpreted glue.
|
|
|
|
// This substitutes for the runtime tags used by e.g. MLs.
|
|
|
|
|
2013-01-07 16:16:52 -06:00
|
|
|
|
2012-12-13 15:05:22 -06:00
|
|
|
use back::abi;
|
2012-09-04 13:54:36 -05:00
|
|
|
use lib::llvm::llvm;
|
|
|
|
use lib::llvm::{True, False, ModuleRef, TypeRef, ValueRef};
|
2012-12-13 15:05:22 -06:00
|
|
|
use middle::trans::base;
|
2012-09-04 13:54:36 -05:00
|
|
|
use middle::trans::common::*;
|
2012-09-25 17:21:16 -05:00
|
|
|
use middle::trans::machine::*;
|
2012-12-23 16:41:37 -06:00
|
|
|
use middle::trans;
|
2012-09-04 13:54:36 -05:00
|
|
|
use middle::ty::field;
|
2012-12-13 15:05:22 -06:00
|
|
|
use middle::ty;
|
2012-09-04 13:54:36 -05:00
|
|
|
use util::ppaux::ty_to_str;
|
2011-08-04 12:46:10 -05:00
|
|
|
|
2012-12-13 15:05:22 -06:00
|
|
|
use core::dvec::DVec;
|
|
|
|
use core::option::is_some;
|
2012-12-23 16:41:37 -06:00
|
|
|
use core::vec;
|
2013-02-01 01:13:36 -06:00
|
|
|
use std::oldmap::HashMap;
|
2012-12-13 15:05:22 -06:00
|
|
|
use syntax::ast;
|
2013-01-30 11:56:33 -06:00
|
|
|
use syntax::codemap::dummy_sp;
|
2012-12-13 15:05:22 -06:00
|
|
|
use syntax::codemap::span;
|
|
|
|
use syntax::util::interner;
|
2011-08-04 12:46:10 -05:00
|
|
|
|
2012-09-04 13:54:36 -05:00
|
|
|
use ty_ctxt = middle::ty::ctxt;
|
2011-08-04 12:46:10 -05:00
|
|
|
|
2013-01-30 13:46:19 -06:00
|
|
|
pub type ctxt = {mut next_tag_id: u16, pad: u16, pad2: u32};
|
2011-08-04 12:46:10 -05:00
|
|
|
|
2013-01-30 13:46:19 -06:00
|
|
|
pub fn mk_global(ccx: @crate_ctxt,
|
|
|
|
name: ~str,
|
|
|
|
llval: ValueRef,
|
|
|
|
internal: bool)
|
|
|
|
-> ValueRef {
|
2013-01-10 23:23:07 -06:00
|
|
|
unsafe {
|
|
|
|
let llglobal = do str::as_c_str(name) |buf| {
|
|
|
|
llvm::LLVMAddGlobal(ccx.llmod, val_ty(llval), buf)
|
|
|
|
};
|
|
|
|
llvm::LLVMSetInitializer(llglobal, llval);
|
|
|
|
llvm::LLVMSetGlobalConstant(llglobal, True);
|
2011-08-20 16:22:09 -05:00
|
|
|
|
2013-01-10 23:23:07 -06:00
|
|
|
if internal {
|
|
|
|
::lib::llvm::SetLinkage(llglobal,
|
|
|
|
::lib::llvm::InternalLinkage);
|
|
|
|
}
|
2011-08-20 16:22:09 -05:00
|
|
|
|
2013-01-10 23:23:07 -06:00
|
|
|
return llglobal;
|
|
|
|
}
|
2011-08-04 12:46:10 -05:00
|
|
|
}
|
|
|
|
|
2013-01-30 13:46:19 -06:00
|
|
|
pub fn mk_ctxt(llmod: ModuleRef) -> ctxt {
|
2013-01-10 23:23:07 -06:00
|
|
|
unsafe {
|
|
|
|
let llshapetablesty = trans::common::T_named_struct(~"shapes");
|
|
|
|
let _llshapetables = str::as_c_str(~"shapes", |buf| {
|
|
|
|
llvm::LLVMAddGlobal(llmod, llshapetablesty, buf)
|
|
|
|
});
|
2011-08-04 12:46:10 -05:00
|
|
|
|
2013-01-10 23:23:07 -06:00
|
|
|
return {mut next_tag_id: 0u16, pad: 0u16, pad2: 0u32};
|
|
|
|
}
|
2012-06-25 22:00:46 -05:00
|
|
|
}
|
2011-08-04 12:46:10 -05:00
|
|
|
|
2012-10-05 21:23:44 -05:00
|
|
|
/*
|
|
|
|
Although these two functions are never called, they are here
|
|
|
|
for a VERY GOOD REASON. See #3670
|
|
|
|
*/
|
2013-01-30 13:46:19 -06:00
|
|
|
pub fn add_u16(dest: &mut ~[u8], val: u16) {
|
2012-10-05 21:23:44 -05:00
|
|
|
*dest += ~[(val & 0xffu16) as u8, (val >> 8u16) as u8];
|
2011-08-04 12:46:10 -05:00
|
|
|
}
|
|
|
|
|
2013-01-30 13:46:19 -06:00
|
|
|
pub fn add_substr(dest: &mut ~[u8], src: ~[u8]) {
|
2013-01-11 23:01:42 -06:00
|
|
|
add_u16(&mut *dest, vec::len(src) as u16);
|
2012-10-05 21:23:44 -05:00
|
|
|
*dest += src;
|
2011-08-04 12:46:10 -05:00
|
|
|
}
|
|
|
|
|