2006-08-12 01:43:10 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2003-2005 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* Authors: Gabe Black
|
|
|
|
* Ali Saidi
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "arch/sparc/floatregfile.hh"
|
|
|
|
#include "base/trace.hh"
|
|
|
|
#include "sim/byteswap.hh"
|
|
|
|
#include "sim/serialize.hh"
|
|
|
|
|
2006-11-05 03:41:01 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2006-08-12 01:43:10 +02:00
|
|
|
using namespace SparcISA;
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class Checkpoint;
|
|
|
|
|
|
|
|
string SparcISA::getFloatRegName(RegIndex index)
|
|
|
|
{
|
|
|
|
static std::string floatRegName[NumFloatRegs] =
|
|
|
|
{"f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
|
|
|
|
"f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
|
|
|
|
"f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
|
|
|
|
"f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
|
|
|
|
"f32", "f33", "f34", "f35", "f36", "f37", "f38", "f39",
|
|
|
|
"f40", "f41", "f42", "f43", "f44", "f45", "f46", "f47",
|
|
|
|
"f48", "f49", "f50", "f51", "f52", "f53", "f54", "f55",
|
|
|
|
"f56", "f57", "f58", "f59", "f60", "f61", "f62", "f63"};
|
|
|
|
return floatRegName[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
void FloatRegFile::clear()
|
|
|
|
{
|
2006-11-05 03:41:01 +01:00
|
|
|
memset(regSpace, 0, sizeof(regSpace));
|
2006-08-12 01:43:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
FloatReg FloatRegFile::readReg(int floatReg, int width)
|
|
|
|
{
|
|
|
|
//In each of these cases, we have to copy the value into a temporary
|
|
|
|
//variable. This is because we may otherwise try to access an
|
|
|
|
//unaligned portion of memory.
|
2006-08-29 22:02:54 +02:00
|
|
|
FloatReg result;
|
2006-08-12 01:43:10 +02:00
|
|
|
switch(width)
|
|
|
|
{
|
|
|
|
case SingleWidth:
|
|
|
|
float32_t result32;
|
|
|
|
memcpy(&result32, regSpace + 4 * floatReg, sizeof(result32));
|
2006-08-29 22:02:54 +02:00
|
|
|
result = htog(result32);
|
|
|
|
break;
|
2006-08-12 01:43:10 +02:00
|
|
|
case DoubleWidth:
|
|
|
|
float64_t result64;
|
|
|
|
memcpy(&result64, regSpace + 4 * floatReg, sizeof(result64));
|
2006-08-29 22:02:54 +02:00
|
|
|
result = htog(result64);
|
|
|
|
break;
|
2006-08-12 01:43:10 +02:00
|
|
|
case QuadWidth:
|
|
|
|
float128_t result128;
|
|
|
|
memcpy(&result128, regSpace + 4 * floatReg, sizeof(result128));
|
2006-08-29 22:02:54 +02:00
|
|
|
result = htog(result128);
|
|
|
|
break;
|
2006-08-12 01:43:10 +02:00
|
|
|
default:
|
|
|
|
panic("Attempted to read a %d bit floating point register!", width);
|
|
|
|
}
|
2006-08-29 22:02:54 +02:00
|
|
|
return result;
|
2006-08-12 01:43:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
FloatRegBits FloatRegFile::readRegBits(int floatReg, int width)
|
|
|
|
{
|
|
|
|
//In each of these cases, we have to copy the value into a temporary
|
|
|
|
//variable. This is because we may otherwise try to access an
|
|
|
|
//unaligned portion of memory.
|
2006-08-29 22:02:54 +02:00
|
|
|
FloatRegBits result;
|
2006-08-12 01:43:10 +02:00
|
|
|
switch(width)
|
|
|
|
{
|
|
|
|
case SingleWidth:
|
|
|
|
uint32_t result32;
|
|
|
|
memcpy(&result32, regSpace + 4 * floatReg, sizeof(result32));
|
2006-08-29 22:02:54 +02:00
|
|
|
result = htog(result32);
|
|
|
|
break;
|
2006-08-12 01:43:10 +02:00
|
|
|
case DoubleWidth:
|
|
|
|
uint64_t result64;
|
|
|
|
memcpy(&result64, regSpace + 4 * floatReg, sizeof(result64));
|
2006-08-29 22:02:54 +02:00
|
|
|
result = htog(result64);
|
|
|
|
break;
|
2006-08-12 01:43:10 +02:00
|
|
|
case QuadWidth:
|
|
|
|
uint64_t result128;
|
|
|
|
memcpy(&result128, regSpace + 4 * floatReg, sizeof(result128));
|
2006-08-29 22:02:54 +02:00
|
|
|
result = htog(result128);
|
|
|
|
break;
|
2006-08-12 01:43:10 +02:00
|
|
|
default:
|
|
|
|
panic("Attempted to read a %d bit floating point register!", width);
|
|
|
|
}
|
2006-08-29 22:02:54 +02:00
|
|
|
return result;
|
2006-08-12 01:43:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Fault FloatRegFile::setReg(int floatReg, const FloatReg &val, int width)
|
|
|
|
{
|
|
|
|
//In each of these cases, we have to copy the value into a temporary
|
|
|
|
//variable. This is because we may otherwise try to access an
|
|
|
|
//unaligned portion of memory.
|
|
|
|
|
|
|
|
uint32_t result32;
|
|
|
|
uint64_t result64;
|
|
|
|
switch(width)
|
|
|
|
{
|
|
|
|
case SingleWidth:
|
|
|
|
result32 = gtoh((uint32_t)val);
|
|
|
|
memcpy(regSpace + 4 * floatReg, &result32, sizeof(result32));
|
|
|
|
break;
|
|
|
|
case DoubleWidth:
|
|
|
|
result64 = gtoh((uint64_t)val);
|
|
|
|
memcpy(regSpace + 4 * floatReg, &result64, sizeof(result64));
|
|
|
|
break;
|
|
|
|
case QuadWidth:
|
|
|
|
panic("Quad width FP not implemented.");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
panic("Attempted to read a %d bit floating point register!", width);
|
|
|
|
}
|
|
|
|
return NoFault;
|
|
|
|
}
|
|
|
|
|
|
|
|
Fault FloatRegFile::setRegBits(int floatReg, const FloatRegBits &val, int width)
|
|
|
|
{
|
|
|
|
//In each of these cases, we have to copy the value into a temporary
|
|
|
|
//variable. This is because we may otherwise try to access an
|
|
|
|
//unaligned portion of memory.
|
|
|
|
uint32_t result32;
|
|
|
|
uint64_t result64;
|
|
|
|
switch(width)
|
|
|
|
{
|
|
|
|
case SingleWidth:
|
|
|
|
result32 = gtoh((uint32_t)val);
|
|
|
|
memcpy(regSpace + 4 * floatReg, &result32, sizeof(result32));
|
|
|
|
break;
|
|
|
|
case DoubleWidth:
|
|
|
|
result64 = gtoh((uint64_t)val);
|
|
|
|
memcpy(regSpace + 4 * floatReg, &result64, sizeof(result64));
|
|
|
|
break;
|
|
|
|
case QuadWidth:
|
|
|
|
panic("Quad width FP not implemented.");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
panic("Attempted to read a %d bit floating point register!", width);
|
|
|
|
}
|
|
|
|
return NoFault;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FloatRegFile::serialize(std::ostream &os)
|
|
|
|
{
|
|
|
|
SERIALIZE_ARRAY((unsigned char *)regSpace,
|
|
|
|
SingleWidth / 8 * NumFloatRegs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FloatRegFile::unserialize(Checkpoint *cp, const std::string §ion)
|
|
|
|
{
|
|
|
|
UNSERIALIZE_ARRAY((unsigned char *)regSpace,
|
|
|
|
SingleWidth / 8 * NumFloatRegs);
|
|
|
|
}
|
|
|
|
|