00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef STORE_H_
00011 #define STORE_H_
00012
00013 #include "Instruction.h"
00014
00015 #include <string>
00016 using namespace std;
00017
00018 namespace il{class node;}
00019
00020 namespace sail {
00021
00022 class Variable;
00023 class Symbol;
00024
00037 class Store: public Instruction {
00038 friend class boost::serialization::access;
00039
00040 template<class Archive>
00041 void serialize(Archive & ar, const unsigned int version)
00042 {
00043 ar & boost::serialization::base_object<sail::Instruction>(*this);
00044 ar & v1;
00045 ar & v2;
00046 ar & offset;
00047 ar & name;
00048 }
00049
00050 private:
00051 Symbol* v1;
00052 Symbol* v2;
00053 int offset;
00054 string name;
00055
00056 public:
00057 Store(Symbol* v1, Symbol* v2, int offset, string name,
00058 il::node* original, int line);
00059 Store(){};
00060 virtual string to_string() const;
00061 virtual string to_string(bool pretty_print) const;
00062 Symbol* get_rhs();
00063 Symbol* get_lhs();
00064 int get_offset();
00065 string & get_field_name();
00066 virtual bool is_removable();
00067 virtual ~Store();
00068 };
00069
00070 }
00071
00072 #endif