about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-04-06 07:06:36 -0700
committerbors <bors@rust-lang.org>2014-04-06 07:06:36 -0700
commit02c81fe2b5308bccbc90baae9e7ccdb8b915fe7d (patch)
treeb89e9ef106da6d234d791838b4a690e51fefd653 /src
parent4af69f204e2365da0dc9f32bbd0eb3201dc9a9e0 (diff)
parentb78ac5b74a62e7b2772d322004a6bb04967f8437 (diff)
downloadrust-02c81fe2b5308bccbc90baae9e7ccdb8b915fe7d.tar.gz
rust-02c81fe2b5308bccbc90baae9e7ccdb8b915fe7d.zip
auto merge of #13340 : FlaPer87/rust/code-model, r=cmr
Rust currently defaults to `RelocPIC` regardless. This patch adds a new
codegen option that allows choosing different relocation-model. The
available models are:

    - default (Use the target-specific default model)
    - static
    - pic
    - no-pic

For a more detailed information use `llc --help`
Diffstat (limited to 'src')
-rw-r--r--src/etc/zsh/_rust1
-rw-r--r--src/librustc/back/link.rs15
-rw-r--r--src/librustc/driver/session.rs2
-rw-r--r--src/test/run-make/relocation-model/Makefile15
-rw-r--r--src/test/run-make/relocation-model/foo.rs11
5 files changed, 43 insertions, 1 deletions
diff --git a/src/etc/zsh/_rust b/src/etc/zsh/_rust
index 44e2ecc4d38..f966d8f3005 100644
--- a/src/etc/zsh/_rust
+++ b/src/etc/zsh/_rust
@@ -36,6 +36,7 @@ _rustc_opts_switches=(
     --target'[Target triple cpu-manufacturer-kernel\[-os\] to compile]'
     --target-cpu'[Select target processor (llc -mcpu=help for details)]'
     --target-feature'[Target specific attributes (llc -mattr=help for details)]'
+    --relocation-model'[Relocation model (llc --help for details)]'
     {-v,--version}'[Print version info and exit]'
 )
 _rustc_opts_lint=(
diff --git a/src/librustc/back/link.rs b/src/librustc/back/link.rs
index 19ec2d465c2..073ca45c89d 100644
--- a/src/librustc/back/link.rs
+++ b/src/librustc/back/link.rs
@@ -152,13 +152,26 @@ pub mod write {
                              (sess.targ_cfg.os == abi::OsMacos &&
                               sess.targ_cfg.arch == abi::X86_64);
 
+            let reloc_model = match sess.opts.cg.relocation_model.as_slice() {
+                "pic" => lib::llvm::RelocPIC,
+                "static" => lib::llvm::RelocStatic,
+                "default" => lib::llvm::RelocDefault,
+                "dynamic-no-pic" => lib::llvm::RelocDynamicNoPic,
+                _ => {
+                    sess.err(format!("{} is not a valid relocation mode",
+                             sess.opts.cg.relocation_model));
+                    sess.abort_if_errors();
+                    return;
+                }
+            };
+
             let tm = sess.targ_cfg.target_strs.target_triple.with_c_str(|t| {
                 sess.opts.cg.target_cpu.with_c_str(|cpu| {
                     target_feature(sess).with_c_str(|features| {
                         llvm::LLVMRustCreateTargetMachine(
                             t, cpu, features,
                             lib::llvm::CodeModelDefault,
-                            lib::llvm::RelocPIC,
+                            reloc_model,
                             opt_level,
                             true,
                             use_softfp,
diff --git a/src/librustc/driver/session.rs b/src/librustc/driver/session.rs
index c25a2e79824..a412742ab3a 100644
--- a/src/librustc/driver/session.rs
+++ b/src/librustc/driver/session.rs
@@ -458,6 +458,8 @@ cgoptions!(
         "prefer dynamic linking to static linking"),
     no_integrated_as: bool = (false, parse_bool,
         "use an external assembler rather than LLVM's integrated one"),
+    relocation_model: ~str = (~"pic", parse_string,
+         "choose the relocation model to use (llc -relocation-model for details)"),
 )
 
 // Seems out of place, but it uses session, so I'm putting it here
diff --git a/src/test/run-make/relocation-model/Makefile b/src/test/run-make/relocation-model/Makefile
new file mode 100644
index 00000000000..2fcdd32bfcb
--- /dev/null
+++ b/src/test/run-make/relocation-model/Makefile
@@ -0,0 +1,15 @@
+-include ../tools.mk
+
+all:
+	$(RUSTC) -C relocation-model=dynamic-no-pic foo.rs
+	$(call RUN,foo)
+
+	$(RUSTC) -C relocation-model=default foo.rs
+	$(call RUN,foo)
+
+	$(RUSTC) -C relocation-model=static foo.rs
+	$(call RUN,foo)
+
+	$(RUSTC) -C relocation-model=default --crate-type=dylib foo.rs
+	$(RUSTC) -C relocation-model=static --crate-type=dylib foo.rs
+	$(RUSTC) -C relocation-model=dynamic-no-pic --crate-type=dylib foo.rs
diff --git a/src/test/run-make/relocation-model/foo.rs b/src/test/run-make/relocation-model/foo.rs
new file mode 100644
index 00000000000..e06d81cd60b
--- /dev/null
+++ b/src/test/run-make/relocation-model/foo.rs
@@ -0,0 +1,11 @@
+// Copyright 2014 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.
+
+pub fn main() {}