Skip to content
  1. May 06, 2013
  2. May 05, 2013
  3. May 04, 2013
    • Tim Northover's avatar
      AArch64: enable MCJIT and tests now that everything passes. · 7b55b97d
      Tim Northover authored
      This removes dire warnings about AArch64 being unsupported and enables
      the tests when appropriate on this platform.
      
      llvm-svn: 181135
      7b55b97d
    • Tim Northover's avatar
      AArch64: implement 64-bit absolute relocation in MCJIT · b23d8dbb
      Tim Northover authored
      This is about the simplest relocation, but surprisingly rare in actual
      code.
      
      It occurs in (for example) the MCJIT test test-ptr-reloc.ll.
      
      llvm-svn: 181134
      b23d8dbb
    • Tim Northover's avatar
      AArch64: add stubs to support long function calls on MCJIT · 37cde975
      Tim Northover authored
      As with global accesses, external functions could exist anywhere in
      memory. Therefore the stub must create a complete 64-bit address. This
      patch implements the fragment as (roughly):
          movz x16, #:abs_g3:somefunc
          movk x16, #:abs_g2_nc:somefunc
          movk x16, #:abs_g1_nc:somefunc
          movk x16, #:abs_g0_nc:somefunc
          br x16
      
      In principle we could save 4 bytes by using a literal-load instead,
      but it is unclear that would be more efficient and can only be tested
      when real hardware is readily available.
      
      This allows (for example) the MCJIT test 2003-05-07-ArgumentTest to
      pass on AArch64.
      
      llvm-svn: 181133
      37cde975
    • Tim Northover's avatar
      AArch64: implement relocations for global access · 4d01c1e0
      Tim Northover authored
      The large memory model (default and main viable for JIT) emits
      addresses in need of relocation as
          movz x0, #:abs_g3:somewhere
          movk x0, #:abs_g2_nc:somewhere
          movk x0, #:abs_g1_nc:somewhere
          movk x0, #:abs_g0_nc:somewhere
      
      To support this we must implement those four relocations in the
      dynamic loader.
      
      This allows (for example) the test-global.ll MCJIT test to pass on
      AArch64.
      
      llvm-svn: 181132
      4d01c1e0
    • Tim Northover's avatar
      AArch64: implement first relocation required for MCJIT · fa1b2f85
      Tim Northover authored
      R_AARCH64_PCREL32 is present in even trivial .eh_frame sections and so
      is required to compile any function without the "nounwind" attribute.
      
      This change implements very basic infrastructure in the RuntimeDyldELF
      file and allows (for example) the test-shift.ll MCJIT test to pass
      on AArch64.
      
      llvm-svn: 181131
      fa1b2f85
    • Tim Northover's avatar
      Build system changes to enable MCJIT on AArch64 · a958a570
      Tim Northover authored
      These changes just allow AArch64 to take part in the MCJIT world when
      built correctly.
      
      llvm-svn: 181130
      a958a570
    • Tim Northover's avatar
      AArch64: use __clear_cache under GCCish environments · 6c26b327
      Tim Northover authored
      AArch64 is going to need some kind of cache-invalidation in order to
      successfully JIT since it has a weak memory-model. This is provided by
      a __clear_cache builtin in libgcc, which acts very much like the
      32-bit ARM equivalent (on platforms where it exists).
      
      llvm-svn: 181129
      6c26b327
Loading