aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/kernel/main.cpp
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2024-10-14 08:15:16 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2024-10-14 08:15:16 +0000
commit8beb8b758c33cf1ac5357b31296927e7df8cf971 (patch)
tree318ec0b5086ef1309ebcea876cf1cd0020090744 /arch/x86_64/src/kernel/main.cpp
parentb3c8a1819226b7dbaad82623c8294b99c91297ef (diff)
downloadteachos-8beb8b758c33cf1ac5357b31296927e7df8cf971.tar.xz
teachos-8beb8b758c33cf1ac5357b31296927e7df8cf971.zip
Fix typos, implementation in header and missing doxygen
Diffstat (limited to 'arch/x86_64/src/kernel/main.cpp')
-rw-r--r--arch/x86_64/src/kernel/main.cpp41
1 files changed, 23 insertions, 18 deletions
diff --git a/arch/x86_64/src/kernel/main.cpp b/arch/x86_64/src/kernel/main.cpp
index 3fa44d3..1289eb6 100644
--- a/arch/x86_64/src/kernel/main.cpp
+++ b/arch/x86_64/src/kernel/main.cpp
@@ -16,24 +16,28 @@ namespace teachos::arch::kernel
// to prevent the while loop being optimized away
// See
// https://stackoverflow.com/questions/9495856/how-to-prevent-g-from-optimizing-out-a-loop-controlled-by-a-variable-that-can
- // for mroe information.
+ // for more information.
asm volatile("" : "+g"(condition));
}
}
- auto process_memory_map(arch::memory::memory_map * mminfo, arch::memory::memory_area ** memory_areas,
- uint8_t * area_count) -> void
+ auto process_memory_map(arch::memory::memory_map * mminfo, arch::memory::memory_area *& memory_areas,
+ uint8_t & area_count) -> void
{
auto expected_entry_size = mminfo->entry_size;
constexpr auto actual_entry_size = sizeof(arch::memory::memory_area);
assert(expected_entry_size == actual_entry_size);
- *memory_areas = &mminfo->entries;
- *area_count = sizeof(mminfo->entries) / mminfo->entry_size;
+ auto total_size = mminfo->tag.size;
+ auto total_entries_size = total_size - sizeof(arch::memory::memory_map) + actual_entry_size;
+ auto number_of_entries = total_entries_size / actual_entry_size;
+
+ memory_areas = &mminfo->entries;
+ area_count = number_of_entries;
}
- auto process_elf_sections(arch::memory::elf_symbols_section * symbol, uint64_t * kernel_start,
- uint64_t * kernel_end) -> void
+ auto process_elf_sections(arch::memory::elf_symbols_section * symbol, uint64_t & kernel_start,
+ uint64_t & kernel_end) -> void
{
// Validate ELF sections
auto expected_entry_size = symbol->entry_size;
@@ -58,14 +62,14 @@ namespace teachos::arch::kernel
switch (section->type)
{
case arch::memory::elf_section_type::PROGRAMM:
- if (section->virtual_address < *kernel_start)
+ if (section->virtual_address < kernel_start)
{
- *kernel_start = section->virtual_address;
+ kernel_start = section->virtual_address;
}
- if (section->virtual_address + section->section_size > *kernel_end)
+ if (section->virtual_address + section->section_size > kernel_end)
{
- *kernel_end = section->virtual_address + section->section_size;
+ kernel_end = section->virtual_address + section->section_size;
}
break;
case arch::memory::elf_section_type::DYNAMIC_SYMBOL_TABLE:
@@ -73,7 +77,6 @@ namespace teachos::arch::kernel
symbol_table_section_count++;
break;
case arch::memory::elf_section_type::DYNAMIC:
- symbol_table_section_count++;
dynamic_section_count++;
break;
default:
@@ -94,8 +97,8 @@ namespace teachos::arch::kernel
text::cursor(false);
text::write("TeachOS is starting up...", text::common_attributes::green_on_black);
- arch::memory::multi_boot_info * multiboot_information_pointer =
- (arch::memory::multi_boot_info *)arch::boot::multiboot_information_pointer;
+ auto * multiboot_information_pointer =
+ reinterpret_cast<arch::memory::multi_boot_info *>(arch::boot::multiboot_information_pointer);
auto multiboot_tag = &(multiboot_information_pointer->tags);
uint64_t kernel_start = UINT64_MAX;
@@ -113,15 +116,17 @@ namespace teachos::arch::kernel
* The increment part aligns the size to an 8-byte address.
*/
for (auto tag = multiboot_tag; tag->type != arch::memory::multi_boot_tag_type::END;
- tag = (arch::memory::multi_boot_tag *)(((uint8_t *)tag) + ((tag->size + 7) & ~7)))
+ tag = reinterpret_cast<arch::memory::multi_boot_tag *>((reinterpret_cast<uint8_t *>(tag)) +
+ ((tag->size + 7) & ~7)))
{
switch (tag->type)
{
case arch::memory::multi_boot_tag_type::ELF_SECTIONS:
- process_elf_sections((arch::memory::elf_symbols_section *)tag, &kernel_start, &kernel_end);
+ process_elf_sections(reinterpret_cast<teachos::arch::memory::elf_symbols_section *>(tag), kernel_start,
+ kernel_end);
break;
case arch::memory::multi_boot_tag_type::MEMORY_MAP:
- process_memory_map((arch::memory::memory_map *)tag, &memory_areas, &area_count);
+ process_memory_map(reinterpret_cast<teachos::arch::memory::memory_map *>(tag), memory_areas, area_count);
break;
default:
// All other cases are not important and can be ignored
@@ -140,7 +145,7 @@ namespace teachos::arch::kernel
// Address of Frame: 0x203F00
auto allocator = arch::memory::area_frame_allocator(kernel_start, kernel_end, multiboot_start, multiboot_end,
memory_areas, area_count);
- std::optional<arch::memory::frame> allocated = allocator.allocate_frame();
+ auto allocated = allocator.allocate_frame();
// WATCH OUT: using optional::value() crashes the build... I think its because of missing exception handling
if (allocated.has_value())