C-Breeze
C Compiler Infrastructure

[ Project home page]
Main Page   Modules   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

operandNode Class Reference
[The AST nodes]

Operand of an expression. More...

#include <ast.h>

Inheritance diagram for operandNode:

exprNode Node List of all members.

Garbage collection.

bool mark
node_list nodes
map< Node *, bool > deleted_nodes

Public Member Functions

 operandNode (indexNode *the_var, const Coord coord=Coord::Unknown)
 operandNode (indexNode *the_var, bool star, bool addr, const Coord coord=Coord::Unknown)
 operandNode (indexNode *the_var, bool star, bool addr, id_list *fields, indexNode *array_index, const Coord coord=Coord::Unknown)
void addr (bool addr)
bool addr () const
void star (bool star)
bool star () const
void cast (typeNode *cast)
typeNodecast (void)
const typeNodecast (void) const
id_listfields ()
const id_listfields () const
void index (indexNode *index)
indexNodeindex (void)
const indexNodeindex (void) const
void var (indexNode *var)
indexNodevar (void)
const indexNodevar (void) const
virtual typeNodetype () const
 Return the node data type.

virtual void type (typeNode *)
virtual typeNodenoncast_type (bool convertArrays=true) const
virtual void eval ()
 Constant expression evaluator.

virtual void visit (Visitor *the_visitor)
 Dispatch a Visitor.

virtual void walk (Walker &the_walker)
 Dispatch a Walker.

virtual Nodechange (Changer &the_changer, bool redispatch=false)
 Dispatch a Changer.

virtual void dataflow (FlowVal *v, FlowProblem &fp)
 Run the dataflow analyzer.

virtual Nodeclone () const
 Clone the input node.

virtual void output_expr (output_context &ct, Node *parent, int prec, Assoc assoc)
 Output a expression.

virtual typeNodebase_type (bool TdefIndir) const
 Return the base data type of a node.

virtual bool is_lvalue ()
 Is l-value.

typeNodeno_tdef_type ()
virtual void output (output_context &ct, Node *par)
 Generate C code.

virtual int precedence (Assoc &assoc)
 Associativity and precedence.

bool parens (int outer_prec, Assoc outer_assoc)
 Determine if parenthesis are needed.

typeNodedatatype () const
 Call base_type() with the argument true.

typeNodedatatype_superior () const
 Call base_type() with the argument false.

Accessors
Methods to get and set fields in the class.

typeNodeget_type ()
const constantvalue () const
constantvalue ()
void value (const constant &newval)
Accessors
Methods to get and set fields in the class.

NodeType typ () const
 Get the node type.

Coord coord () const
 Get the source location.

void coord (const Coord coord)
 Set the source location.

bool parenthesized () const
 Get the parenthesized boolean.

void parenthesized (bool paren)
 Set the parenthesized boolean.

annote_listannotations ()
 Get the annotations list.

FlowValgen () const
 Get the "gen" flow value.

void gen (FlowVal *g)
 Set the "gen" flow value.

FlowValkill () const
 Get the "kill" flow value.

void kill (FlowVal *k)
 Set the "kill" flow value.


Static Public Member Functions

exprNodeintegral_promotions (exprNode *old_expr)
 Add integral promotions.

pair< exprNode *, exprNode * > usual_arithmetic_conversions (exprNode *left, exprNode *right)
 Usual arithmetic conversions.

void report ()
 Report node count statistics.


Private Attributes

bool _star
bool _addr
typeNode_cast
indexNode_var
id_list _fields
indexNode_index

Detailed Description

Operand of an expression.

The role of operandNode is to represent a memory location or address. An operandNode represents a simple variable or constant when only the var field is set. Otherwise, it represents a memory location (or the address of a memory location) that can be loaded in a single instruction. This latter case assumes that the base address of the var field is already loaded into a register and the offset is either constant or already computed. In a grammatical sense, we can view an {operandNode} by the following rules:

operand -> [typecast] [&] (* var) {.field}* [[index]] -> [typecast] [&] var {.field}* [[index]]

The NodeType is the type of the operand expression, or, if there is a cast in the expression, the type is the cast type.

Definition at line 6126 of file ast.h.


Constructor & Destructor Documentation

operandNode::operandNode indexNode   the_var,
const Coord    coord = Coord::Unknown
 

Definition at line 45 of file operandnode.cc.

References Operand.

Referenced by clone().

operandNode::operandNode indexNode   the_var,
bool    star,
bool    addr,
const Coord    coord = Coord::Unknown
 

Definition at line 55 of file operandnode.cc.

References Operand.

operandNode::operandNode indexNode   the_var,
bool    star,
bool    addr,
id_list   fields,
indexNode   array_index,
const Coord    coord = Coord::Unknown
 

Definition at line 66 of file operandnode.cc.

References _fields, and Operand.


Member Function Documentation

bool operandNode::addr   const [inline]
 

Definition at line 6142 of file ast.h.

Referenced by noncast_type(), and output_expr().

void operandNode::addr bool    addr [inline]
 

Definition at line 6141 of file ast.h.

Referenced by UnificationBasedPtr::alpha(), constantAnalyzer::at_address(), ExpressionDismantle::at_binary(), constantPropChanger::at_expr(), findVarAssign::at_operand(), print_walker::at_operand(), AllocToMemWalker::at_operand(), findVarAssign::at_threeAddr(), GetDefsWalker::at_threeAddr(), constantFoldingChanger::at_threeAddr(), constantsChanger::at_threeAddr(), ExpressionDismantle::at_unary(), copyPropChanger::copy_value(), LivenessWalker::defUseOperand(), UnificationBasedPtr::ecr(), Pointers::eval(), Pointers::is_pointer_expression(), lir_gen_walker::load_global(), lir_gen_walker::load_stack(), reachingDefinitionsWalker::make_ud_chains(), and UnificationBasedPtr::mergeOperand().

annote_list& Node::annotations   [inline, inherited]
 

Get the annotations list.

This method returns a modifiable reference to the list of annotations on the node. Users can add new annotations, search for annotations, or remove annotations. Users are responsible for ensuring that every element of the annotation list points to a valid annotation. In particular, no element should be NULL.

See also:
Annote class

Definition at line 276 of file ast.h.

References annote_list.

typeNode * exprNode::base_type bool    TdefIndir const [virtual, inherited]
 

Return the base data type of a node.

This method differs from the Node::type() method in two respects. First, it follows some of the simple type inferences. For example, calling it on an idNode will return the type of its declaration. Second, the boolean argument indicates whether or not to follow typedef links.

Parameters:
TdefIndir pass true to follow typedefs to their definitions.

Reimplemented from Node.

Reimplemented in idNode, commaNode, and callNode.

Definition at line 69 of file exprnode.cc.

References typeNode::base_type(), and exprNode::type().

Referenced by exprstmtNode::base_type(), callNode::base_type(), and noncast_type().

const typeNode* operandNode::cast void    const [inline]
 

Definition at line 6147 of file ast.h.

typeNode* operandNode::cast void    [inline]
 

Definition at line 6146 of file ast.h.

Referenced by output_expr(), and type().

void operandNode::cast typeNode   cast [inline]
 

Definition at line 6145 of file ast.h.

Referenced by constantAnalyzer::at_cast(), constantPropChanger::at_expr(), vcgASTWalker::at_operand(), TreeChecker::at_operand(), findVarAssign::at_threeAddr(), GetDefsWalker::at_threeAddr(), constantPropChanger::at_threeAddr(), UnificationBasedPtr::ecr(), Pointers::eval(), and UnificationBasedPtr::mergeOperand().

Node * operandNode::change Changer   the_changer,
bool    redispatch = false
[virtual]
 

Dispatch a Changer.

This abstract method works much the walker, but allows the tree to be changed.

Parameters:
the_changer the specific Changer object to use.
redispatch pass true to revisit parts of the tree that have changed.

Implements Node.

Definition at line 181 of file operandnode.cc.

References Changer::at_operand(), Changer::Both, Node::change(), change_list(), fields(), index(), Changer::order(), Changer::Order, Changer::Postorder, Changer::Preorder, and var().

Referenced by threeAddrNode::change().

virtual Node* operandNode::clone   const [inline, virtual]
 

Clone the input node.

This is not a "deep" clone, so be careful. For a deep clone, use the ref_clone_changer class.

Returns:
a shallow copy of the node (no subtrees are copied).

Implements Node.

Definition at line 6169 of file ast.h.

References operandNode().

void Node::coord const Coord    coord [inline, inherited]
 

Set the source location.

This location should indicate the position in the source text that this Node represents, or Coord::Unknown if it does not represent any node in the source text.

It is not common to set the source location of a node. Currently, only the compiler error messages actually make use of it.

Parameters:
coord the new location.

Definition at line 245 of file ast.h.

Coord Node::coord   const [inline, inherited]
 

Get the source location.

The Coord class holds a location in the input source (file, line, position). During parsing, each AST node created records the position of the source text that it represents. However, subsequent phases may create or change nodes, so no guarantee is given about how the source location corresponds to the original source text.

Returns:
the Coord structure indicating where the node came from in the source file.

Definition at line 232 of file ast.h.

Referenced by funcNode::add_parameter_types(), Unify_Structure::all_str(), Pointers::analyze_procedure(), semcheck_expr_visitor::at_binary(), id_lookup_walker::at_binary(), ExpressionDismantle::at_binary(), ArrowDismantle::at_binary(), SelectionDismantle::at_binary(), set_container_walker::at_break(), BreakContinueChanger::at_break(), UnificationBasedPtr::at_call(), semcheck_expr_visitor::at_call(), NodeLocator::at_call(), id_lookup_walker::at_call(), ExpressionDismantle::at_call(), set_container_walker::at_case(), constantsChanger::at_conditiongoto(), set_container_walker::at_continue(), BreakContinueChanger::at_continue(), NodeLocator::at_decl(), id_lookup_walker::at_decl(), InitializerDismantle::at_decl(), LoopDismantle::at_do(), enum_value_walker::at_enum(), NodeLocator::at_expr(), ExpressionDismantle::at_exprstmt(), LoopDismantle::at_for(), goto_label_walker::at_goto(), Linker::at_id(), id_lookup_walker::at_id(), SelectionDismantle::at_if(), goto_label_walker::at_label(), id_lookup_walker::at_proc(), ReturnDismantle::at_proc(), ReturnDismantle::at_return(), NodeLocator::at_stmt(), UnificationBasedPtr::at_suespec(), semcheck_walker::at_suespec(), SelectionDismantle::at_switch(), TernaryDismantle::at_ternary(), SizeofChanger::at_threeAddr(), AllocSizeChanger::at_unary(), ExpressionDismantle::at_unary(), LoopDismantle::at_while(), Pointers::call_operator(), semcheck_expr_visitor::check_binary(), semcheck_expr_visitor::check_unary(), UnificationBasedPtr::compatible_type(), procNode::define(), exprstmtNode::exprstmtNode(), typeNode::finish(), InitializerDismantle::init_array(), InitializerDismantle::init_scalar(), InitializerDismantle::init_struct(), function_inline::inliner(), exprNode::integral_promotions(), UnificationBasedPtr::make_compatible(), reachingDefinitionsWalker::make_ud_chains(), Unify_Structure::map_str(), primNode::merge_in(), metaexprNode::metaexprNode(), metastmtNode::metastmtNode(), vcgCCGWalker::node_label(), vcgASTWalker::node_label(), vcgCCGWalker::node_title(), vcgASTWalker::node_title(), DismantleUtil::Not(), Externals_table::notify_exit_scope(), Labels_table::notify_exit_scope(), Identifiers_table::notify_exit_scope(), Pointers::pass_parameters(), vcgCCGWalker::print_edge(), vcgASTWalker::print_edge(), vcgCCGWalker::print_node(), vcgASTWalker::print_node(), stmtLocation::print_path(), procNode::procNode(), NodeInfo::readCall(), NodeInfo::readDecl(), NodeInfo::readExprOrStmt(), NodeInfo::readsuef(), Pointers::record_external_inputs_and_outputs(), P::run(), Tags_table::shadow(), Identifiers_table::shadow(), memoryBlock::top_most_containers(), suespecNode::update(), exprNode::usual_arithmetic_conversions(), CBZ::WarnAboutPrecedence(), NodeInfo::writeDecl(), NodeInfo::writeExpr(), NodeInfo::writeProc(), NodeInfo::writeStmt(), and NodeInfo::writeType().

void operandNode::dataflow FlowVal   v,
FlowProblem   fp
[virtual]
 

Run the dataflow analyzer.

Each subclass overrides this method to define it's semantics for dataflow analysis. It alters the input flow value to reflect the effect of the node within the given flow problem, calling dataflow() on it's subtrees as necessary. See the dataflow analysis documentation for more information.

Parameters:
v the flow value to pass through the node.
fp the flow problem (specifying the transfer functions).

Implements Node.

Definition at line 276 of file operandnode.cc.

typeNode * Node::datatype   const [inherited]
 

Call base_type() with the argument true.

Definition at line 157 of file node.cc.

References Node::base_type().

Referenced by funcNode::is_void_args().

typeNode * Node::datatype_superior   const [inherited]
 

Call base_type() with the argument false.

Definition at line 162 of file node.cc.

References Node::base_type().

void operandNode::eval   [virtual]
 

Constant expression evaluator.

This method attempts to evaluate an expression at compile-time. This only yields a meaningful value when the leaves of the given expression are constants, enums, or other compile-time values (e.g., sizeof). The resulting value is stored on each exprNode, in the _value field. Each exprNode sublcass implements this method, calling it recursively when necessary.

Implements exprNode.

Definition at line 138 of file operandnode.cc.

References exprNode::value().

const id_list& operandNode::fields   const [inline]
 

Definition at line 6149 of file ast.h.

References id_list.

id_list& operandNode::fields   [inline]
 

Definition at line 6148 of file ast.h.

References id_list.

Referenced by UnificationBasedPtr::at_call(), constantPropChanger::at_expr(), constantAnalyzer::at_field_access(), vcgASTWalker::at_operand(), findVarAssign::at_operand(), TreeChecker::at_operand(), AllocToMemWalker::at_operand(), findVarAssign::at_threeAddr(), Linker::at_threeAddr(), GetDefsWalker::at_threeAddr(), constantFoldingChanger::at_threeAddr(), constantsChanger::at_threeAddr(), ExpressionDismantle::at_unary(), change(), Pointers::determine_call_targets(), UnificationBasedPtr::ecr(), Pointers::eval(), lir_gen_walker::field_offset(), lir_gen_walker::gen_load(), Pointers::is_pointer_expression(), copyPropChanger::local_copy_prop(), UnificationBasedPtr::mergeOperand(), noncast_type(), output_expr(), lir_gen_walker::store_stack(), and walk().

void Node::gen FlowVal   g [inline, inherited]
 

Set the "gen" flow value.

This value is used in dataflow analyses to store information that is generated at this node. Note that each node has exactly one "gen" flow value.

In order to set the flow value to be empty, call this method with a value of NULL.

Parameters:
g the new gen flow value.

Definition at line 299 of file ast.h.

FlowVal* Node::gen   const [inline, inherited]
 

Get the "gen" flow value.

This value is used in dataflow analyses to store information that is generated at this node. Note that each node has exactly one "gen" flow value.

Returns:
the "gen" flow value.

Definition at line 286 of file ast.h.

typeNode* exprNode::get_type   [inline, inherited]
 

Definition at line 3252 of file ast.h.

Referenced by remove_stale_type_walker::at_expr().

const indexNode* operandNode::index void    const [inline]
 

Definition at line 6152 of file ast.h.

indexNode* operandNode::index void    [inline]
 

Definition at line 6151 of file ast.h.

Referenced by noncast_type(), output_expr(), and walk().

void operandNode::index indexNode   index [inline]
 

Definition at line 6150 of file ast.h.

Referenced by ExpressionDismantle::at_binary(), UnificationBasedPtr::at_call(), constantPropChanger::at_expr(), constantAnalyzer::at_index(), vcgASTWalker::at_operand(), findVarAssign::at_operand(), TreeChecker::at_operand(), print_walker::at_operand(), AllocToMemWalker::at_operand(), findVarAssign::at_threeAddr(), Linker::at_threeAddr(), GetDefsWalker::at_threeAddr(), constantFoldingChanger::at_threeAddr(), constantsChanger::at_threeAddr(), ExpressionDismantle::at_unary(), change(), copyPropChanger::copy_value(), LivenessWalker::defUseOperand(), Pointers::determine_call_targets(), UnificationBasedPtr::ecr(), Pointers::eval(), lir_gen_walker::gen_load(), copyPropChanger::local_copy_prop(), reachingDefinitionsWalker::make_ud_chains(), UnificationBasedPtr::mergeOperand(), lir_gen_walker::store_global(), and lir_gen_walker::store_stack().

exprNode * exprNode::integral_promotions exprNode   old_expr [static, inherited]
 

Add integral promotions.

This method takes an expression and calls typeNode::integral_promotions() on its type to determine if any apply. If they do, it inserts an implicit castNode above the input expression that represents this implicit conversion.

See also:
castNode
Parameters:
old_expr the expression to perform integral promotion on
Returns:
the resulting expression, with a cast added if necessary

Definition at line 90 of file exprnode.cc.

References Node::coord(), typeNode::integral_promotions(), Operand, Node::typ(), and exprNode::type().

Referenced by semcheck_expr_visitor::at_binary(), semcheck_expr_visitor::check_binary(), and semcheck_expr_visitor::check_unary().

virtual bool exprNode::is_lvalue   [inline, virtual, inherited]
 

Is l-value.

Indicates if the expression is an l-value (that is, the left side of an assignment).

Todo:
This doesn't work yet.
Returns:
true if the given expression is an l-value

Definition at line 3298 of file ast.h.

Referenced by semcheck_expr_visitor::check_binary(), and semcheck_expr_visitor::check_unary().

void Node::kill FlowVal   k [inline, inherited]
 

Set the "kill" flow value.

This value is used in dataflow analyses to store information that is killed at this node. Note that each node has exactly one "kill" flow value.

To set the flow value to be empty, call this method with a value of NULL.

Parameters:
k the new kill flow value.

Definition at line 322 of file ast.h.

FlowVal* Node::kill   const [inline, inherited]
 

Get the "kill" flow value.

This value is used in dataflow analyses to store information that is killed at this node. Note that each node has exactly one "kill" flow value.

Returns:
the "kill" flow value.

Definition at line 309 of file ast.h.

typeNode* exprNode::no_tdef_type   [inline, inherited]
 

Definition at line 3300 of file ast.h.

References typeNode::follow_tdefs(), and exprNode::type().

Referenced by semcheck_expr_visitor::at_binary(), id_lookup_walker::at_binary(), semcheck_expr_visitor::at_call(), semcheck_expr_visitor::check_binary(), semcheck_expr_visitor::check_unary(), Pointers::determine_call_targets(), and InitializerDismantle::eval_or_cast().

typeNode * operandNode::noncast_type bool    convertArrays = true const [virtual]
 

Definition at line 88 of file operandnode.cc.

References addr(), Array, exprNode::base_type(), Const, fields(), typeNode::follow_tdefs(), Id, index(), Ptr, star(), Node::typ(), type(), typeNode::type(), and var().

Referenced by lir_gen_walker::gen_binary_assignment(), lir_gen_walker::load_global(), lir_gen_walker::load_stack(), and type().

void exprNode::output output_context   ct,
Node   par
[virtual, inherited]
 

Generate C code.

Each subclass overrides this method to define how to produce the output C code. To use this method, pass an output_context and a null parent.

Parameters:
ct the output context which describes the formatting.
par the parent node (or null, if at the top of a subtree).

Implements Node.

Definition at line 158 of file exprnode.cc.

References exprNode::output_expr().

Referenced by ExpressionDismantle::at_binary(), constantsChanger::at_id(), subdeclNode::output(), declNode::output(), output_expr(), binaryNode::output_expr(), whileNode::output_stmt(), threeAddrNode::output_stmt(), switchNode::output_stmt(), returnNode::output_stmt(), ifNode::output_stmt(), forNode::output_stmt(), exprstmtNode::output_stmt(), doNode::output_stmt(), conditiongotoNode::output_stmt(), caseNode::output_stmt(), and arrayNode::output_type().

void operandNode::output_expr output_context   ct,
Node   parent,
int    prec,
Assoc    assoc
[virtual]
 

Output a expression.

Implements exprNode.

Definition at line 230 of file operandnode.cc.

References addr(), cast(), fields(), id_list_p, index(), exprNode::output(), typeNode::output(), output_context::space(), star(), ThreeAddr, Node::typ(), and var().

bool exprNode::parens int    outer_prec,
Assoc    outer_assoc
[inherited]
 

Determine if parenthesis are needed.

This method takes the associativity and precedence values of the enclosing expression and determines if parentheses are needed.

See also:
exprNode::output_expr()

exprNode::precedence()

Parameters:
outer_prec the precedence value of the enclosing expression
outer_assoc the associativity value of the enclosing expression
Returns:
true if parentheses are needed.

Definition at line 136 of file exprnode.cc.

References Assoc, Node::parenthesized(), and exprNode::precedence().

Referenced by unaryNode::output_expr(), ternaryNode::output_expr(), metaexprNode::output_expr(), initializerNode::output_expr(), idNode::output_expr(), constNode::output_expr(), commaNode::output_expr(), castNode::output_expr(), callNode::output_expr(), and binaryNode::output_expr().

void Node::parenthesized bool    paren [inline, inherited]
 

Set the parenthesized boolean.

This boolean determines whether this expression will be parenthesized in the output. Note that that the parentheses will always be added when they are needed to disambiguate the output. This variable only controls the use of "un-necessary" parentheses.

Parameters:
paren the new value of the parenthesized boolean.

Definition at line 264 of file ast.h.

bool Node::parenthesized   const [inline, inherited]
 

Get the parenthesized boolean.

Returns:
true if the construct corresponding to this Node was parenthesized in the source.

Definition at line 252 of file ast.h.

Referenced by exprNode::parens(), and CBZ::WarnAboutPrecedence().

int exprNode::precedence Assoc   assoc [virtual, inherited]
 

Associativity and precedence.

Determine the associativity and precedence of the expression. Each exprNode subclass overrides this method to provide the specific results. The default is highest precedence and left-associative.

See also:
exprNode::output_expr()

exprNode::parens()

Parameters:
assoc a reference parameter that is set to the associativity value
Returns:
the precedence value

Reimplemented in binaryNode, unaryNode, castNode, commaNode, and ternaryNode.

Definition at line 78 of file exprnode.cc.

References Left.

Referenced by callNode::output_expr(), and exprNode::parens().

void Node::report   [static, inherited]
 

Report node count statistics.

The code can be configured to gather statistics about node usage according to type. This method prints the current state of that accounting information to standard out.

Definition at line 184 of file node.cc.

References Node::_count, Node::_t_count, Array, Attrib, Binary, Block, Break, Call, Case, Cast, Comma, Const, Continue, Decl, Do, Enum, Expr, For, Func, Goto, Id, If, Initializer, Label, Prim, Proc, Ptr, Return, Struct, sueSpec, Switch, Tdef, Ternary, Text, Unary, Undeclared, Union, and While.

bool operandNode::star   const [inline]
 

Definition at line 6144 of file ast.h.

Referenced by noncast_type(), and output_expr().

void operandNode::star bool    star [inline]
 

Definition at line 6143 of file ast.h.

Referenced by UnificationBasedPtr::at_call(), constantAnalyzer::at_dereference(), constantPropChanger::at_expr(), findVarAssign::at_operand(), print_walker::at_operand(), UnificationBasedPtr::at_threeAddr(), findVarAssign::at_threeAddr(), Linker::at_threeAddr(), GetDefsWalker::at_threeAddr(), constantFoldingChanger::at_threeAddr(), constantsChanger::at_threeAddr(), ExpressionDismantle::at_unary(), LivenessWalker::defUseOperand(), Pointers::determine_call_targets(), UnificationBasedPtr::ecr(), Pointers::eval(), lir_gen_walker::field_offset(), Pointers::is_pointer_expression(), copyPropChanger::local_copy_prop(), UnificationBasedPtr::mergeOperand(), lir_gen_walker::store_global(), and lir_gen_walker::store_stack().

NodeType Node::typ   const [inline, inherited]
 

Get the node type.

This has nothing to do with types in the source code. It indicates what kind of AST node this is (e.g., a unary expression node or a while node).

Returns:
the node type.

Definition at line 218 of file ast.h.

References NodeType.

Referenced by declNode::add_parameter_types(), Pointers::analyze_procedure(), SSA::assignment(), Pointers::assignment_operator(), Assignment_walker::at_binary(), semcheck_expr_visitor::at_binary(), id_lookup_walker::at_binary(), ExpressionDismantle::at_binary(), constantAnalyzer::at_binary(), UnificationBasedPtr::at_call(), TreeChecker::at_call(), semcheck_expr_visitor::at_call(), NodeLocator::at_call(), Linker::at_call(), id_lookup_walker::at_call(), ExpressionDismantle::at_call(), ExpressionDismantle::at_cast(), constantAnalyzer::at_cast(), ExpressionDismantle::at_comma(), constantFoldingChanger::at_conditiongoto(), constantPropChanger::at_conditiongoto(), constantAnalyzer::at_const(), vcgASTWalker::at_decl(), UnificationBasedPtr::at_decl(), name_mangle_walker::at_decl(), AllocToMemWalker::at_decl(), id_lookup_walker::at_decl(), InitializerDismantle::at_decl(), remove_stale_type_walker::at_expr(), NodeLocator::at_expr(), constantPropChanger::at_expr(), FlattenDismantle::at_goto(), Linker::at_id(), callGraph::at_id(), CFS_Changer::at_if(), UnificationBasedPtr::at_initializer(), TreeChecker::at_label(), FlattenDismantle::at_label(), UnificationBasedPtr::at_proc(), LivenessWalker::at_proc(), FlattenDismantle::at_proc(), DefUseWalker::at_proc(), cfg_changer::at_proc(), unreachableCodeRemover::at_proc(), TreeChecker::at_return(), constantAnalyzer::at_sizeof(), NodeLocator::at_stmt(), print_walker::at_sue(), print_tree_visitor::at_sue(), vcgCCGWalker::at_threeAddr(), Linker::at_threeAddr(), identify_inlinees::at_threeAddr(), function_inline::at_threeAddr(), W::at_type(), ExpressionDismantle::at_unary(), fixPointerWalker::at_unary(), constantAnalyzer::at_unary(), callNode::base_type(), NodeInfo::canonical(), ipConstant::cast_operator(), semcheck_expr_visitor::check_binary(), semcheck_expr_visitor::check_unary(), UnificationBasedPtr::compatible_type(), memoryModel::create_memory_object(), UnificationBasedPtr::create_synthetic_proc(), NodeInfo::def_type(), gcWalker::delete_nodes(), Pointers::determine_call_targets(), DFPreds::DFPreds(), DominanceFrontiers::DominanceFrontiers(), memoryBlock::dot(), Pointers::dot_operator(), UnificationBasedPtr::ecr1(), typeNode::equal_to(), Pointers::eval(), castNode::eval(), typeNode::finish(), typeNode::follow_tdefs(), memoryModel::generate_array_elements_for(), DefUseWalker::get_def(), DefUseWalker::get_uses(), Register::getRegRetVal(), NodeInfo::getType(), memoryModel::initialize_struct(), function_inline::inliner(), typeNode::integral_promotions(), exprNode::integral_promotions(), labelNode::is_undeclared(), UnificationBasedPtr::is_va_list(), Pointers::is_va_list(), SSA::lhs(), Linker::link(), lir_gen_walker::load_global_value(), lir_gen_walker::load_stack_value(), LocalCopyPropChanger::local_copy_prop(), memoryModel::lookup_variable(), arch_info::make_template_replacements(), reachingDefinitionsWalker::make_ud_chains(), SSA::need_ssa(), vcgCCGWalker::node_label(), vcgCCGWalker::node_name(), vcgASTWalker::node_name(), vcgCCGWalker::node_title(), NodeInfo::nodeIndex(), noncast_type(), DismantleUtil::Not(), Externals_table::notify_exit_scope(), Identifiers_table::notify_exit_scope(), stmtNode::output(), output_expr(), blockNode::output_stmt(), sueNode::output_type(), ptrNode::output_type(), Pointers::pass_parameters(), SSA::phi(), SSA::place_one_phi(), vcgASTWalker::print_edge(), vcgCCGWalker::print_node(), vcgASTWalker::print_node(), procedureInfo::procedureInfo(), procNode::procNode(), LocalCopyPropChanger::prop(), LocalCopyPropChanger::prop_expr(), arrayNode::qualified_equal_to(), NodeInfo::readCall(), NodeInfo::readDecl(), NodeInfo::readExprOrStmt(), NodeInfo::readProc(), NodeInfo::readsuef(), NodeInfo::readType(), Unreachable::remove(), P::run(), dfpreds_phase::run(), ssa_phase::run(), pointers_phase::run(), SSA::search(), sueNode::set_name_fields(), Register::setType(), Unify_Size::sizeOf(), Unify_Size::sizeOfAssign(), SSA::SSA(), Pointers::star_operator(), lir_gen_walker::store_global(), lir_gen_walker::store_stack(), Pointers::struct_union_assignment(), blockNode::toBlock(), memoryBlock::top_most_containers(), P::type_name(), NodeInfo::type_name(), Unify_ECR::Unify_ECR(), typeNode::unwind_tdefs(), suespecNode::update(), typeNode::usual_arithmetic_conversions(), exprNode::usual_arithmetic_conversions(), binaryNode::walk(), CBZ::WarnAboutPrecedence(), NodeInfo::writeCall(), NodeInfo::writeExpr(), NodeInfo::writeProc(), NodeInfo::writeStmt(), and NodeInfo::writeType().

void operandNode::type typeNode   [virtual]
 

Reimplemented from exprNode.

Definition at line 131 of file operandnode.cc.

typeNode * operandNode::type   const [virtual]
 

Return the node data type.

This method returns the C data type of a node. Several different kinds of nodes contain typeNode pointers. This method is just a unified way to access them. It does not attempt to compute the type, it just returns whatever typeNode pointer resides on the node. The subclasses that have types return them, and the others return null.

Returns:
the typeNode pointer on the node.

Reimplemented from exprNode.

Definition at line 81 of file operandnode.cc.

References cast(), and noncast_type().

Referenced by ExpressionDismantle::at_binary(), UnificationBasedPtr::at_call(), AllocToMemWalker::at_operand(), Pointers::eval(), lir_gen_walker::field_offset(), lir_gen_walker::gen_binary_assignment(), noncast_type(), lir_gen_walker::store_global(), and lir_gen_walker::store_stack().

pair< exprNode *, exprNode * > exprNode::usual_arithmetic_conversions exprNode   left,
exprNode   right
[static, inherited]
 

Usual arithmetic conversions.

This method takes two expressions and adds any casts that are necessary to make them compatible for arithmetic operations. It calls typeNode::usual_arithmetic_conversions(), passing the types of the expressions, to determine when the casts are needed. It inserts implicit castNode objects above the expressions for the casts.

See also:
castNode
Parameters:
left the left-hand expression
right the right-hand expression
Returns:
the left and right expressions, possibly with casts added

Definition at line 103 of file exprnode.cc.

References Node::coord(), Operand, Node::typ(), exprNode::type(), and typeNode::usual_arithmetic_conversions().

Referenced by semcheck_expr_visitor::check_binary().

void exprNode::value const constant   newval [inline, inherited]
 

Definition at line 3257 of file ast.h.

constant& exprNode::value   [inline, inherited]
 

Definition at line 3256 of file ast.h.

const constant& exprNode::value   const [inline, inherited]
 

Definition at line 3255 of file ast.h.

Referenced by UnificationBasedPtr::alpha(), AllocSizeChanger::at_array(), TreeChecker::at_case(), constantFoldingChanger::at_conditiongoto(), constantsChanger::at_conditiongoto(), TreeChecker::at_const(), constantAnalyzer::at_const(), TreeChecker::at_decl(), enum_value_walker::at_enum(), ipConstantsChanger::at_expr(), constantsChanger::at_id(), CFS_Changer::at_if(), UnificationBasedPtr::at_initializer(), semcheck_walker::at_suespec(), constantFoldingChanger::at_threeAddr(), constantsChanger::at_threeAddr(), constNode::constNode(), unaryNode::eval(), ternaryNode::eval(), Pointers::eval(), eval(), initializerNode::eval(), idNode::eval(), commaNode::eval(), castNode::eval(), callNode::eval(), binaryNode::eval(), InitializerDismantle::eval_or_cast(), lir_gen_walker::index_offset(), InitializerDismantle::init_array(), InitializerDismantle::isStringLiteral(), lir_gen_walker::load_const(), ipConstantPropagation::lookup(), constNode::output_expr(), arrayNode::qualified_equal_to(), and constantAnalyzer::rebuild_flowvalue().

const indexNode* operandNode::var void    const [inline]
 

Definition at line 6155 of file ast.h.

indexNode* operandNode::var void    [inline]
 

Definition at line 6154 of file ast.h.

Referenced by noncast_type(), output_expr(), and walk().

void operandNode::var indexNode   var [inline]
 

Definition at line 6153 of file ast.h.

Referenced by UnificationBasedPtr::alpha(), UnificationBasedPtr::at_allocation(), UnificationBasedPtr::at_call(), constantPropChanger::at_expr(), vcgASTWalker::at_operand(), findVarAssign::at_operand(), TreeChecker::at_operand(), AllocToMemWalker::at_operand(), UnificationBasedPtr::at_threeAddr(), findVarAssign::at_threeAddr(), Linker::at_threeAddr(), identify_inlinees::at_threeAddr(), function_inline::at_threeAddr(), GetDefsWalker::at_threeAddr(), constantFoldingChanger::at_threeAddr(), constantsChanger::at_threeAddr(), change(), copyPropChanger::copy_value(), LivenessWalker::defUseOperand(), Pointers::determine_call_targets(), UnificationBasedPtr::ecr(), Pointers::eval(), lir_gen_walker::field_offset(), lir_gen_walker::gen_load(), lir_gen_walker::gen_store(), copyPropChanger::local_copy_prop(), reachingDefinitionsWalker::make_ud_chains(), UnificationBasedPtr::mergeOperand(), lir_gen_walker::store_global(), and lir_gen_walker::store_stack().

void operandNode::visit Visitor   the_visitor [virtual]
 

Dispatch a Visitor.

This abstract method is the entry point for the visitor design pattern. Each node subclass defines a visit() method that calls the appropriate at_ method in the visitor. For more information see the Visitor documentation.

Parameters:
the_visitor the specific Visitor object to use.

Implements Node.

Definition at line 146 of file operandnode.cc.

References Visitor::at_operand().

void operandNode::walk Walker   the_walker [virtual]
 

Dispatch a Walker.

This abstract method works much like the visitor, but instead walks the entire underlying subtree calling the appropriate at_ method at each node. For more information see the Walker documentation.

Parameters:
the_walker the specific Walker object to use.

Implements Node.

Definition at line 151 of file operandnode.cc.

References Walker::at_operand(), Walker::Both, Walker::depth(), fields(), index(), list_walker(), Walker::order(), Walker::Order, Walker::Postorder, Walker::Preorder, Walker::Subtree, var(), and Node::walk().

Referenced by threeAddrNode::walk().


Member Data Documentation

bool operandNode::_addr [private]
 

Definition at line 6129 of file ast.h.

typeNode* operandNode::_cast [private]
 

Definition at line 6130 of file ast.h.

id_list operandNode::_fields [private]
 

Definition at line 6132 of file ast.h.

Referenced by operandNode().

indexNode* operandNode::_index [private]
 

Definition at line 6133 of file ast.h.

bool operandNode::_star [private]
 

Definition at line 6128 of file ast.h.

indexNode* operandNode::_var [private]
 

Definition at line 6131 of file ast.h.

map< Node *, bool > Node::deleted_nodes [static, inherited]
 

Definition at line 116 of file node.cc.

Referenced by gcWalker::delete_nodes(), and Node::~Node().

bool Node::mark [inherited]
 

Definition at line 170 of file ast.h.

Referenced by gcWalker::at_binary(), gcWalker::at_node(), gcWalker::delete_nodes(), and SymbolTable< T >::mark_nodes().

node_list Node::nodes [static, inherited]
 

Definition at line 115 of file node.cc.

Referenced by gcWalker::delete_nodes(), gcWalker::gcWalker(), and Node::Node().


The documentation for this class was generated from the following files:

Generated on August 27, 2003
Back to the C-Breeze home page