Deleted Added
sdiff udiff text old ( 7724:ba11187e2582 ) new ( 8140:7449084b1612 )
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

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

129 MicroNeonMixLaneOp(const char *mnem, ExtMachInst machInst,
130 OpClass __opClass, RegIndex _dest, RegIndex _op1,
131 uint32_t _step, unsigned _lane)
132 : MicroNeonMixOp(mnem, machInst, __opClass, _dest, _op1, _step),
133 lane(_lane)
134 {
135 }
136};
137/**
138 * Microops of the form IntRegA = IntRegB
139 */
140class MicroIntMov : public MicroOp
141{
142 protected:
143 RegIndex ura, urb;
144
145 MicroIntMov(const char *mnem, ExtMachInst machInst, OpClass __opClass,

--- 150 unchanged lines hidden ---