types.hh (7376:3b781776b2d9) types.hh (7408:ee6949c5bb5b)
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 Bitfield<63, 56> newItstate;
55 // ITSTATE bits
56 Bitfield<55, 48> itstate;
57 Bitfield<55, 52> itstateCond;
58 Bitfield<51, 48> itstateMask;
59
54 // FPSCR fields
55 Bitfield<41, 40> fpscrStride;
56 Bitfield<39, 37> fpscrLen;
57
58 // Bitfields to select mode.
59 Bitfield<36> thumb;
60 Bitfield<35> bigThumb;
61

--- 204 unchanged lines hidden ---
60 // FPSCR fields
61 Bitfield<41, 40> fpscrStride;
62 Bitfield<39, 37> fpscrLen;
63
64 // Bitfields to select mode.
65 Bitfield<36> thumb;
66 Bitfield<35> bigThumb;
67

--- 204 unchanged lines hidden ---