integer.hh (6691:cd68b6ecd68d) integer.hh (7811:a8fc35183c10)
1/*
2 * Copyright (c) 2009 The University of Edinburgh
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;

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

166 {
167 uint32_t n = shift & 31;
168 return (rs << n) | (rs >> (32 - n));
169 }
170
171 std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
172};
173
1/*
2 * Copyright (c) 2009 The University of Edinburgh
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;

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

166 {
167 uint32_t n = shift & 31;
168 return (rs << n) | (rs >> (32 - n));
169 }
170
171 std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
172};
173
174} // PowerISA namespace
174} // namespace PowerISA
175
176#endif //__ARCH_POWER_INSTS_INTEGER_HH__
175
176#endif //__ARCH_POWER_INSTS_INTEGER_HH__