2014-02-07 19:08:32 +00:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-11-08 21:19:28 +00:00
|
|
|
// 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.
|
|
|
|
|
2013-11-09 12:57:10 +00:00
|
|
|
|
2013-11-08 21:19:28 +00:00
|
|
|
// Test a sample usage pattern for regions. Makes use of the
|
|
|
|
// following features:
|
|
|
|
//
|
|
|
|
// - Multiple lifetime parameters
|
|
|
|
// - Arenas
|
|
|
|
|
2014-02-14 18:10:06 +00:00
|
|
|
extern crate arena;
|
2014-02-20 03:29:58 +00:00
|
|
|
extern crate collections;
|
2014-02-26 17:58:41 +00:00
|
|
|
extern crate libc;
|
2013-11-08 21:19:28 +00:00
|
|
|
|
2014-11-06 08:05:53 +00:00
|
|
|
use TypeStructure::{TypeInt, TypeFunction};
|
|
|
|
use AstKind::{ExprInt, ExprVar, ExprLambda};
|
2014-01-29 02:50:05 +00:00
|
|
|
use arena::Arena;
|
2014-05-30 02:03:06 +00:00
|
|
|
use std::collections::HashMap;
|
2013-11-08 21:19:28 +00:00
|
|
|
use std::mem;
|
|
|
|
|
|
|
|
type Type<'tcx> = &'tcx TypeStructure<'tcx>;
|
|
|
|
|
2015-01-28 13:34:18 +00:00
|
|
|
#[derive(Copy, Debug)]
|
2013-11-08 21:19:28 +00:00
|
|
|
enum TypeStructure<'tcx> {
|
|
|
|
TypeInt,
|
|
|
|
TypeFunction(Type<'tcx>, Type<'tcx>),
|
|
|
|
}
|
librustc: Make `Copy` opt-in.
This change makes the compiler no longer infer whether types (structures
and enumerations) implement the `Copy` trait (and thus are implicitly
copyable). Rather, you must implement `Copy` yourself via `impl Copy for
MyType {}`.
A new warning has been added, `missing_copy_implementations`, to warn
you if a non-generic public type has been added that could have
implemented `Copy` but didn't.
For convenience, you may *temporarily* opt out of this behavior by using
`#![feature(opt_out_copy)]`. Note though that this feature gate will never be
accepted and will be removed by the time that 1.0 is released, so you should
transition your code away from using it.
This breaks code like:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
Change this code to:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
impl Copy for Point2D {}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
This is the backwards-incompatible part of #13231.
Part of RFC #3.
[breaking-change]
2014-12-06 01:01:33 +00:00
|
|
|
|
2014-05-30 00:45:07 +00:00
|
|
|
impl<'tcx> PartialEq for TypeStructure<'tcx> {
|
2014-01-27 13:20:50 +00:00
|
|
|
fn eq(&self, other: &TypeStructure<'tcx>) -> bool {
|
|
|
|
match (*self, *other) {
|
|
|
|
(TypeInt, TypeInt) => true,
|
|
|
|
(TypeFunction(s_a, s_b), TypeFunction(o_a, o_b)) => *s_a == *o_a && *s_b == *o_b,
|
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-11-08 21:19:28 +00:00
|
|
|
|
2014-05-31 17:43:52 +00:00
|
|
|
impl<'tcx> Eq for TypeStructure<'tcx> {}
|
2014-03-22 20:30:45 +00:00
|
|
|
|
2013-11-08 21:19:28 +00:00
|
|
|
struct TypeContext<'tcx, 'ast> {
|
|
|
|
ty_arena: &'tcx Arena,
|
2014-03-05 22:02:44 +00:00
|
|
|
types: Vec<Type<'tcx>> ,
|
2013-11-08 21:19:28 +00:00
|
|
|
type_table: HashMap<NodeId, Type<'tcx>>,
|
|
|
|
|
|
|
|
ast_arena: &'ast Arena,
|
|
|
|
ast_counter: uint,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx,'ast> TypeContext<'tcx, 'ast> {
|
|
|
|
fn new(ty_arena: &'tcx Arena, ast_arena: &'ast Arena)
|
|
|
|
-> TypeContext<'tcx, 'ast> {
|
|
|
|
TypeContext { ty_arena: ty_arena,
|
2014-03-05 22:02:44 +00:00
|
|
|
types: Vec::new(),
|
2013-11-08 21:19:28 +00:00
|
|
|
type_table: HashMap::new(),
|
|
|
|
|
|
|
|
ast_arena: ast_arena,
|
|
|
|
ast_counter: 0 }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_type(&mut self, s: TypeStructure<'tcx>) -> Type<'tcx> {
|
2015-01-31 17:20:46 +00:00
|
|
|
for &ty in &self.types {
|
2013-11-08 21:19:28 +00:00
|
|
|
if *ty == s {
|
|
|
|
return ty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let ty = self.ty_arena.alloc(|| s);
|
|
|
|
self.types.push(ty);
|
|
|
|
ty
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_type(&mut self, id: NodeId, ty: Type<'tcx>) -> Type<'tcx> {
|
|
|
|
self.type_table.insert(id, ty);
|
|
|
|
ty
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ast(&mut self, a: AstKind<'ast>) -> Ast<'ast> {
|
|
|
|
let id = self.ast_counter;
|
|
|
|
self.ast_counter += 1;
|
|
|
|
self.ast_arena.alloc(|| AstStructure { id: NodeId {id:id}, kind: a })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 21:36:30 +00:00
|
|
|
#[derive(Copy, PartialEq, Eq, Hash)]
|
2013-11-08 21:19:28 +00:00
|
|
|
struct NodeId {
|
|
|
|
id: uint
|
|
|
|
}
|
|
|
|
|
|
|
|
type Ast<'ast> = &'ast AstStructure<'ast>;
|
|
|
|
|
2015-01-24 21:36:30 +00:00
|
|
|
#[derive(Copy)]
|
2013-11-08 21:19:28 +00:00
|
|
|
struct AstStructure<'ast> {
|
|
|
|
id: NodeId,
|
|
|
|
kind: AstKind<'ast>
|
|
|
|
}
|
|
|
|
|
2015-01-24 21:36:30 +00:00
|
|
|
#[derive(Copy)]
|
2013-11-08 21:19:28 +00:00
|
|
|
enum AstKind<'ast> {
|
|
|
|
ExprInt,
|
|
|
|
ExprVar(uint),
|
|
|
|
ExprLambda(Ast<'ast>),
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compute_types<'tcx,'ast>(tcx: &mut TypeContext<'tcx,'ast>,
|
|
|
|
ast: Ast<'ast>) -> Type<'tcx>
|
|
|
|
{
|
|
|
|
match ast.kind {
|
|
|
|
ExprInt | ExprVar(_) => {
|
|
|
|
let ty = tcx.add_type(TypeInt);
|
|
|
|
tcx.set_type(ast.id, ty)
|
|
|
|
}
|
|
|
|
ExprLambda(ast) => {
|
|
|
|
let arg_ty = tcx.add_type(TypeInt);
|
|
|
|
let body_ty = compute_types(tcx, ast);
|
|
|
|
let lambda_ty = tcx.add_type(TypeFunction(arg_ty, body_ty));
|
|
|
|
tcx.set_type(ast.id, lambda_ty)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
let ty_arena = arena::Arena::new();
|
|
|
|
let ast_arena = arena::Arena::new();
|
|
|
|
let mut tcx = TypeContext::new(&ty_arena, &ast_arena);
|
|
|
|
let ast = tcx.ast(ExprInt);
|
|
|
|
let ty = compute_types(&mut tcx, ast);
|
|
|
|
assert_eq!(*ty, TypeInt);
|
|
|
|
}
|