IfInstruction.cpp
Go to the documentation of this file.
1 /*----------------------------------------------------------------------------*/
2 /* */
3 /* Copyright (c) 1995, 2004 IBM Corporation. All rights reserved. */
4 /* Copyright (c) 2005-2009 Rexx Language Association. All rights reserved. */
5 /* */
6 /* This program and the accompanying materials are made available under */
7 /* the terms of the Common Public License v1.0 which accompanies this */
8 /* distribution. A copy is also available at the following address: */
9 /* http://www.oorexx.org/license.html */
10 /* */
11 /* Redistribution and use in source and binary forms, with or */
12 /* without modification, are permitted provided that the following */
13 /* conditions are met: */
14 /* */
15 /* Redistributions of source code must retain the above copyright */
16 /* notice, this list of conditions and the following disclaimer. */
17 /* Redistributions in binary form must reproduce the above copyright */
18 /* notice, this list of conditions and the following disclaimer in */
19 /* the documentation and/or other materials provided with the distribution. */
20 /* */
21 /* Neither the name of Rexx Language Association nor the names */
22 /* of its contributors may be used to endorse or promote products */
23 /* derived from this software without specific prior written permission. */
24 /* */
25 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
26 /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
27 /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS */
28 /* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
29 /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
30 /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */
31 /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, */
32 /* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY */
33 /* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING */
34 /* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
35 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
36 /* */
37 /*----------------------------------------------------------------------------*/
38 /******************************************************************************/
39 /* REXX Translator */
40 /* */
41 /* Primitive If Parse Class */
42 /* */
43 /******************************************************************************/
44 #include <stdlib.h>
45 #include "RexxCore.h"
46 #include "RexxActivation.hpp"
47 #include "IfInstruction.hpp"
48 #include "Token.hpp"
49 
50 
52  RexxObject *_condition, /* conditional expression */
53  RexxToken *token) /* terminating THEN token */
54 /******************************************************************************/
55 /* Function: Complete IF instruction initialization */
56 /******************************************************************************/
57 {
58  SourceLocation location; /* clause token location */
59 
60  /* save the condition */
61  OrefSet(this, this->condition, _condition);
62  location = token->getLocation(); /* get the token location info */
63  /* update the end location */
64  this->setEnd(location.getLineNumber(), location.getOffset());
65 }
66 
68  RexxInstructionEndIf *end_target) /* targer for the false branch */
69 /******************************************************************************/
70 /* Function: Set the location for the false branch of the IF instruction */
71 /******************************************************************************/
72 {
73  /* save the end location */
74  OrefSet(this, this->else_location, end_target);
75 }
76 
77 void RexxInstructionIf::live(size_t liveMark)
78 /******************************************************************************/
79 /* Function: Normal garbage collection live marking */
80 /******************************************************************************/
81 {
82  memory_mark(this->nextInstruction); /* must be first one marked */
83  memory_mark(this->condition);
85 }
86 
87 
89 /******************************************************************************/
90 /* Function: Generalized object marking */
91 /******************************************************************************/
92 {
93  /* must be first one marked */
97 }
98 
100 /******************************************************************************/
101 /* Function: Flatten an object */
102 /******************************************************************************/
103 {
105 
106  flatten_reference(newThis->nextInstruction, envelope);
107  flatten_reference(newThis->condition, envelope);
108  flatten_reference(newThis->else_location, envelope);
109 
111 }
112 
114  RexxActivation *context, /* current activation context */
115  RexxExpressionStack *stack) /* evaluation stack */
116 /******************************************************************************/
117 /* Function: Execute a REXX IF instruction */
118 /******************************************************************************/
119 {
120  context->traceInstruction(this); /* trace if necessary */
121  /* get the expression value */
122  RexxObject *result = this->condition->evaluate(context, stack);
123  context->traceResult(result); /* trace if necessary */
124 
125  /* the comparison methods return either .true or .false, so we */
126  /* can to a quick test against those. */
127  if (result == TheFalseObject)
128  {
129  /* we execute the ELSE branch */
130  context->setNext(this->else_location->nextInstruction);
131  }
132  /* if it is not the True object, we need to perform a fuller */
133  /* evaluation of the result. */
134  else if (result != TheTrueObject)
135  {
136  /* is the condition false? */
137  if (!result->truthValue(Error_Logical_value_if))
138  {
139  /* we execute the ELSE branch */
140  context->setNext(this->else_location->nextInstruction);
141  }
142  }
143  context->pauseInstruction(); /* do debug pause if necessary */
144 }
145 
#define OrefSet(o, r, v)
Definition: RexxCore.h:94
#define TheTrueObject
Definition: RexxCore.h:186
#define TheFalseObject
Definition: RexxCore.h:185
#define Error_Logical_value_if
#define memory_mark(oref)
Definition: RexxMemory.hpp:445
#define flatten_reference(oref, envel)
Definition: RexxMemory.hpp:493
#define memory_mark_general(oref)
Definition: RexxMemory.hpp:446
#define cleanUpFlatten
Definition: RexxMemory.hpp:479
#define setUpFlatten(type)
Definition: RexxMemory.hpp:473
void traceResult(RexxObject *v)
void traceInstruction(RexxInstruction *v)
void setNext(RexxInstruction *v)
RexxInstruction * nextInstruction
void setEnd(size_t line, sizeB_t off)
void liveGeneral(int reason)
RexxInstructionIf(RexxObject *, RexxToken *)
RexxInstructionEndIf * else_location
RexxObject * condition
void setEndInstruction(RexxInstructionEndIf *)
void flatten(RexxEnvelope *)
void live(size_t)
void execute(RexxActivation *, RexxExpressionStack *)
virtual RexxObject * evaluate(RexxActivation *, RexxExpressionStack *)
bool truthValue(int)
const SourceLocation & getLocation()
Definition: Token.hpp:442
sizeB_t getOffset() const
size_t getLineNumber() const