pred.isa (6245:f8692407cc23) pred.isa (6251:1d794d81a4e6)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007-2008 The Florida State University
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright

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

50 {
51 protected:
52
53 ArmISA::ConditionCode condCode;
54
55 /// Constructor
56 PredOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
57 ArmStaticInst(mnem, _machInst, __opClass),
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007-2008 The Florida State University
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright

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

50 {
51 protected:
52
53 ArmISA::ConditionCode condCode;
54
55 /// Constructor
56 PredOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
57 ArmStaticInst(mnem, _machInst, __opClass),
58 condCode((ArmISA::ConditionCode)COND_CODE)
58 condCode((ArmISA::ConditionCode)(unsigned)COND_CODE)
59 {
60 }
61
62 std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
63 };
64
65 /**
66 * Base class for predicated immediate operations.

--- 278 unchanged lines hidden ---
59 {
60 }
61
62 std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
63 };
64
65 /**
66 * Base class for predicated immediate operations.

--- 278 unchanged lines hidden ---