static_inst.cc (2680:246e7104f744) static_inst.cc (3271:4a871cbe6d84)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
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;

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

70 if (isIndirectCtrl()) {
71 tgt = branchTarget(tc);
72 return true;
73 }
74
75 return false;
76}
77
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
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;

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

70 if (isIndirectCtrl()) {
71 tgt = branchTarget(tc);
72 return true;
73 }
74
75 return false;
76}
77
78StaticInstPtr
79StaticInst::fetchMicroOp(MicroPC micropc)
80{
81 panic("StaticInst::fetchMicroOp() called on instruction "
82 "that is not microcoded.");
83}
84