Deleted Added
sdiff udiff text old ( 7311:001fb4b2a393 ) new ( 7376:3b781776b2d9 )
full compact
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 // 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 ---