Deleted Added
sdiff udiff text old ( 12106:7784fac1b159 ) new ( 12109:f29e9c5418aa )
full compact
1/*
2 * Copyright (c) 2014 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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

74 public:
75 typedef TheISA::IntReg IntReg;
76 typedef TheISA::PCState PCState;
77 typedef TheISA::FloatReg FloatReg;
78 typedef TheISA::FloatRegBits FloatRegBits;
79 typedef TheISA::MiscReg MiscReg;
80
81 typedef TheISA::CCReg CCReg;
82
83 public:
84 /**
85 * @{
86 * @name Integer Register Interfaces
87 *
88 */
89

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

116
117 /** Sets the bits of a floating point register of single width
118 * to a binary value. */
119 virtual void setFloatRegOperandBits(const StaticInst *si,
120 int idx, FloatRegBits val) = 0;
121
122 /** @} */
123
124 /**
125 * @{
126 * @name Condition Code Registers
127 */
128 virtual CCReg readCCRegOperand(const StaticInst *si, int idx) = 0;
129 virtual void setCCRegOperand(const StaticInst *si, int idx, CCReg val) = 0;
130 /** @} */
131

--- 168 unchanged lines hidden ---