diff options
| author | Jakub Wieczorek <jakub@jakub.cc> | 2014-06-08 19:37:45 +0200 |
|---|---|---|
| committer | Jakub Wieczorek <jakub@jakub.cc> | 2014-06-08 19:43:38 +0200 |
| commit | a2bbcb594fff51ecad2f9077467a29a6b2713319 (patch) | |
| tree | 40143cfdd47851c46b83a3a8aa9b10a0de37b960 | |
| parent | 17ba0cf4289d6da632aab4cf242ad74dea94fe37 (diff) | |
| download | rust-a2bbcb594fff51ecad2f9077467a29a6b2713319.tar.gz rust-a2bbcb594fff51ecad2f9077467a29a6b2713319.zip | |
Fix an LLVM assertion when matching against static strings
Fixes #8315 Fixes #11940
| -rw-r--r-- | src/librustc/middle/trans/_match.rs | 9 | ||||
| -rw-r--r-- | src/librustc/middle/trans/common.rs | 2 | ||||
| -rw-r--r-- | src/librustc/middle/trans/context.rs | 4 | ||||
| -rw-r--r-- | src/librustc/middle/trans/type_.rs | 4 | ||||
| -rw-r--r-- | src/test/run-pass/issue-11940.rs | 19 |
5 files changed, 30 insertions, 8 deletions
diff --git a/src/librustc/middle/trans/_match.rs b/src/librustc/middle/trans/_match.rs index 2a3ec63e995..f6fb6c8ba20 100644 --- a/src/librustc/middle/trans/_match.rs +++ b/src/librustc/middle/trans/_match.rs @@ -312,9 +312,12 @@ fn trans_opt<'a>(bcx: &'a Block<'a>, o: &Opt) -> opt_result<'a> { let datum = datum::rvalue_scratch_datum(bcx, struct_ty, ""); return single_result(Result::new(bcx, datum.val)); } - lit(ConstLit(lit_id)) => { - let (llval, _) = consts::get_const_val(bcx.ccx(), lit_id); - return single_result(Result::new(bcx, llval)); + lit(l @ ConstLit(ref def_id)) => { + let lit_ty = ty::node_id_to_type(bcx.tcx(), lit_to_expr(bcx.tcx(), &l).id); + let (llval, _) = consts::get_const_val(bcx.ccx(), *def_id); + let lit_datum = immediate_rvalue(llval, lit_ty); + let lit_datum = unpack_datum!(bcx, lit_datum.to_appropriate_datum(bcx)); + return single_result(Result::new(bcx, lit_datum.val)); } var(disr_val, ref repr) => { return adt::trans_case(bcx, &**repr, disr_val); diff --git a/src/librustc/middle/trans/common.rs b/src/librustc/middle/trans/common.rs index 1bcf47531dd..9bd6b8ed361 100644 --- a/src/librustc/middle/trans/common.rs +++ b/src/librustc/middle/trans/common.rs @@ -599,7 +599,7 @@ pub fn C_str_slice(cx: &CrateContext, s: InternedString) -> ValueRef { let len = s.get().len(); let cs = llvm::LLVMConstPointerCast(C_cstr(cx, s, false), Type::i8p(cx).to_ref()); - C_struct(cx, [cs, C_uint(cx, len)], false) + C_named_struct(cx.tn.find_type("str_slice").unwrap(), [cs, C_uint(cx, len)]) } } diff --git a/src/librustc/middle/trans/context.rs b/src/librustc/middle/trans/context.rs index 8607d52b624..a80ae9e2596 100644 --- a/src/librustc/middle/trans/context.rs +++ b/src/librustc/middle/trans/context.rs @@ -233,12 +233,12 @@ impl CrateContext { ccx.int_type = Type::int(&ccx); ccx.opaque_vec_type = Type::opaque_vec(&ccx); - ccx.tn.associate_type("tydesc", &Type::tydesc(&ccx)); - let mut str_slice_ty = Type::named_struct(&ccx, "str_slice"); str_slice_ty.set_struct_body([Type::i8p(&ccx), ccx.int_type], false); ccx.tn.associate_type("str_slice", &str_slice_ty); + ccx.tn.associate_type("tydesc", &Type::tydesc(&ccx, str_slice_ty)); + if ccx.sess().count_llvm_insns() { base::init_insn_ctxt() } diff --git a/src/librustc/middle/trans/type_.rs b/src/librustc/middle/trans/type_.rs index dfe06f9ca4c..5d58500f761 100644 --- a/src/librustc/middle/trans/type_.rs +++ b/src/librustc/middle/trans/type_.rs @@ -186,7 +186,7 @@ impl Type { Type::func([t], &Type::void(ccx)) } - pub fn tydesc(ccx: &CrateContext) -> Type { + pub fn tydesc(ccx: &CrateContext, str_slice_ty: Type) -> Type { let mut tydesc = Type::named_struct(ccx, "tydesc"); let glue_fn_ty = Type::glue_fn(ccx, Type::i8p(ccx)).ptr_to(); @@ -200,7 +200,7 @@ impl Type { int_ty, // align glue_fn_ty, // drop glue_fn_ty, // visit - Type::struct_(ccx, [Type::i8p(ccx), Type::int(ccx)], false)]; // name + str_slice_ty]; // name tydesc.set_struct_body(elems, false); tydesc diff --git a/src/test/run-pass/issue-11940.rs b/src/test/run-pass/issue-11940.rs new file mode 100644 index 00000000000..bbe7eff229b --- /dev/null +++ b/src/test/run-pass/issue-11940.rs @@ -0,0 +1,19 @@ +// 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. + +static TEST_STR: &'static str = "abcd"; + +fn main() { + let s = "abcd"; + match s { + TEST_STR => (), + _ => unreachable!() + } +} |
