diff options
author | Andrew Haley <aph@redhat.com> | 2007-02-02 16:34:17 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2007-02-02 16:34:17 +0000 |
commit | b4e18eee4b56ed8d4003d1fb92acb5f7dbf43748 (patch) | |
tree | 825931419e51fa7cc806a34c9dce994cb91d820f /gcc/java/java-tree.h | |
parent | ad12460bed01fc26b69eaa8292986d19f6e24cb5 (diff) | |
download | gcc-b4e18eee4b56ed8d4003d1fb92acb5f7dbf43748.zip gcc-b4e18eee4b56ed8d4003d1fb92acb5f7dbf43748.tar.gz gcc-b4e18eee4b56ed8d4003d1fb92acb5f7dbf43748.tar.bz2 |
expr.c (expand_byte_code): Call cache_this_class_ref() and cache_cpool_data_ref().
2007-02-02 Andrew Haley <aph@redhat.com>
* expr.c (expand_byte_code): Call cache_this_class_ref() and
cache_cpool_data_ref().
Set TYPE_CPOOL_DATA_REF.
(cache_cpool_data_ref): New function.
* constants.c (build_ref_from_constant_pool): Remove special-case
code for flag_indirect_classes.
(build_constant_data_ref): Move special-case code for
flag_indirect_classes here from build_ref_from_constant_pool.
* decl.c (finish_method): Move class initialization from here to
cache_this_class_ref.
* class.c (cache_this_class_ref): New function.
(build_class_ref): Use this_classdollar for the ouput class.
From-SVN: r121508
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index 1f71764..f564b59 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -1129,10 +1129,12 @@ extern void layout_class (tree); extern int get_interface_method_index (tree, tree); extern tree layout_class_method (tree, tree, tree, tree); extern void layout_class_methods (tree); +extern void cache_this_class_ref (tree); extern tree build_class_ref (tree); extern tree build_dtable_decl (tree); extern tree build_internal_class_name (tree); extern tree build_constants_constructor (void); +extern tree build_constant_data_ref (bool); extern tree build_ref_from_constant_pool (int); extern tree build_utf8_ref (tree); extern tree ident_subst (const char *, int, const char *, int, int, |