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-07 16:16:52 -06:00
|
|
|
|
2012-01-19 16:24:03 -06:00
|
|
|
// EBML enum definitions and utils shared by the encoder and decoder
|
2011-07-07 14:22:39 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items: uint = 0x02u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_paths_data_name: uint = 0x04u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_def_id: uint = 0x07u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items_data: uint = 0x08u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items_data_item: uint = 0x09u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items_data_item_family: uint = 0x0au;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items_data_item_ty_param_bounds: uint = 0x0bu;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items_data_item_type: uint = 0x0cu;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items_data_item_symbol: uint = 0x0du;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items_data_item_variant: uint = 0x0eu;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items_data_parent_item: uint = 0x0fu;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_index: uint = 0x11u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_index_buckets: uint = 0x12u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_index_buckets_bucket: uint = 0x13u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_index_buckets_bucket_elt: uint = 0x14u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_index_table: uint = 0x15u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_meta_item_name_value: uint = 0x18u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_meta_item_name: uint = 0x19u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_meta_item_value: uint = 0x20u;
|
2011-06-27 21:41:48 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_attributes: uint = 0x21u;
|
2011-06-27 21:41:48 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_attribute: uint = 0x22u;
|
2011-06-27 21:41:48 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_meta_item_word: uint = 0x23u;
|
2011-06-28 01:02:02 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_meta_item_list: uint = 0x24u;
|
2011-07-07 14:22:39 -05:00
|
|
|
|
2011-07-08 13:29:56 -05:00
|
|
|
// The list of crates that this crate depends on
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_crate_deps: uint = 0x25u;
|
2011-07-08 13:29:56 -05:00
|
|
|
|
|
|
|
// A single crate dependency
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_crate_dep: uint = 0x26u;
|
2011-07-08 13:29:56 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_crate_hash: uint = 0x28u;
|
2011-12-11 09:23:38 -06:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_parent_item: uint = 0x29u;
|
2012-03-08 16:13:57 -06:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_crate_dep_name: uint = 0x2au;
|
|
|
|
pub static tag_crate_dep_hash: uint = 0x2bu;
|
|
|
|
pub static tag_crate_dep_vers: uint = 0x2cu;
|
2012-04-07 12:59:37 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_mod_impl: uint = 0x30u;
|
2011-12-16 07:17:52 -06:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_item_trait_method: uint = 0x31u;
|
|
|
|
pub static tag_impl_trait: uint = 0x32u;
|
2011-12-16 07:17:52 -06:00
|
|
|
|
2012-01-10 15:50:40 -06:00
|
|
|
// discriminator value for variants
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_disr_val: uint = 0x34u;
|
2012-01-10 15:50:40 -06:00
|
|
|
|
2012-02-10 08:01:32 -06:00
|
|
|
// used to encode ast_map::path and ast_map::path_elt
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_path: uint = 0x40u;
|
|
|
|
pub static tag_path_len: uint = 0x41u;
|
|
|
|
pub static tag_path_elt_mod: uint = 0x42u;
|
|
|
|
pub static tag_path_elt_name: uint = 0x43u;
|
|
|
|
pub static tag_item_field: uint = 0x44u;
|
|
|
|
pub static tag_struct_mut: uint = 0x45u;
|
|
|
|
|
|
|
|
pub static tag_region_param: uint = 0x46u;
|
|
|
|
pub static tag_mod_impl_trait: uint = 0x47u;
|
2012-04-26 14:15:46 -05:00
|
|
|
/*
|
2012-07-03 18:30:42 -05:00
|
|
|
trait items contain tag_item_trait_method elements,
|
2012-04-26 14:15:46 -05:00
|
|
|
impl items contain tag_item_impl_method elements, and classes
|
2012-07-03 18:30:42 -05:00
|
|
|
have both. That's because some code treats classes like traits,
|
2012-04-26 14:15:46 -05:00
|
|
|
and other code treats them like impls. Because classes can contain
|
2012-07-03 18:30:42 -05:00
|
|
|
both, tag_item_trait_method and tag_item_impl_method have to be two
|
2012-04-26 14:15:46 -05:00
|
|
|
different tags.
|
|
|
|
*/
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_item_impl_method: uint = 0x48u;
|
|
|
|
pub static tag_item_dtor: uint = 0x49u;
|
|
|
|
pub static tag_item_trait_method_self_ty: uint = 0x4b;
|
|
|
|
pub static tag_item_trait_method_self_ty_region: uint = 0x4c;
|
2012-04-18 23:26:25 -05:00
|
|
|
|
2012-08-17 14:41:34 -05:00
|
|
|
// Reexports are found within module tags. Each reexport contains def_ids
|
|
|
|
// and names.
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_items_data_item_reexport: uint = 0x4d;
|
|
|
|
pub static tag_items_data_item_reexport_def_id: uint = 0x4e;
|
|
|
|
pub static tag_items_data_item_reexport_name: uint = 0x4f;
|
2012-08-17 14:41:34 -05:00
|
|
|
|
2012-02-14 17:21:53 -06:00
|
|
|
// used to encode crate_ctxt side tables
|
2013-01-29 18:51:16 -06:00
|
|
|
pub enum astencode_tag { // Reserves 0x50 -- 0x6f
|
2012-02-14 17:21:53 -06:00
|
|
|
tag_ast = 0x50,
|
|
|
|
|
|
|
|
tag_tree = 0x51,
|
|
|
|
|
|
|
|
tag_id_range = 0x52,
|
|
|
|
|
|
|
|
tag_table = 0x53,
|
|
|
|
tag_table_id = 0x54,
|
|
|
|
tag_table_val = 0x55,
|
|
|
|
tag_table_def = 0x56,
|
|
|
|
tag_table_node_type = 0x57,
|
|
|
|
tag_table_node_type_subst = 0x58,
|
|
|
|
tag_table_freevars = 0x59,
|
2012-08-17 14:41:34 -05:00
|
|
|
tag_table_tcache = 0x5a,
|
|
|
|
tag_table_param_bounds = 0x5b,
|
|
|
|
tag_table_inferred_modes = 0x5c,
|
|
|
|
tag_table_mutbl = 0x5d,
|
|
|
|
tag_table_last_use = 0x5e,
|
|
|
|
tag_table_spill = 0x5f,
|
|
|
|
tag_table_method_map = 0x60,
|
|
|
|
tag_table_vtable_map = 0x61,
|
2012-10-02 18:19:03 -05:00
|
|
|
tag_table_adjustments = 0x62,
|
2013-02-26 20:42:00 -06:00
|
|
|
tag_table_moves_map = 0x63,
|
|
|
|
tag_table_capture_map = 0x64
|
2012-02-14 17:21:53 -06:00
|
|
|
}
|
2012-02-10 08:01:32 -06:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_item_trait_method_sort: uint = 0x70;
|
2012-10-08 14:39:30 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_item_impl_type_basename: uint = 0x71;
|
2012-10-18 15:29:34 -05:00
|
|
|
|
2013-01-07 12:51:53 -06:00
|
|
|
// Language items are a top-level directory (for speed). Hierarchy:
|
|
|
|
//
|
|
|
|
// tag_lang_items
|
|
|
|
// - tag_lang_items_item
|
|
|
|
// - tag_lang_items_item_id: u32
|
|
|
|
// - tag_lang_items_item_node_id: u32
|
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_lang_items: uint = 0x72;
|
|
|
|
pub static tag_lang_items_item: uint = 0x73;
|
|
|
|
pub static tag_lang_items_item_id: uint = 0x74;
|
|
|
|
pub static tag_lang_items_item_node_id: uint = 0x75;
|
2013-01-07 12:51:53 -06:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_item_unnamed_field: uint = 0x76;
|
|
|
|
pub static tag_items_data_item_struct_ctor: uint = 0x77;
|
|
|
|
pub static tag_items_data_item_visibility: uint = 0x78;
|
2013-02-11 18:28:39 -06:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static tag_link_args: uint = 0x79;
|
|
|
|
pub static tag_link_args_arg: uint = 0x7a;
|
2013-03-07 00:06:53 -06:00
|
|
|
|
2013-02-19 01:40:42 -06:00
|
|
|
pub struct LinkMeta {
|
|
|
|
name: @str,
|
|
|
|
vers: @str,
|
|
|
|
extras_hash: @str
|
|
|
|
}
|
2012-05-17 18:17:11 -05:00
|
|
|
|