rust/src/librustc/middle/trans/shape.rs

76 lines
2.0 KiB
Rust
Raw Normal View History

// 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.
2012-09-04 13:54:36 -05:00
use lib::llvm::llvm;
2013-03-26 15:38:07 -05:00
use lib::llvm::{True, ModuleRef, ValueRef};
2012-09-04 13:54:36 -05:00
use middle::trans::common::*;
use middle::trans;
2011-08-04 12:46:10 -05:00
use core::str;
2011-08-04 12:46:10 -05:00
pub struct Ctxt {
next_tag_id: u16,
pad: u16,
pad2: u32
}
2011-08-04 12:46:10 -05:00
pub fn mk_global(ccx: &CrateContext,
name: &str,
llval: ValueRef,
internal: bool)
-> ValueRef {
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);
if internal {
::lib::llvm::SetLinkage(llglobal,
::lib::llvm::InternalLinkage);
}
return llglobal;
}
2011-08-04 12:46:10 -05:00
}
pub fn mk_ctxt(llmod: ModuleRef) -> Ctxt {
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
return Ctxt {
next_tag_id: 0u16,
pad: 0u16,
pad2: 0u32
};
}
}
2011-08-04 12:46:10 -05:00
/*
Although these two functions are never called, they are here
for a VERY GOOD REASON. See #3670
*/
pub fn add_u16(dest: &mut ~[u8], val: u16) {
*dest += [(val & 0xffu16) as u8, (val >> 8u16) as u8];
2011-08-04 12:46:10 -05:00
}
pub fn add_substr(dest: &mut ~[u8], src: ~[u8]) {
2013-05-14 04:52:12 -05:00
add_u16(&mut *dest, src.len() as u16);
*dest += src;
2011-08-04 12:46:10 -05:00
}