[PATCH] D49665: [MIPS] ORC JIT support

Luka Ercegovcevic via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 29 09:56:35 PDT 2018


erceg95 added a comment.

Hi Lang,

I fixed the issue with endianness without changing uintptr_t and also enabled tests for Mips. The issue was related to return values for mips32. On mips32 if the return value size is 64 bit we are using register pair (32bit) v0 and v1 for it. For big endian, since return type is uint64_t, return value was put into v1, and for little endian was put into v0 and it was needed we to set the proper return value in resolver code.

Luka


Repository:
  rL LLVM

https://reviews.llvm.org/D49665





More information about the llvm-commits mailing list