tcg-internal.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Internal declarations for Tiny Code Generator for QEMU
  3. *
  4. * Copyright (c) 2008 Fabrice Bellard
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. #ifndef TCG_INTERNAL_H
  25. #define TCG_INTERNAL_H
  26. #ifdef CONFIG_TCG_INTERPRETER
  27. #include <ffi.h>
  28. #endif
  29. #define TCG_HIGHWATER 1024
  30. /*
  31. * Describe the calling convention of a given argument type.
  32. */
  33. typedef enum {
  34. TCG_CALL_RET_NORMAL, /* by registers */
  35. TCG_CALL_RET_BY_REF, /* for i128, by reference */
  36. TCG_CALL_RET_BY_VEC, /* for i128, by vector register */
  37. } TCGCallReturnKind;
  38. typedef enum {
  39. TCG_CALL_ARG_NORMAL, /* by registers (continuing onto stack) */
  40. TCG_CALL_ARG_EVEN, /* like normal, but skipping odd slots */
  41. TCG_CALL_ARG_EXTEND, /* for i32, as a sign/zero-extended i64 */
  42. TCG_CALL_ARG_EXTEND_U, /* ... as a zero-extended i64 */
  43. TCG_CALL_ARG_EXTEND_S, /* ... as a sign-extended i64 */
  44. TCG_CALL_ARG_BY_REF, /* for i128, by reference, first */
  45. TCG_CALL_ARG_BY_REF_N, /* ... by reference, subsequent */
  46. } TCGCallArgumentKind;
  47. typedef struct TCGCallArgumentLoc {
  48. TCGCallArgumentKind kind : 8;
  49. unsigned arg_slot : 8;
  50. unsigned ref_slot : 8;
  51. unsigned arg_idx : 4;
  52. unsigned tmp_subindex : 2;
  53. } TCGCallArgumentLoc;
  54. /* Avoid "unsigned < 0 is always false" Werror, when iarg_regs is empty. */
  55. #define REG_P(L) \
  56. ((int)(L)->arg_slot < (int)ARRAY_SIZE(tcg_target_call_iarg_regs))
  57. typedef struct TCGHelperInfo {
  58. void *func;
  59. const char *name;
  60. #ifdef CONFIG_TCG_INTERPRETER
  61. ffi_cif *cif;
  62. #endif
  63. unsigned typemask : 32;
  64. unsigned flags : 8;
  65. unsigned nr_in : 8;
  66. unsigned nr_out : 8;
  67. TCGCallReturnKind out_kind : 8;
  68. /* Maximum physical arguments are constrained by TCG_TYPE_I128. */
  69. TCGCallArgumentLoc in[MAX_CALL_IARGS * (128 / TCG_TARGET_REG_BITS)];
  70. } TCGHelperInfo;
  71. extern TCGContext tcg_init_ctx;
  72. extern TCGContext **tcg_ctxs;
  73. extern unsigned int tcg_cur_ctxs;
  74. extern unsigned int tcg_max_ctxs;
  75. void tcg_region_init(size_t tb_size, int splitwx, unsigned max_cpus);
  76. bool tcg_region_alloc(TCGContext *s);
  77. void tcg_region_initial_alloc(TCGContext *s);
  78. void tcg_region_prologue_set(TCGContext *s);
  79. static inline void *tcg_call_func(TCGOp *op)
  80. {
  81. return (void *)(uintptr_t)op->args[TCGOP_CALLO(op) + TCGOP_CALLI(op)];
  82. }
  83. static inline const TCGHelperInfo *tcg_call_info(TCGOp *op)
  84. {
  85. return (void *)(uintptr_t)op->args[TCGOP_CALLO(op) + TCGOP_CALLI(op) + 1];
  86. }
  87. static inline unsigned tcg_call_flags(TCGOp *op)
  88. {
  89. return tcg_call_info(op)->flags;
  90. }
  91. #if TCG_TARGET_REG_BITS == 32
  92. static inline TCGv_i32 TCGV_LOW(TCGv_i64 t)
  93. {
  94. return temp_tcgv_i32(tcgv_i64_temp(t) + HOST_BIG_ENDIAN);
  95. }
  96. static inline TCGv_i32 TCGV_HIGH(TCGv_i64 t)
  97. {
  98. return temp_tcgv_i32(tcgv_i64_temp(t) + !HOST_BIG_ENDIAN);
  99. }
  100. #else
  101. extern TCGv_i32 TCGV_LOW(TCGv_i64) QEMU_ERROR("32-bit code path is reachable");
  102. extern TCGv_i32 TCGV_HIGH(TCGv_i64) QEMU_ERROR("32-bit code path is reachable");
  103. #endif
  104. static inline TCGv_i64 TCGV128_LOW(TCGv_i128 t)
  105. {
  106. /* For 32-bit, offset by 2, which may then have TCGV_{LOW,HIGH} applied. */
  107. int o = HOST_BIG_ENDIAN ? 64 / TCG_TARGET_REG_BITS : 0;
  108. return temp_tcgv_i64(tcgv_i128_temp(t) + o);
  109. }
  110. static inline TCGv_i64 TCGV128_HIGH(TCGv_i128 t)
  111. {
  112. int o = HOST_BIG_ENDIAN ? 0 : 64 / TCG_TARGET_REG_BITS;
  113. return temp_tcgv_i64(tcgv_i128_temp(t) + o);
  114. }
  115. #endif /* TCG_INTERNAL_H */