tlb_map.hh (3832:49c95a73e29c) tlb_map.hh (3929:3640569369a5)
1/*
2 * Copyright (c) 2006 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;

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

130 {
131 return tree.size();
132 }
133
134 bool empty()
135 {
136 return tree.empty();
137 }
1/*
2 * Copyright (c) 2006 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;

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

130 {
131 return tree.size();
132 }
133
134 bool empty()
135 {
136 return tree.empty();
137 }
138
139 void print()
140 {
141 iterator i;
142 i = tree.begin();
143 while (i != tree.end()) {
144 std::cout << std::hex << i->first.va << " " << i->first.size << " " <<
145 i->first.contextId << " " << i->first.partitionId << " " <<
146 i->first.real << " " << i->second << std::endl;
147 i++;
148 }
149 }
150
138};
139
140};
141
142#endif // __ARCH_SPARC_TLB_MAP_HH__
151};
152
153};
154
155#endif // __ARCH_SPARC_TLB_MAP_HH__