URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [objc/] [objc-tree.def] - Rev 717
Compare with Previous | Blame | View Log
/* This file contains the definitions and documentation for theadditional tree codes used in the Objective C front end (see tree.deffor the standard codes).Copyright (C) 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2007, 2010Free Software Foundation, Inc.This file is part of GCC.GCC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 3, or (at your option)any later version.GCC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GCC; see the file COPYING3. If not see<http://www.gnu.org/licenses/>. *//* Objective-C types. */DEFTREECODE (CLASS_INTERFACE_TYPE, "class_interface_type", tcc_type, 0)DEFTREECODE (CLASS_IMPLEMENTATION_TYPE, "class_implementation_type",tcc_type, 0)DEFTREECODE (CATEGORY_INTERFACE_TYPE, "category_interface_type", tcc_type, 0)DEFTREECODE (CATEGORY_IMPLEMENTATION_TYPE,"category_implementation_type",tcc_type, 0)DEFTREECODE (PROTOCOL_INTERFACE_TYPE, "protocol_interface_type", tcc_type, 0)/* Objective-C decls. */DEFTREECODE (KEYWORD_DECL, "keyword_decl", tcc_declaration, 0)DEFTREECODE (INSTANCE_METHOD_DECL, "instance_method_decl", tcc_declaration, 0)DEFTREECODE (CLASS_METHOD_DECL, "class_method_decl", tcc_declaration, 0)DEFTREECODE (PROPERTY_DECL, "property_decl", tcc_declaration, 0)/* Objective-C expressions. */DEFTREECODE (MESSAGE_SEND_EXPR, "message_send_expr", tcc_expression, 3)DEFTREECODE (CLASS_REFERENCE_EXPR, "class_reference_expr", tcc_expression, 1)/* This tree is used to represent the expression 'object.property',where 'object' is an Objective-C object and 'property' is anObjective-C property. Operand 0 is the object (the treerepresenting the expression), and Operand 1 is the property (thePROPERTY_DECL). Operand 2 is the 'getter' call, ready to be used;we pregenerate it because it is hard to generate it properly lateron. Operand 3 records whether using the 'getter' call shouldgenerate a deprecation warning or not.A PROPERTY_REF tree needs to be transformed into 'setter' and'getter' calls at some point; at the moment this happens in twoplaces:* if we detect that a modify expression is being applied to aPROPERTY_REF, then we transform that into a 'getter' call (thishappens in build_modify_expr() or cp_build_modify_expr()).* else, it will remain as a PROPERTY_REF until we get togimplification; at that point, we convert each PROPERTY_REF intoa 'getter' call during ObjC/ObjC++ gimplify. At that point, itis quite hard to build a 'getter' call, but we have already builtit and we just need to swap Operand 2 in, and emit the deprecationwarnings from Operand 3 if needed.Please note that when the Objective-C 2.0 "dot-syntax" 'object.component'is encountered, where 'component' is not a property but there are validsetter/getter methods for it, an artificial PROPERTY_DECL is generatedand used in the PROPERTY_REF. */DEFTREECODE (PROPERTY_REF, "property_ref", tcc_expression, 4)/*Local variables:mode:cEnd:*/
