]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
refactor away trans::symbol_map
[rust.git] / src / librustc_trans / lib.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! The Rust compiler.
12 //!
13 //! # Note
14 //!
15 //! This API is completely unstable and subject to change.
16
17 #![crate_name = "rustc_trans"]
18 #![unstable(feature = "rustc_private", issue = "27812")]
19 #![crate_type = "dylib"]
20 #![crate_type = "rlib"]
21 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
22       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
23       html_root_url = "https://doc.rust-lang.org/nightly/")]
24 #![deny(warnings)]
25
26 #![feature(associated_consts)]
27 #![feature(box_patterns)]
28 #![feature(box_syntax)]
29 #![feature(const_fn)]
30 #![feature(custom_attribute)]
31 #![allow(unused_attributes)]
32 #![feature(i128_type)]
33 #![feature(libc)]
34 #![feature(quote)]
35 #![feature(rustc_diagnostic_macros)]
36 #![feature(rustc_private)]
37 #![feature(slice_patterns)]
38 #![feature(staged_api)]
39 #![feature(unicode)]
40 #![feature(conservative_impl_trait)]
41
42 use rustc::dep_graph::WorkProduct;
43 use syntax_pos::symbol::Symbol;
44
45 extern crate flate;
46 extern crate libc;
47 #[macro_use] extern crate rustc;
48 extern crate rustc_back;
49 extern crate rustc_data_structures;
50 extern crate rustc_incremental;
51 pub extern crate rustc_llvm as llvm;
52 extern crate rustc_platform_intrinsics as intrinsics;
53 extern crate rustc_const_math;
54 #[macro_use]
55 #[no_link]
56 extern crate rustc_bitflags;
57
58 #[macro_use] extern crate log;
59 #[macro_use] extern crate syntax;
60 extern crate syntax_pos;
61 extern crate rustc_errors as errors;
62 extern crate serialize;
63
64 pub use rustc::session;
65 pub use rustc::middle;
66 pub use rustc::lint;
67 pub use rustc::util;
68
69 pub use base::trans_crate;
70 pub use back::symbol_names::provide;
71
72 pub mod back {
73     pub use rustc::hir::svh;
74
75     pub mod archive;
76     pub mod linker;
77     pub mod link;
78     pub mod lto;
79     pub mod symbol_export;
80     pub mod symbol_names;
81     pub mod write;
82     pub mod msvc;
83     pub mod rpath;
84 }
85
86 pub mod diagnostics;
87
88 #[macro_use]
89 mod macros;
90
91 mod abi;
92 mod adt;
93 mod asm;
94 mod assert_module_sources;
95 mod attributes;
96 mod base;
97 mod builder;
98 mod cabi_aarch64;
99 mod cabi_arm;
100 mod cabi_asmjs;
101 mod cabi_mips;
102 mod cabi_mips64;
103 mod cabi_msp430;
104 mod cabi_nvptx;
105 mod cabi_nvptx64;
106 mod cabi_powerpc;
107 mod cabi_powerpc64;
108 mod cabi_s390x;
109 mod cabi_sparc;
110 mod cabi_sparc64;
111 mod cabi_x86;
112 mod cabi_x86_64;
113 mod cabi_x86_win64;
114 mod callee;
115 mod collector;
116 mod common;
117 mod consts;
118 mod context;
119 mod debuginfo;
120 mod declare;
121 mod glue;
122 mod intrinsic;
123 mod machine;
124 mod meth;
125 mod mir;
126 mod monomorphize;
127 mod partitioning;
128 mod symbol_names_test;
129 mod trans_item;
130 mod tvec;
131 mod type_;
132 mod type_of;
133 mod value;
134
135 #[derive(Clone)]
136 pub struct ModuleTranslation {
137     /// The name of the module. When the crate may be saved between
138     /// compilations, incremental compilation requires that name be
139     /// unique amongst **all** crates.  Therefore, it should contain
140     /// something unique to this crate (e.g., a module path) as well
141     /// as the crate name and disambiguator.
142     pub name: String,
143     pub symbol_name_hash: u64,
144     pub source: ModuleSource,
145 }
146
147 #[derive(Clone)]
148 pub enum ModuleSource {
149     /// Copy the `.o` files or whatever from the incr. comp. directory.
150     Preexisting(WorkProduct),
151
152     /// Rebuild from this LLVM module.
153     Translated(ModuleLlvm),
154 }
155
156 #[derive(Copy, Clone)]
157 pub struct ModuleLlvm {
158     pub llcx: llvm::ContextRef,
159     pub llmod: llvm::ModuleRef,
160 }
161
162 unsafe impl Send for ModuleTranslation { }
163 unsafe impl Sync for ModuleTranslation { }
164
165 pub struct CrateTranslation {
166     pub crate_name: Symbol,
167     pub modules: Vec<ModuleTranslation>,
168     pub metadata_module: ModuleTranslation,
169     pub link: middle::cstore::LinkMeta,
170     pub metadata: middle::cstore::EncodedMetadata,
171     pub exported_symbols: back::symbol_export::ExportedSymbols,
172     pub no_builtins: bool,
173     pub windows_subsystem: Option<String>,
174     pub linker_info: back::linker::LinkerInfo
175 }
176
177 __build_diagnostic_array! { librustc_trans, DIAGNOSTICS }