Home
last modified time | relevance | path

Searched refs:tm_options (Results 1 – 6 of 6) sorted by relevance

/third_party/mesa3d/src/amd/vulkan/
Dradv_llvm_helper.cpp31 : family(arg_family), tm_options(arg_tm_options), wave_size(arg_wave_size), passes(NULL) in radv_llvm_per_thread_info()
42 if (!ac_init_llvm_compiler(&llvm_info, family, tm_options)) in init()
60 if (arg_family == family && arg_tm_options == tm_options && arg_wave_size == wave_size) in is_same()
68 enum ac_target_machine_options tm_options; member in radv_llvm_per_thread_info
101 enum ac_target_machine_options tm_options, unsigned wave_size) in radv_init_llvm_compiler() argument
104 if (I.is_same(family, tm_options, wave_size)) { in radv_init_llvm_compiler()
110 radv_llvm_per_thread_list.emplace_back(family, tm_options, wave_size); in radv_init_llvm_compiler()
Dradv_llvm_helper.h33 enum ac_target_machine_options tm_options, unsigned wave_size);
Dradv_nir_to_llvm.c1759 enum ac_target_machine_options tm_options = 0; in llvm_compile_shader() local
1762 tm_options |= AC_TM_SUPPORTS_SPILL; in llvm_compile_shader()
1764 tm_options |= AC_TM_CHECK_IR; in llvm_compile_shader()
1766 radv_init_llvm_compiler(&ac_llvm, options->family, tm_options, info->wave_size); in llvm_compile_shader()
/third_party/mesa3d/src/amd/llvm/
Dac_llvm_util.c194 enum ac_target_machine_options tm_options, in ac_create_target_machine() argument
199 const char *triple = (tm_options & AC_TM_SUPPORTS_SPILL) ? "amdgcn-mesa-mesa3d" : "amdgcn--"; in ac_create_target_machine()
342 enum ac_target_machine_options tm_options) in ac_init_llvm_compiler() argument
347 compiler->tm = ac_create_target_machine(family, tm_options, LLVMCodeGenLevelDefault, &triple); in ac_init_llvm_compiler()
351 if (tm_options & AC_TM_CREATE_LOW_OPT) { in ac_init_llvm_compiler()
353 ac_create_target_machine(family, tm_options, LLVMCodeGenLevelLess, NULL); in ac_init_llvm_compiler()
363 ac_create_passmgr(compiler->target_library_info, tm_options & AC_TM_CHECK_IR); in ac_init_llvm_compiler()
Dac_llvm_util.h125 enum ac_target_machine_options tm_options);
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_pipe.c146 enum ac_target_machine_options tm_options = in si_init_compiler() local
152 if (!ac_init_llvm_compiler(compiler, sscreen->info.family, tm_options)) in si_init_compiler()