| 856 | #endif // ASMJIT_UJIT_X86 |
| 857 | |
| 858 | ASMJIT_NOINLINE void new_reg_array(OpArray& dst, size_t n, TypeId type_id, const char* name) noexcept { |
| 859 | ASMJIT_ASSERT(n <= OpArray::kMaxSize); |
| 860 | dst._size = n; |
| 861 | for (size_t i = 0; i < n; i++) { |
| 862 | cc->_new_reg(Out(dst[i].as<Reg>()), type_id, "%s%u", name, i); |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | ASMJIT_NOINLINE void new_reg_array(OpArray& dst, size_t n, TypeId type_id, const char* prefix, const char* name) noexcept { |
| 867 | ASMJIT_ASSERT(n <= OpArray::kMaxSize); |
no test coverage detected