Set.hh (8351:f897d0483b06) Set.hh (8608:02d7ac5fb855)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;

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

31
32#ifndef __MEM_RUBY_COMMON_SET_HH__
33#define __MEM_RUBY_COMMON_SET_HH__
34
35#include <iostream>
36#include <limits>
37
38#include "mem/ruby/common/Global.hh"
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;

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

31
32#ifndef __MEM_RUBY_COMMON_SET_HH__
33#define __MEM_RUBY_COMMON_SET_HH__
34
35#include <iostream>
36#include <limits>
37
38#include "mem/ruby/common/Global.hh"
39#include "mem/ruby/system/NodeID.hh"
40#include "mem/ruby/system/System.hh"
41
42class Set
43{
44 private:
45 int m_nSize; // the number of bits in this set
46 int m_nArrayLen; // the number of 32-bit words that are
47 // held in the array

--- 109 unchanged lines hidden ---
39#include "mem/ruby/system/System.hh"
40
41class Set
42{
43 private:
44 int m_nSize; // the number of bits in this set
45 int m_nArrayLen; // the number of 32-bit words that are
46 // held in the array

--- 109 unchanged lines hidden ---