types.hh (7311:001fb4b2a393) types.hh (7376:3b781776b2d9)
1/*
2 * Copyright (c) 2010 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

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

46#include "base/bitunion.hh"
47#include "base/types.hh"
48
49namespace ArmISA
50{
51 typedef uint32_t MachInst;
52
53 BitUnion64(ExtMachInst)
1/*
2 * Copyright (c) 2010 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

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

46#include "base/bitunion.hh"
47#include "base/types.hh"
48
49namespace ArmISA
50{
51 typedef uint32_t MachInst;
52
53 BitUnion64(ExtMachInst)
54 // FPSCR fields
55 Bitfield<41, 40> fpscrStride;
56 Bitfield<39, 37> fpscrLen;
57
54 // Bitfields to select mode.
55 Bitfield<36> thumb;
56 Bitfield<35> bigThumb;
57
58 // Made up bitfields that make life easier.
59 Bitfield<33> sevenAndFour;
60 Bitfield<32> isMisc;
61

--- 200 unchanged lines hidden ---
58 // Bitfields to select mode.
59 Bitfield<36> thumb;
60 Bitfield<35> bigThumb;
61
62 // Made up bitfields that make life easier.
63 Bitfield<33> sevenAndFour;
64 Bitfield<32> isMisc;
65

--- 200 unchanged lines hidden ---