2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2013-01-08 21:37:25 -06:00
|
|
|
use core::prelude::*;
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
use ast;
|
|
|
|
use codemap;
|
2012-09-04 13:37:29 -05:00
|
|
|
use codemap::span;
|
2012-12-13 15:05:22 -06:00
|
|
|
use ext::base::ext_ctxt;
|
2012-12-23 16:41:37 -06:00
|
|
|
use ext::build;
|
|
|
|
|
|
|
|
use core::dvec;
|
|
|
|
use core::option;
|
2012-01-25 15:47:56 -06:00
|
|
|
|
2012-06-29 16:38:33 -05:00
|
|
|
fn mk_expr(cx: ext_ctxt, sp: codemap::span, expr: ast::expr_) ->
|
|
|
|
@ast::expr {
|
2012-08-01 19:30:05 -05:00
|
|
|
return @{id: cx.next_id(), callee_id: cx.next_id(),
|
2012-07-11 16:31:35 -05:00
|
|
|
node: expr, span: sp};
|
2012-06-29 16:38:33 -05:00
|
|
|
}
|
|
|
|
|
2012-01-26 17:34:05 -06:00
|
|
|
fn mk_lit(cx: ext_ctxt, sp: span, lit: ast::lit_) -> @ast::expr {
|
2012-12-27 13:36:00 -06:00
|
|
|
let sp_lit = @ast::spanned { node: lit, span: sp };
|
2012-07-11 16:31:35 -05:00
|
|
|
mk_expr(cx, sp, ast::expr_lit(sp_lit))
|
2012-01-25 15:47:56 -06:00
|
|
|
}
|
2012-01-26 17:34:05 -06:00
|
|
|
fn mk_int(cx: ext_ctxt, sp: span, i: int) -> @ast::expr {
|
2012-01-25 15:47:56 -06:00
|
|
|
let lit = ast::lit_int(i as i64, ast::ty_i);
|
2012-08-01 19:30:05 -05:00
|
|
|
return mk_lit(cx, sp, lit);
|
2012-01-25 15:47:56 -06:00
|
|
|
}
|
2012-01-26 17:34:05 -06:00
|
|
|
fn mk_uint(cx: ext_ctxt, sp: span, u: uint) -> @ast::expr {
|
2012-01-25 15:47:56 -06:00
|
|
|
let lit = ast::lit_uint(u as u64, ast::ty_u);
|
2012-08-01 19:30:05 -05:00
|
|
|
return mk_lit(cx, sp, lit);
|
2012-01-25 15:47:56 -06:00
|
|
|
}
|
2012-07-13 17:54:39 -05:00
|
|
|
fn mk_u8(cx: ext_ctxt, sp: span, u: u8) -> @ast::expr {
|
|
|
|
let lit = ast::lit_uint(u as u64, ast::ty_u8);
|
2012-08-01 19:30:05 -05:00
|
|
|
return mk_lit(cx, sp, lit);
|
2012-07-13 17:54:39 -05:00
|
|
|
}
|
2012-01-26 17:34:05 -06:00
|
|
|
fn mk_binary(cx: ext_ctxt, sp: span, op: ast::binop,
|
|
|
|
lhs: @ast::expr, rhs: @ast::expr)
|
2012-01-25 15:47:56 -06:00
|
|
|
-> @ast::expr {
|
2012-06-27 18:06:58 -05:00
|
|
|
cx.next_id(); // see ast_util::op_expr_callee_id
|
2012-06-29 16:38:33 -05:00
|
|
|
mk_expr(cx, sp, ast::expr_binary(op, lhs, rhs))
|
2012-01-25 15:47:56 -06:00
|
|
|
}
|
2012-01-26 17:34:05 -06:00
|
|
|
fn mk_unary(cx: ext_ctxt, sp: span, op: ast::unop, e: @ast::expr)
|
|
|
|
-> @ast::expr {
|
2012-06-27 18:06:58 -05:00
|
|
|
cx.next_id(); // see ast_util::op_expr_callee_id
|
2012-06-29 16:38:33 -05:00
|
|
|
mk_expr(cx, sp, ast::expr_unary(op, e))
|
2012-01-26 17:34:05 -06:00
|
|
|
}
|
2012-11-08 19:00:55 -06:00
|
|
|
fn mk_raw_path(sp: span, idents: ~[ast::ident]) -> @ast::path {
|
|
|
|
let p : @ast::path = @{span: sp, global: false, idents: idents,
|
|
|
|
rp: None, types: ~[]};
|
|
|
|
return p;
|
|
|
|
}
|
2012-11-20 21:20:55 -06:00
|
|
|
fn mk_raw_path_(sp: span,
|
|
|
|
idents: ~[ast::ident],
|
|
|
|
+types: ~[@ast::Ty])
|
|
|
|
-> @ast::path {
|
|
|
|
@{ span: sp, global: false, idents: idents, rp: None, types: move types }
|
|
|
|
}
|
2012-12-23 16:41:37 -06:00
|
|
|
fn mk_raw_path_global(sp: span, idents: ~[ast::ident]) -> @ast::path {
|
|
|
|
let p : @ast::path = @{span: sp, global: true, idents: idents,
|
|
|
|
rp: None, types: ~[]};
|
|
|
|
return p;
|
|
|
|
}
|
2012-06-29 18:26:56 -05:00
|
|
|
fn mk_path(cx: ext_ctxt, sp: span, idents: ~[ast::ident]) ->
|
2012-01-26 17:34:05 -06:00
|
|
|
@ast::expr {
|
2012-11-08 19:00:55 -06:00
|
|
|
mk_expr(cx, sp, ast::expr_path(mk_raw_path(sp, idents)))
|
2012-01-25 15:47:56 -06:00
|
|
|
}
|
2012-12-23 16:41:37 -06:00
|
|
|
fn mk_path_global(cx: ext_ctxt, sp: span, idents: ~[ast::ident]) ->
|
|
|
|
@ast::expr {
|
|
|
|
mk_expr(cx, sp, ast::expr_path(mk_raw_path_global(sp, idents)))
|
|
|
|
}
|
2012-01-26 17:34:05 -06:00
|
|
|
fn mk_access_(cx: ext_ctxt, sp: span, p: @ast::expr, m: ast::ident)
|
|
|
|
-> @ast::expr {
|
2012-06-29 18:26:56 -05:00
|
|
|
mk_expr(cx, sp, ast::expr_field(p, m, ~[]))
|
2012-01-26 17:34:05 -06:00
|
|
|
}
|
2012-06-29 18:26:56 -05:00
|
|
|
fn mk_access(cx: ext_ctxt, sp: span, p: ~[ast::ident], m: ast::ident)
|
2012-01-26 17:34:05 -06:00
|
|
|
-> @ast::expr {
|
|
|
|
let pathexpr = mk_path(cx, sp, p);
|
2012-08-01 19:30:05 -05:00
|
|
|
return mk_access_(cx, sp, pathexpr, m);
|
2012-01-26 17:34:05 -06:00
|
|
|
}
|
2012-09-28 14:22:33 -05:00
|
|
|
fn mk_addr_of(cx: ext_ctxt, sp: span, e: @ast::expr) -> @ast::expr {
|
|
|
|
return mk_expr(cx, sp, ast::expr_addr_of(ast::m_imm, e));
|
|
|
|
}
|
2012-01-26 17:34:05 -06:00
|
|
|
fn mk_call_(cx: ext_ctxt, sp: span, fn_expr: @ast::expr,
|
2012-06-29 18:26:56 -05:00
|
|
|
args: ~[@ast::expr]) -> @ast::expr {
|
2012-06-29 16:38:33 -05:00
|
|
|
mk_expr(cx, sp, ast::expr_call(fn_expr, args, false))
|
2012-01-26 17:34:05 -06:00
|
|
|
}
|
2012-06-29 18:26:56 -05:00
|
|
|
fn mk_call(cx: ext_ctxt, sp: span, fn_path: ~[ast::ident],
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr {
|
2012-01-26 17:34:05 -06:00
|
|
|
let pathexpr = mk_path(cx, sp, fn_path);
|
2012-08-01 19:30:05 -05:00
|
|
|
return mk_call_(cx, sp, pathexpr, args);
|
2012-01-26 17:34:05 -06:00
|
|
|
}
|
2012-12-23 16:41:37 -06:00
|
|
|
fn mk_call_global(cx: ext_ctxt, sp: span, fn_path: ~[ast::ident],
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr {
|
|
|
|
let pathexpr = mk_path_global(cx, sp, fn_path);
|
|
|
|
return mk_call_(cx, sp, pathexpr, args);
|
|
|
|
}
|
2012-01-26 17:34:05 -06:00
|
|
|
// e = expr, t = type
|
2012-06-29 18:26:56 -05:00
|
|
|
fn mk_base_vec_e(cx: ext_ctxt, sp: span, exprs: ~[@ast::expr]) ->
|
2012-01-25 15:47:56 -06:00
|
|
|
@ast::expr {
|
2012-02-15 13:25:39 -06:00
|
|
|
let vecexpr = ast::expr_vec(exprs, ast::m_imm);
|
2012-07-11 16:31:35 -05:00
|
|
|
mk_expr(cx, sp, vecexpr)
|
2012-01-25 15:47:56 -06:00
|
|
|
}
|
2012-09-11 23:25:01 -05:00
|
|
|
fn mk_vstore_e(cx: ext_ctxt, sp: span, expr: @ast::expr,
|
|
|
|
vst: ast::expr_vstore) ->
|
2012-06-25 22:00:39 -05:00
|
|
|
@ast::expr {
|
2012-06-29 16:38:33 -05:00
|
|
|
mk_expr(cx, sp, ast::expr_vstore(expr, vst))
|
2012-06-25 22:00:39 -05:00
|
|
|
}
|
2012-06-29 18:26:56 -05:00
|
|
|
fn mk_uniq_vec_e(cx: ext_ctxt, sp: span, exprs: ~[@ast::expr]) ->
|
2012-06-25 22:00:39 -05:00
|
|
|
@ast::expr {
|
2012-09-11 23:25:01 -05:00
|
|
|
mk_vstore_e(cx, sp, mk_base_vec_e(cx, sp, exprs), ast::expr_vstore_uniq)
|
2012-06-25 22:00:39 -05:00
|
|
|
}
|
2012-11-20 18:07:57 -06:00
|
|
|
fn mk_slice_vec_e(cx: ext_ctxt, sp: span, exprs: ~[@ast::expr]) ->
|
|
|
|
@ast::expr {
|
|
|
|
mk_vstore_e(cx, sp, mk_base_vec_e(cx, sp, exprs),
|
|
|
|
ast::expr_vstore_slice)
|
|
|
|
}
|
2012-06-29 18:26:56 -05:00
|
|
|
fn mk_fixed_vec_e(cx: ext_ctxt, sp: span, exprs: ~[@ast::expr]) ->
|
2012-06-28 18:23:12 -05:00
|
|
|
@ast::expr {
|
2012-09-11 23:25:01 -05:00
|
|
|
mk_vstore_e(cx, sp, mk_base_vec_e(cx, sp, exprs),
|
|
|
|
ast::expr_vstore_fixed(None))
|
2012-06-28 18:23:12 -05:00
|
|
|
}
|
2012-07-14 00:57:48 -05:00
|
|
|
fn mk_base_str(cx: ext_ctxt, sp: span, s: ~str) -> @ast::expr {
|
2012-07-13 17:54:39 -05:00
|
|
|
let lit = ast::lit_str(@s);
|
2012-08-01 19:30:05 -05:00
|
|
|
return mk_lit(cx, sp, lit);
|
2012-07-13 17:54:39 -05:00
|
|
|
}
|
2012-07-14 00:57:48 -05:00
|
|
|
fn mk_uniq_str(cx: ext_ctxt, sp: span, s: ~str) -> @ast::expr {
|
2012-09-11 23:25:01 -05:00
|
|
|
mk_vstore_e(cx, sp, mk_base_str(cx, sp, s), ast::expr_vstore_uniq)
|
2012-07-13 17:54:39 -05:00
|
|
|
}
|
2012-11-08 19:00:55 -06:00
|
|
|
fn mk_field(sp: span, f: &{ident: ast::ident, ex: @ast::expr})
|
|
|
|
-> ast::field {
|
2012-12-27 13:36:00 -06:00
|
|
|
ast::spanned { node: {mutbl: ast::m_imm, ident: f.ident, expr: f.ex},
|
|
|
|
span: sp }
|
2012-11-08 19:00:55 -06:00
|
|
|
}
|
|
|
|
fn mk_fields(sp: span, fields: ~[{ident: ast::ident, ex: @ast::expr}]) ->
|
|
|
|
~[ast::field] {
|
|
|
|
move fields.map(|f| mk_field(sp, f))
|
|
|
|
}
|
2012-01-26 17:34:05 -06:00
|
|
|
fn mk_rec_e(cx: ext_ctxt, sp: span,
|
2012-06-29 18:26:56 -05:00
|
|
|
fields: ~[{ident: ast::ident, ex: @ast::expr}]) ->
|
2012-01-26 17:34:05 -06:00
|
|
|
@ast::expr {
|
2012-11-08 19:00:55 -06:00
|
|
|
mk_expr(cx, sp, ast::expr_rec(mk_fields(sp, fields),
|
|
|
|
option::None::<@ast::expr>))
|
|
|
|
}
|
|
|
|
fn mk_struct_e(cx: ext_ctxt, sp: span,
|
|
|
|
ctor_path: ~[ast::ident],
|
|
|
|
fields: ~[{ident: ast::ident, ex: @ast::expr}]) ->
|
|
|
|
@ast::expr {
|
|
|
|
mk_expr(cx, sp,
|
|
|
|
ast::expr_struct(mk_raw_path(sp, ctor_path),
|
|
|
|
mk_fields(sp, fields),
|
|
|
|
option::None::<@ast::expr>))
|
|
|
|
}
|
|
|
|
fn mk_glob_use(cx: ext_ctxt, sp: span,
|
|
|
|
path: ~[ast::ident]) -> @ast::view_item {
|
2012-12-27 13:36:00 -06:00
|
|
|
let glob = @ast::spanned {
|
|
|
|
node: ast::view_path_glob(mk_raw_path(sp, path), cx.next_id()),
|
|
|
|
span: sp,
|
|
|
|
};
|
2012-11-08 19:00:55 -06:00
|
|
|
@{node: ast::view_item_import(~[glob]),
|
|
|
|
attrs: ~[],
|
|
|
|
vis: ast::private,
|
|
|
|
span: sp}
|
|
|
|
}
|
2012-12-06 13:01:58 -06:00
|
|
|
fn mk_local(cx: ext_ctxt, sp: span, mutbl: bool,
|
|
|
|
ident: ast::ident, ex: @ast::expr) -> @ast::stmt {
|
|
|
|
|
|
|
|
let pat : @ast::pat = @{id: cx.next_id(),
|
|
|
|
node: ast::pat_ident(ast::bind_by_value,
|
|
|
|
mk_raw_path(sp, ~[ident]),
|
|
|
|
None),
|
|
|
|
span: sp};
|
|
|
|
let ty : @ast::Ty = @{ id: cx.next_id(), node: ast::ty_infer, span: sp };
|
2012-12-27 13:36:00 -06:00
|
|
|
let local : @ast::local = @ast::spanned { node: { is_mutbl: mutbl,
|
|
|
|
ty: ty,
|
|
|
|
pat: pat,
|
|
|
|
init: Some(ex),
|
|
|
|
id: cx.next_id()},
|
|
|
|
span: sp};
|
|
|
|
let decl = ast::spanned {node: ast::decl_local(~[local]), span: sp};
|
|
|
|
@ast::spanned { node: ast::stmt_decl(@decl, cx.next_id()), span: sp }
|
2012-12-06 13:01:58 -06:00
|
|
|
}
|
2012-11-08 19:00:55 -06:00
|
|
|
fn mk_block(cx: ext_ctxt, sp: span,
|
|
|
|
view_items: ~[@ast::view_item],
|
|
|
|
stmts: ~[@ast::stmt],
|
|
|
|
expr: Option<@ast::expr>) -> @ast::expr {
|
2012-12-27 13:36:00 -06:00
|
|
|
let blk = ast::spanned { node: { view_items: view_items,
|
|
|
|
stmts: stmts,
|
|
|
|
expr: expr,
|
|
|
|
id: cx.next_id(),
|
|
|
|
rules: ast::default_blk },
|
|
|
|
span: sp };
|
2012-11-08 19:00:55 -06:00
|
|
|
mk_expr(cx, sp, ast::expr_block(blk))
|
|
|
|
}
|
2012-11-20 20:27:13 -06:00
|
|
|
fn mk_block_(cx: ext_ctxt, sp: span, +stmts: ~[@ast::stmt]) -> ast::blk {
|
2012-12-27 13:36:00 -06:00
|
|
|
ast::spanned {
|
2012-11-20 20:27:13 -06:00
|
|
|
node: {
|
|
|
|
view_items: ~[],
|
|
|
|
stmts: move stmts,
|
|
|
|
expr: None,
|
|
|
|
id: cx.next_id(),
|
|
|
|
rules: ast::default_blk
|
|
|
|
},
|
|
|
|
span: sp
|
|
|
|
}
|
|
|
|
}
|
2012-11-19 20:05:50 -06:00
|
|
|
fn mk_simple_block(cx: ext_ctxt, span: span, expr: @ast::expr) -> ast::blk {
|
|
|
|
let block = {
|
|
|
|
view_items: ~[],
|
|
|
|
stmts: ~[],
|
|
|
|
expr: Some(expr),
|
|
|
|
id: cx.next_id(),
|
|
|
|
rules: ast::default_blk
|
|
|
|
};
|
2012-12-27 13:36:00 -06:00
|
|
|
ast::spanned { node: block, span: span }
|
2012-11-19 20:05:50 -06:00
|
|
|
}
|
2012-11-08 19:00:55 -06:00
|
|
|
fn mk_copy(cx: ext_ctxt, sp: span, e: @ast::expr) -> @ast::expr {
|
|
|
|
mk_expr(cx, sp, ast::expr_copy(e))
|
|
|
|
}
|
|
|
|
fn mk_managed(cx: ext_ctxt, sp: span, e: @ast::expr) -> @ast::expr {
|
|
|
|
mk_expr(cx, sp, ast::expr_unary(ast::box(ast::m_imm), e))
|
2012-01-25 15:47:56 -06:00
|
|
|
}
|
2012-11-20 14:59:37 -06:00
|
|
|
fn mk_pat(cx: ext_ctxt, span: span, +pat: ast::pat_) -> @ast::pat {
|
|
|
|
@{ id: cx.next_id(), node: move pat, span: span }
|
|
|
|
}
|
2012-11-19 20:05:50 -06:00
|
|
|
fn mk_pat_ident(cx: ext_ctxt, span: span, ident: ast::ident) -> @ast::pat {
|
2012-11-20 14:59:37 -06:00
|
|
|
let path = mk_raw_path(span, ~[ ident ]);
|
2012-11-19 20:05:50 -06:00
|
|
|
let pat = ast::pat_ident(ast::bind_by_value, path, None);
|
2012-11-20 14:59:37 -06:00
|
|
|
mk_pat(cx, span, move pat)
|
|
|
|
}
|
|
|
|
fn mk_pat_enum(cx: ext_ctxt,
|
|
|
|
span: span,
|
|
|
|
path: @ast::path,
|
|
|
|
+subpats: ~[@ast::pat])
|
|
|
|
-> @ast::pat {
|
|
|
|
let pat = ast::pat_enum(path, Some(move subpats));
|
|
|
|
mk_pat(cx, span, move pat)
|
2012-11-19 20:05:50 -06:00
|
|
|
}
|
2012-12-10 15:04:04 -06:00
|
|
|
fn mk_pat_struct(cx: ext_ctxt,
|
|
|
|
span: span,
|
|
|
|
path: @ast::path,
|
|
|
|
+field_pats: ~[ast::field_pat])
|
|
|
|
-> @ast::pat {
|
|
|
|
let pat = ast::pat_struct(path, move field_pats, false);
|
|
|
|
mk_pat(cx, span, move pat)
|
|
|
|
}
|
2012-11-19 20:05:50 -06:00
|
|
|
fn mk_bool(cx: ext_ctxt, span: span, value: bool) -> @ast::expr {
|
2012-12-27 13:36:00 -06:00
|
|
|
let lit_expr = ast::expr_lit(@ast::spanned { node: ast::lit_bool(value),
|
|
|
|
span: span });
|
2012-11-19 20:05:50 -06:00
|
|
|
build::mk_expr(cx, span, move lit_expr)
|
|
|
|
}
|
2012-11-20 20:27:13 -06:00
|
|
|
fn mk_stmt(cx: ext_ctxt, span: span, expr: @ast::expr) -> @ast::stmt {
|
|
|
|
let stmt_ = ast::stmt_semi(expr, cx.next_id());
|
2012-12-27 13:36:00 -06:00
|
|
|
@ast::spanned { node: move stmt_, span: span }
|
2012-11-20 20:27:13 -06:00
|
|
|
}
|
|
|
|
fn mk_ty_path(cx: ext_ctxt,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ ast::ident ])
|
|
|
|
-> @ast::Ty {
|
|
|
|
let ty = build::mk_raw_path(span, idents);
|
|
|
|
let ty = ast::ty_path(ty, cx.next_id());
|
|
|
|
let ty = @{ id: cx.next_id(), node: move ty, span: span };
|
|
|
|
ty
|
|
|
|
}
|
2012-12-23 16:41:37 -06:00
|
|
|
fn mk_ty_path_global(cx: ext_ctxt,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ ast::ident ])
|
|
|
|
-> @ast::Ty {
|
|
|
|
let ty = build::mk_raw_path_global(span, idents);
|
|
|
|
let ty = ast::ty_path(ty, cx.next_id());
|
|
|
|
let ty = @{ id: cx.next_id(), node: move ty, span: span };
|
|
|
|
ty
|
|
|
|
}
|
2012-11-20 20:27:13 -06:00
|
|
|
fn mk_simple_ty_path(cx: ext_ctxt,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident)
|
|
|
|
-> @ast::Ty {
|
|
|
|
mk_ty_path(cx, span, ~[ ident ])
|
|
|
|
}
|
|
|
|
fn mk_arg(cx: ext_ctxt,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident,
|
|
|
|
ty: @ast::Ty)
|
|
|
|
-> ast::arg {
|
|
|
|
let arg_pat = mk_pat_ident(cx, span, ident);
|
|
|
|
{
|
|
|
|
mode: ast::infer(cx.next_id()),
|
|
|
|
ty: ty,
|
|
|
|
pat: arg_pat,
|
|
|
|
id: cx.next_id()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn mk_fn_decl(+inputs: ~[ast::arg], output: @ast::Ty) -> ast::fn_decl {
|
|
|
|
{ inputs: move inputs, output: output, cf: ast::return_val }
|
|
|
|
}
|
2012-11-20 21:20:55 -06:00
|
|
|
fn mk_ty_param(cx: ext_ctxt,
|
|
|
|
ident: ast::ident,
|
|
|
|
bounds: @~[ast::ty_param_bound])
|
|
|
|
-> ast::ty_param {
|
|
|
|
{ ident: ident, id: cx.next_id(), bounds: bounds }
|
|
|
|
}
|
2012-11-19 20:05:50 -06:00
|
|
|
|