1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/* $Id$
*
* EndTransfer: free space for transfer region again.
*
* Copyright (C) 2008-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#ifndef __END_TRANSFER_HPP_INCLUDED
#define __END_TRANSFER_HPP_INCLUDED
#include "intermediate/opcodes/OpCode.hpp"
#include "intermediate/operands/Reference.hpp"
#include "intermediate/operands/ImmediateOperand.hpp"
namespace intermediate {
//! free space for the transfer region.
/** This opcode will free space for the named transfer region.
*
* Read operands: src, cleanupStack
* Write operands: no publicly visible operands.
*
* Operation:
* Free space for the transfer section of component src at an
* implementation defined location, in case cleanupStack is set.
*
* Errors:
* It is an error if EndTransfer wasn't called after BeginTransfer was
* called from within the same text segment.
* It is an error if EndTransfer references a different component
* than the preceding BeginTransfer call.
*/
class EndTransfer : public OpCode {
public:
//! c'tor
/** @param source reference to a component denoting the transfer
* section.
* @param cleanup when executing end transfer, cleanup the
* stack entries or not? (useful for _create calls,
* which create processes that need the parent stack to
* be present).
*/
EndTransfer(
Reference *source,
ImmediateOperand *cleanup
) : src(source), cleanupStack(cleanup) {}
//! Accept a Visitor.
/** All intermediate code nodes need to implement this method.
*
* @param v the Visitor that can visit this node.
*/
virtual void accept(Visitor& v) {
v.visit(*this);
}
//! references a component (denoting the transfer region of it)
Reference *src;
//! cleanup the stack
ImmediateOperand *cleanupStack;
protected:
virtual ~EndTransfer() {
util::MiscUtil::terminate(this->src);
util::MiscUtil::terminate(this->cleanupStack);
}
};
}; /* namespace intermediate */
#endif /* __END_TRANSFER_HPP_INCLUDED */
|