wasm-micro-runtime/core/iwasm/fast-jit/cg
liang.he b3a27e7257
Fix issues of fnn.cmp (#1204)
- use native functions to do f.eq and f.ne
- only use ZF=0 and CF=0 to do f.lt and f.gt
- only use CF=0 to do f.le and f.ge

could use comiss and setCC to replace comiss and jmpCC

be able to pass f32_cmp and f64_cmp

```
cmp_eq:
  xor     eax, eax
  ucomisd xmm0, xmm1
  mov     edx, 0
  setnp   al
  cmovne  eax, edx
  ret

cmp_ne:
  xor     eax, eax
  ucomisd xmm0, xmm1
  mov edx, 1
  setp al
  cmovne eax, edx
  ret
```
2022-06-03 10:02:51 +08:00
..
x86-64 Fix issues of fnn.cmp (#1204) 2022-06-03 10:02:51 +08:00
LICENSE_ASMJIT Add asmjit and zydis to attributions (#1152) 2022-05-07 12:37:50 +08:00
LICENSE_ZYDIS Add asmjit and zydis to attributions (#1152) 2022-05-07 12:37:50 +08:00