decode.cc (10537:47fe87b0cf97) decode.cc (11321:02e930db812d)
1/*
2 * Copyright (c) 2013-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

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

221#if TRACING_ON
222 dynInstAddTracing(output_inst, parent_static_inst, cpu);
223#endif
224
225 /* Step to next sequence number */
226 execSeqNum++;
227
228 /* Correctly size the output before writing */
1/*
2 * Copyright (c) 2013-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

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

221#if TRACING_ON
222 dynInstAddTracing(output_inst, parent_static_inst, cpu);
223#endif
224
225 /* Step to next sequence number */
226 execSeqNum++;
227
228 /* Correctly size the output before writing */
229 if(output_index == 0) insts_out.resize(outputWidth);
229 if (output_index == 0) insts_out.resize(outputWidth);
230 /* Push into output */
231 insts_out.insts[output_index] = output_inst;
232 output_index++;
233 }
234
235 /* Have we finished with the input? */
236 if (inputIndex == insts_in->width()) {
237 /* If we have just been producing micro-ops, we *must* have

--- 59 unchanged lines hidden ---
230 /* Push into output */
231 insts_out.insts[output_index] = output_inst;
232 output_index++;
233 }
234
235 /* Have we finished with the input? */
236 if (inputIndex == insts_in->width()) {
237 /* If we have just been producing micro-ops, we *must* have

--- 59 unchanged lines hidden ---