MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / new_reg_array

Function new_reg_array

lib/asmjit/asmjit/ujit/unicompiler.h:858–864  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers 4

new_vec_arrayFunction · 0.85
new_vec128_arrayFunction · 0.85
new_vec256_arrayFunction · 0.85
new_vec512_arrayFunction · 0.85

Calls 1

OutClass · 0.85

Tested by

no test coverage detected