mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:52:44 +00:00 
			
		
		
		
	 73fdbba59c
			
		
	
	
		73fdbba59c
		
	
	
	
	
		
			
			This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
		
			
				
	
	
		
			69 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/String.h>
 | |
| #include <AK/Vector.h>
 | |
| #include <Kernel/VM/VirtualAddress.h>
 | |
| 
 | |
| class Range {
 | |
|     friend class RangeAllocator;
 | |
| 
 | |
| public:
 | |
|     Range() {}
 | |
|     Range(VirtualAddress base, size_t size)
 | |
|         : m_base(base)
 | |
|         , m_size(size)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     VirtualAddress base() const { return m_base; }
 | |
|     size_t size() const { return m_size; }
 | |
|     bool is_valid() const { return !m_base.is_null(); }
 | |
| 
 | |
|     bool contains(VirtualAddress vaddr) const { return vaddr >= base() && vaddr < end(); }
 | |
| 
 | |
|     VirtualAddress end() const { return m_base.offset(m_size); }
 | |
| 
 | |
|     bool operator==(const Range& other) const
 | |
|     {
 | |
|         return m_base == other.m_base && m_size == other.m_size;
 | |
|     }
 | |
| 
 | |
|     bool contains(VirtualAddress base, size_t size) const
 | |
|     {
 | |
|         return base >= m_base && base.offset(size) <= end();
 | |
|     }
 | |
| 
 | |
|     bool contains(const Range& other) const
 | |
|     {
 | |
|         return contains(other.base(), other.size());
 | |
|     }
 | |
| 
 | |
|     Vector<Range, 2> carve(const Range&);
 | |
| 
 | |
| private:
 | |
|     VirtualAddress m_base;
 | |
|     size_t m_size { 0 };
 | |
| };
 | |
| 
 | |
| class RangeAllocator {
 | |
| public:
 | |
|     RangeAllocator(VirtualAddress, size_t);
 | |
|     RangeAllocator(const RangeAllocator&);
 | |
|     ~RangeAllocator();
 | |
| 
 | |
|     Range allocate_anywhere(size_t);
 | |
|     Range allocate_specific(VirtualAddress, size_t);
 | |
|     void deallocate(Range);
 | |
| 
 | |
|     void dump() const;
 | |
| 
 | |
| private:
 | |
|     void carve_at_index(int, const Range&);
 | |
| 
 | |
|     Vector<Range> m_available_ranges;
 | |
| };
 | |
| 
 | |
| inline const LogStream& operator<<(const LogStream& stream, const Range& value)
 | |
| {
 | |
|     return stream << String::format("Range(%x-%x)", value.base().get(), value.end().get() - 1);
 | |
| }
 |