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