types.hh (2972:f84c6c5309ce) types.hh (4040:eb894f3fc168)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

27 *
28 * Authors: Gabe Black
29 */
30
31#ifndef __ARCH_SPARC_TYPES_HH__
32#define __ARCH_SPARC_TYPES_HH__
33
34#include <inttypes.h>
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

27 *
28 * Authors: Gabe Black
29 */
30
31#ifndef __ARCH_SPARC_TYPES_HH__
32#define __ARCH_SPARC_TYPES_HH__
33
34#include <inttypes.h>
35#include "base/bigint.hh"
35
36namespace SparcISA
37{
38 typedef uint32_t MachInst;
39 typedef uint64_t ExtMachInst;
40
41 typedef uint64_t IntReg;
36
37namespace SparcISA
38{
39 typedef uint32_t MachInst;
40 typedef uint64_t ExtMachInst;
41
42 typedef uint64_t IntReg;
43 typedef Twin64_t LargestRead;
42 typedef uint64_t MiscReg;
43 typedef double FloatReg;
44 typedef uint64_t FloatRegBits;
45 typedef union
46 {
47 IntReg intReg;
48 FloatReg fpreg;
49 MiscReg ctrlreg;

--- 14 unchanged lines hidden ---
44 typedef uint64_t MiscReg;
45 typedef double FloatReg;
46 typedef uint64_t FloatRegBits;
47 typedef union
48 {
49 IntReg intReg;
50 FloatReg fpreg;
51 MiscReg ctrlreg;

--- 14 unchanged lines hidden ---