HomeSort by relevance Sort by last modified time
    Searched refs:TCGCond (Results 1 - 5 of 5) sorted by null

  /external/qemu/tcg/
tcg.h 377 } TCGCond;
380 static inline TCGCond tcg_invert_cond(TCGCond c)
382 return (TCGCond)(c ^ 1);
386 static inline TCGCond tcg_swap_cond(TCGCond c)
388 return c & 6 ? (TCGCond)(c ^ 9) : c;
392 static inline TCGCond tcg_unsigned_cond(TCGCond c)
394 return c & 2 ? (TCGCond)(c ^ 6) : c
    [all...]
optimize.c 340 static bool do_constant_folding_cond_32(uint32_t x, uint32_t y, TCGCond c)
368 static bool do_constant_folding_cond_64(uint64_t x, uint64_t y, TCGCond c)
396 static bool do_constant_folding_cond_eq(TCGCond c)
419 TCGArg y, TCGCond c)
448 static TCGArg do_constant_folding_cond2(TCGArg *p1, TCGArg *p2, TCGCond c)
    [all...]
tcg-op.h 650 static inline void tcg_gen_brcond_i32(TCGCond cond, TCGv_i32 arg1,
660 static inline void tcg_gen_brcondi_i32(TCGCond cond, TCGv_i32 arg1,
672 static inline void tcg_gen_setcond_i32(TCGCond cond, TCGv_i32 ret,
684 static inline void tcg_gen_setcondi_i32(TCGCond cond, TCGv_i32 ret,
    [all...]
  /external/qemu/tcg/i386/
tcg-target.c 822 static void tcg_out_brcond32(TCGContext *s, TCGCond cond,
831 static void tcg_out_brcond64(TCGContext *s, TCGCond cond,
922 static void tcg_out_setcond32(TCGContext *s, TCGCond cond, TCGArg dest,
931 static void tcg_out_setcond64(TCGContext *s, TCGCond cond, TCGArg dest,
982 static void tcg_out_movcond32(TCGContext *s, TCGCond cond, TCGArg dest,
998 static void tcg_out_movcond64(TCGContext *s, TCGCond cond, TCGArg dest,
    [all...]
  /external/qemu/target-mips/
translate.c     [all...]

Completed in 511 milliseconds