mem64.hh (10037:5cac77888310) mem64.hh (10537:47fe87b0cf97)
1/*
2 * Copyright (c) 2011-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 87 unchanged lines hidden (view full) ---

96 bool baseIsSP;
97 static const unsigned numMicroops = 3;
98
99 StaticInstPtr *uops;
100
101 Memory64(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
102 IntRegIndex _dest, IntRegIndex _base)
103 : MightBeMicro64(mnem, _machInst, __opClass),
1/*
2 * Copyright (c) 2011-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 87 unchanged lines hidden (view full) ---

96 bool baseIsSP;
97 static const unsigned numMicroops = 3;
98
99 StaticInstPtr *uops;
100
101 Memory64(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
102 IntRegIndex _dest, IntRegIndex _base)
103 : MightBeMicro64(mnem, _machInst, __opClass),
104 dest(_dest), base(_base), uops(NULL)
104 dest(_dest), base(_base), uops(NULL), memAccessFlags(0)
105 {
106 baseIsSP = isSP(_base);
107 }
108
109 virtual
110 ~Memory64()
111 {
112 delete [] uops;

--- 141 unchanged lines hidden ---
105 {
106 baseIsSP = isSP(_base);
107 }
108
109 virtual
110 ~Memory64()
111 {
112 delete [] uops;

--- 141 unchanged lines hidden ---