Deleted Added
sdiff udiff text old ( 10596:1eec33d2fc52 ) new ( 10651:333350e4e334 )
full compact
1/*
2 * Copyright 2014 Google, Inc.
3 * Copyright (c) 2012-2013 ARM Limited
4 * All rights reserved.
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

575 preExecute();
576
577 if (curStaticInst) {
578 fault = curStaticInst->execute(this, traceData);
579
580 // keep an instruction count
581 if (fault == NoFault) {
582 countInst();
583 ppCommit->notify(std::make_pair(thread, curStaticInst));
584 }
585 else if (traceData && !DTRACE(ExecFaulting)) {
586 delete traceData;
587 traceData = NULL;
588 }
589
590 postExecute();
591 }

--- 64 unchanged lines hidden ---