auto merge of #14752 : jakub-/rust/issue-11940, r=alexcrichton
Fixes #8315 Fixes #11940
This commit is contained in:
commit
7f777a5ba4
6 changed files with 31 additions and 14 deletions
|
@ -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, "");
|
let datum = datum::rvalue_scratch_datum(bcx, struct_ty, "");
|
||||||
return single_result(Result::new(bcx, datum.val));
|
return single_result(Result::new(bcx, datum.val));
|
||||||
}
|
}
|
||||||
lit(ConstLit(lit_id)) => {
|
lit(l @ ConstLit(ref def_id)) => {
|
||||||
let (llval, _) = consts::get_const_val(bcx.ccx(), lit_id);
|
let lit_ty = ty::node_id_to_type(bcx.tcx(), lit_to_expr(bcx.tcx(), &l).id);
|
||||||
return single_result(Result::new(bcx, llval));
|
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) => {
|
var(disr_val, ref repr) => {
|
||||||
return adt::trans_case(bcx, &**repr, disr_val);
|
return adt::trans_case(bcx, &**repr, disr_val);
|
||||||
|
|
|
@ -599,7 +599,7 @@ pub fn C_str_slice(cx: &CrateContext, s: InternedString) -> ValueRef {
|
||||||
let len = s.get().len();
|
let len = s.get().len();
|
||||||
let cs = llvm::LLVMConstPointerCast(C_cstr(cx, s, false),
|
let cs = llvm::LLVMConstPointerCast(C_cstr(cx, s, false),
|
||||||
Type::i8p(cx).to_ref());
|
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)])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -233,12 +233,12 @@ impl CrateContext {
|
||||||
ccx.int_type = Type::int(&ccx);
|
ccx.int_type = Type::int(&ccx);
|
||||||
ccx.opaque_vec_type = Type::opaque_vec(&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");
|
let mut str_slice_ty = Type::named_struct(&ccx, "str_slice");
|
||||||
str_slice_ty.set_struct_body([Type::i8p(&ccx), ccx.int_type], false);
|
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("str_slice", &str_slice_ty);
|
||||||
|
|
||||||
|
ccx.tn.associate_type("tydesc", &Type::tydesc(&ccx, str_slice_ty));
|
||||||
|
|
||||||
if ccx.sess().count_llvm_insns() {
|
if ccx.sess().count_llvm_insns() {
|
||||||
base::init_insn_ctxt()
|
base::init_insn_ctxt()
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@ use middle::trans::cleanup;
|
||||||
use middle::trans::common::*;
|
use middle::trans::common::*;
|
||||||
use middle::trans::debuginfo;
|
use middle::trans::debuginfo;
|
||||||
use middle::trans::expr;
|
use middle::trans::expr;
|
||||||
use middle::trans::type_of;
|
|
||||||
use middle::ty;
|
use middle::ty;
|
||||||
use util::ppaux::Repr;
|
use util::ppaux::Repr;
|
||||||
|
|
||||||
|
@ -343,14 +342,10 @@ pub fn trans_ret<'a>(bcx: &'a Block<'a>,
|
||||||
|
|
||||||
fn str_slice_arg<'a>(bcx: &'a Block<'a>, s: InternedString) -> ValueRef {
|
fn str_slice_arg<'a>(bcx: &'a Block<'a>, s: InternedString) -> ValueRef {
|
||||||
let ccx = bcx.ccx();
|
let ccx = bcx.ccx();
|
||||||
let t = ty::mk_str_slice(bcx.tcx(), ty::ReStatic, ast::MutImmutable);
|
|
||||||
let s = C_str_slice(ccx, s);
|
let s = C_str_slice(ccx, s);
|
||||||
let slot = alloca(bcx, val_ty(s), "__temp");
|
let slot = alloca(bcx, val_ty(s), "__temp");
|
||||||
Store(bcx, s, slot);
|
Store(bcx, s, slot);
|
||||||
|
slot
|
||||||
// The type of C_str_slice is { i8*, i64 }, but the type of the &str is
|
|
||||||
// %str_slice, so we do a bitcast here to the right type.
|
|
||||||
BitCast(bcx, slot, type_of::type_of(ccx, t).ptr_to())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn trans_fail<'a>(
|
pub fn trans_fail<'a>(
|
||||||
|
|
|
@ -186,7 +186,7 @@ impl Type {
|
||||||
Type::func([t], &Type::void(ccx))
|
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 mut tydesc = Type::named_struct(ccx, "tydesc");
|
||||||
let glue_fn_ty = Type::glue_fn(ccx, Type::i8p(ccx)).ptr_to();
|
let glue_fn_ty = Type::glue_fn(ccx, Type::i8p(ccx)).ptr_to();
|
||||||
|
|
||||||
|
@ -200,7 +200,7 @@ impl Type {
|
||||||
int_ty, // align
|
int_ty, // align
|
||||||
glue_fn_ty, // drop
|
glue_fn_ty, // drop
|
||||||
glue_fn_ty, // visit
|
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.set_struct_body(elems, false);
|
||||||
|
|
||||||
tydesc
|
tydesc
|
||||||
|
|
19
src/test/run-pass/issue-11940.rs
Normal file
19
src/test/run-pass/issue-11940.rs
Normal file
|
@ -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!()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue