qtiuto / lua-for-android

A high-performance bridge for lua and java or c in Android with mutil-thread and almost all java features supported
BSD 3-Clause "New" or "Revised" License
111 stars 26 forks source link

There is an update from LuaJIT missing #5

Open mingodad opened 5 years ago

mingodad commented 5 years ago

Hello ! In file dasm_x86.lua there is an update from LuaJIT missing:

  vroundpd_3 =  "rmioy:660F3AV09rMU",
  vroundps_3 =  "rmioy:660F3AV08rMU",

Is now in LuaJIT:

  vroundpd_3 =  "rmioy:660F3Au09rMU",
  vroundps_3 =  "rmioy:660F3Au08rMU",

Cheers !

qtiuto commented 5 years ago

Got.I will fix them. Domingo Alvarez Duarte notifications@github.com 于 2019年1月16日周三 03:01写道:

Hello ! In file dasm_x86.lua there is an update from LuaJIT missing:

vroundpd_3 = "rmioy:660F3AV09rMU", vroundps_3 = "rmioy:660F3AV08rMU",

Is now in LuaJIT:

vroundpd_3 = "rmioy:660F3Au09rMU", vroundps_3 = "rmioy:660F3Au08rMU",

Cheers !

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/qtiuto/lua-for-android/issues/5, or mute the thread https://github.com/notifications/unsubscribe-auth/AJHwUuWjpW67H4qQpeeMsff0flSvwz23ks5vDiV6gaJpZM4aBmd6 .

qtiuto commented 5 years ago

I check the newest version of luajit and find out that it should be

  vroundpd_3 =  "rmioy:660F3AV09rMU",
  vroundps_3 =  "rmioy:660F3AV08rMU",

Where do you get the other version?

qtiuto commented 5 years ago

@mingodad

mingodad commented 5 years ago

From here https://github.com/LuaJIT/LuaJIT/commit/26f1023819efb843e10014232cd88bb1d52ea4f5 It's on LuaJIT v2.1 and looking at it I could see that master (2.0.5) do not have it, I'll ask in luajit mailing list why.