decoder.cc (9023:e9201a7bce59) decoder.cc (9024:5851586f399c)
1/*
2 * Copyright (c) 2012 Google
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

33#include "arch/arm/utility.hh"
34#include "base/trace.hh"
35#include "cpu/thread_context.hh"
36#include "debug/Decoder.hh"
37
38namespace ArmISA
39{
40
1/*
2 * Copyright (c) 2012 Google
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

33#include "arch/arm/utility.hh"
34#include "base/trace.hh"
35#include "cpu/thread_context.hh"
36#include "debug/Decoder.hh"
37
38namespace ArmISA
39{
40
41DecodeCache Decoder::defaultCache;
41GenericISA::BasicDecodeCache Decoder::defaultCache;
42
43void
44Decoder::process()
45{
46 // emi is typically ready, with some caveats below...
47 instDone = true;
48
49 if (!emi.thumb) {

--- 75 unchanged lines hidden ---
42
43void
44Decoder::process()
45{
46 // emi is typically ready, with some caveats below...
47 instDone = true;
48
49 if (!emi.thumb) {

--- 75 unchanged lines hidden ---