v8 152.0.0

Rust bindings to V8
Documentation
//===-- Implementation of crt for aarch64 ---------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "hdr/stdint_proxy.h"
#include "src/__support/macros/config.h"
#include "src/stdlib/atexit.h"
#include "src/stdlib/exit.h"
#include "src/string/memcpy.h"
#include "src/string/memset.h"
#include "startup/baremetal/fini.h"
#include "startup/baremetal/init.h"

#include <arm_acle.h>

extern "C" {
int main(int argc, char **argv);
void _start();

// Semihosting library initialisation if applicable. Required for printf, etc.
[[gnu::weak]] void _platform_init() {}

// These symbols are provided by the linker. The exact names are not defined by
// a standard.
extern uintptr_t __stack;
extern uintptr_t __data_source[];
extern uintptr_t __data_start[];
extern uintptr_t __data_size[];
extern uintptr_t __bss_start[];
extern uintptr_t __bss_size[];
[[gnu::weak]] extern uintptr_t _end;
} // extern "C"

namespace {
constexpr uint64_t PAGE_TABLE_ENTRY_COUNT = 512;
constexpr uint64_t PAGE_TABLE_ALIGNMENT = 4096;
constexpr uint64_t PAGE_TABLE_BLOCK_SHIFT = 30; // 1 GiB block entries.

// Put the page table in a no-init section so it doesn't later get
// zero-initialized.
[[gnu::section(".noinit.page_table"), gnu::aligned(PAGE_TABLE_ALIGNMENT),
  gnu::used]] volatile uint64_t page_table[PAGE_TABLE_ENTRY_COUNT];

// Return the base address of the combined stack/heap mapping used by
// setup_mmu().
uintptr_t get_stackheap_start() {
  // _end is the heap start used by the baremetal freelist heap. If no linker
  // script defines it, its weak address resolves to zero.
  if (reinterpret_cast<uintptr_t>(&_end))
    return reinterpret_cast<uintptr_t>(&_end);

  // With no linker-provided heap start, choose the 1 GiB page after this
  // startup code as the fallback stack/heap page. The page table maps memory in
  // 1 GiB blocks, so the shifts below convert between addresses and 1 GiB page
  // numbers:
  //
  //   address >> PAGE_TABLE_BLOCK_SHIFT  gives the page number
  //   page << PAGE_TABLE_BLOCK_SHIFT     gives the page base address
  //
  // Choosing page + 1 reserves the next 1 GiB page after the executable image
  // for writable stack/heap memory.
  uintptr_t code_page = reinterpret_cast<uintptr_t>(&get_stackheap_start) >>
                        PAGE_TABLE_BLOCK_SHIFT;

  // code_page is the page containing this function. Use the next page for
  // stack/heap, then convert that page number back to an address to return.
  uintptr_t stackheap_address = (code_page + 1) << PAGE_TABLE_BLOCK_SHIFT;
  return stackheap_address;
}

void setup_mmu() {
  constexpr uint64_t PAGE_TABLE_ENTRY = 0x405; // Index = 1, AF=1.
  // Map the stack/heap as normal memory, but mark it non-executable for both
  // privileged and unprivileged execution. This prevents accidentally executing
  // code from writable stack/heap memory.
  constexpr uint64_t PAGE_TABLE_ENTRY_XN =
      PAGE_TABLE_ENTRY | (1ULL << 54) | (1ULL << 53);

  uintptr_t start_page =
      reinterpret_cast<uintptr_t>(&setup_mmu) >> PAGE_TABLE_BLOCK_SHIFT;

  // get_stackheap_start() returns the base address of the combined stack/heap
  // region, for example 0x80000000. The page table needs an index, for example
  // 2, so convert the address to a page number.
  uintptr_t stackheap_page = get_stackheap_start() >> PAGE_TABLE_BLOCK_SHIFT;

  __asm__ volatile("tlbi vmalle1");
  __arm_wsr64("TTBR0_EL1", reinterpret_cast<uint64_t>(page_table));
  __arm_wsr64("MAIR_EL1", 0x000000000000FF44); // Attr0 NC, Attr1 WB/WA/RA.
  __arm_wsr64("TCR_EL1", 0x0000000080813519);
  __isb(0xF);

  for (uint64_t page = 0; page < PAGE_TABLE_ENTRY_COUNT; ++page)
    page_table[page] = 0;

  page_table[start_page] =
      PAGE_TABLE_ENTRY | (start_page << PAGE_TABLE_BLOCK_SHIFT);
  if (start_page != stackheap_page)
    page_table[stackheap_page] =
        PAGE_TABLE_ENTRY_XN | (stackheap_page << PAGE_TABLE_BLOCK_SHIFT);

  __dsb(0xF);

  uint64_t sctlr = __arm_rsr64("SCTLR_EL1");
#ifdef __ARM_FEATURE_UNALIGNED
  sctlr &= ~(1ULL << 1); // SCTLR_EL1.A: disable alignment checks.
#else
  sctlr |= 1ULL << 1; // SCTLR_EL1.A: enable alignment checks.
#endif
  sctlr &= ~(1ULL << 19); // SCTLR.WXN: keep the image executable.
  sctlr |= 1ULL << 0;     // SCTLR.M: enable MMU.
  __arm_wsr64("SCTLR_EL1", sctlr);
  __isb(0xF);
}

// The Arm ARM for the A-profile architecture (D14.1.5) defines the exceptions.
// However, for simplicity, we don't bother logging, and just exit.
void GenericException_Handler() { LIBC_NAMESPACE::exit(1); }

// The AArch64 exception vector table has 16 entries, each of which is 128
// bytes long, and contains code. The whole table must be 2048-byte aligned.
// For our purposes, each entry just contains one branch instruction to the
// exception reporting function, since we never want to resume after an
// exception.
[[gnu::section(".vectors"), gnu::aligned(2048), gnu::used, gnu::naked]]
void vector_table() {
#define VECTOR_TABLE_ENTRY                                                     \
  asm(".balign 128");                                                          \
  asm("B %0" : : "X"(GenericException_Handler));

  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
  VECTOR_TABLE_ENTRY;
}
} // namespace

namespace LIBC_NAMESPACE_DECL {

[[noreturn]] void do_start() {
  // TODO: This startup code is not extensive, but rather the MVP for QEMU
  // testing.
  // TODO: Setup memory (MMU, page table, caches)
  // TODO: Consider v8-R variants

  // Set up exception handling
  __arm_wsr64("VBAR_EL1", reinterpret_cast<uint64_t>(&vector_table));

  setup_mmu();

#ifdef __ARM_FP
  // Do not trap FP/SME/SVE instructions
  static constexpr uint64_t CPACR_SHIFT_FPEN = 20;
  static constexpr uint64_t CPACR_SHIFT_SMEN = 24;
  uint64_t cpacr = __arm_rsr64("CPACR_EL1");
  cpacr |= (0x3 << CPACR_SHIFT_FPEN);
  cpacr |= (0x3 << CPACR_SHIFT_SMEN);
  __arm_wsr64("CPACR_EL1", cpacr);
#endif

  // Perform the equivalent of scatterloading
  LIBC_NAMESPACE::memcpy(__data_start, __data_source,
                         reinterpret_cast<uintptr_t>(__data_size));
  LIBC_NAMESPACE::memset(__bss_start, '\0',
                         reinterpret_cast<uintptr_t>(__bss_size));
  __libc_init_array();

  _platform_init();
  LIBC_NAMESPACE::atexit(&__libc_fini_array);
  LIBC_NAMESPACE::exit(main(0, 0));
}
} // namespace LIBC_NAMESPACE_DECL

extern "C" {
[[gnu::section(".text.init.enter"), gnu::naked]]
void _start() {
  asm volatile("mov sp, %0" : : "r"(&__stack));
  asm volatile("bl %0" : : "X"(LIBC_NAMESPACE::do_start));
}
} // extern "C"