EndInstruction.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 End Parse Class */
42 /* */
43 /******************************************************************************/
44 #include <stdlib.h>
45 #include "RexxCore.h"
46 #include "StringClass.hpp"
47 #include "RexxActivation.hpp"
48 #include "EndInstruction.hpp"
49 #include "DoInstruction.hpp"
50 #include "DoBlock.hpp"
51 
53  RexxString *_name) /* The END instruction name */
54 /****************************************************************************/
55 /* Function: Set the name of an END instruction */
56 /****************************************************************************/
57 {
58  OrefSet(this, this->name, _name);
59 }
60 
61 void RexxInstructionEnd::live(size_t liveMark)
62 /******************************************************************************/
63 /* Function: Normal garbage collection live marking */
64 /******************************************************************************/
65 {
66  memory_mark(this->nextInstruction); /* must be first one marked */
67  memory_mark(this->name);
68 }
69 
71 /******************************************************************************/
72 /* Function: Generalized object marking */
73 /******************************************************************************/
74 {
75  /* must be first one marked */
78 }
79 
81 /******************************************************************************/
82 /* Function: Flatten an object */
83 /******************************************************************************/
84 {
86 
87  flatten_reference(newThis->nextInstruction, envelope);
88  flatten_reference(newThis->name, envelope);
89 
91 }
92 
94  RexxActivation *context, /* current activation context */
95  RexxExpressionStack *stack ) /* evaluation stack */
96 /****************************************************************************/
97 /* Function: Execute a REXX END instruction */
98 /****************************************************************************/
99 {
100  RexxDoBlock *doBlock; /* target DO block */
101 
102  if (!context->hasActiveBlocks()) /* no possible blocks? */
103  {
104  context->traceInstruction(this); /* trace if necessary */
105  /* this is an error */
107  }
108 
109  switch (this->getStyle())
110  { /* process each loop type */
111 
112  case LOOP_BLOCK: /* is this a loop? */
113  doBlock = context->topBlock(); /* get the top DO block */
114  /* reset the indentation */
115  context->setIndent(doBlock->getIndent());
116  context->traceInstruction(this); /* trace if necessary */
117  /* pass on the reexecution */
118  ((RexxInstructionDo *)(doBlock->getParent()))->reExecute(context, stack, doBlock);
119  break;
120 
121  case SELECT_BLOCK: /* END of a select block */
122  context->unindent(); /* remove indentation */
123  context->traceInstruction(this); /* trace if necessary */
124  /* looking for a WHEN match */
125  /* this is an error */
127  break;
128 
129  // for labeled BLOCK types, we need to remove the active marker.
130  case OTHERWISE_BLOCK:
132  case LABELED_DO_BLOCK:
133  context->terminateBlock();
134  context->traceInstruction(this); /* trace if necessary */
135  break;
136 
137  default: /* all others */
138  context->unindent(); /* remove indentation */
139  context->removeBlock(); /* just step back next level */
140  context->traceInstruction(this); /* trace if necessary */
141  break;
142  }
143 }
144 
void reportException(wholenumber_t error)
#define SELECT_BLOCK
#define LABELED_DO_BLOCK
#define OTHERWISE_BLOCK
#define LABELED_OTHERWISE_BLOCK
#define LOOP_BLOCK
#define OrefSet(o, r, v)
Definition: RexxCore.h:94
#define Error_When_expected_nootherwise
#define Error_Unexpected_end_nodo
#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 traceInstruction(RexxInstruction *v)
void setIndent(size_t v)
void terminateBlock(size_t _indent)
RexxDoBlock * topBlock()
RexxBlockInstruction * getParent()
Definition: DoBlock.hpp:67
size_t getIndent()
Definition: DoBlock.hpp:73
void liveGeneral(int reason)
RexxInstructionEnd(RESTORETYPE restoreType)
size_t getStyle(void)
void execute(RexxActivation *, RexxExpressionStack *)
void flatten(RexxEnvelope *)
RexxInstruction * nextInstruction