Deleted Added
sdiff udiff text old ( 2972:f84c6c5309ce ) new ( 4040:eb894f3fc168 )
full compact
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
36namespace SparcISA
37{
38 typedef uint32_t MachInst;
39 typedef uint64_t ExtMachInst;
40
41 typedef uint64_t IntReg;
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 ---