Deleted Added
sdiff udiff text old ( 6305:e518d78b2ed1 ) new ( 6308:46fcf4dc4c30 )
full compact
1/* Copyright (c) 2007-2008 The Florida State University
2 * All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

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

42 {
43 if ( val & (1<<i) )
44 ones++;
45 }
46 return ones;
47}
48
49/**
50 * Arm Macro Memory operations like LDM/STM
51 */
52class ArmMacroMemoryOp : public PredMacroOp
53{
54 protected:
55 /// Memory request flags. See mem_req_base.hh.
56 unsigned memAccessFlags;
57

--- 95 unchanged lines hidden ---