Home | History | Annotate | Download | only in radeonsi

Lines Matching refs:ret_type

153 	LLVMTypeRef ret_type;
161 ret_type = LLVMFloatTypeInContext(gallivm->context);
162 ret_type = LLVMPointerType(ret_type, CONST_ADDR_SPACE);
166 ret_type = LLVMInt32TypeInContext(gallivm->context);
171 ret_type= LLVMInt64TypeInContext(gallivm->context);
176 ret_type = LLVMInt32TypeInContext(gallivm->context);
177 ret_type = LLVMVectorType(ret_type, 4);
178 ret_type = LLVMPointerType(ret_type, CONST_ADDR_SPACE);
183 ret_type = LLVMInt32TypeInContext(gallivm->context);
184 ret_type = LLVMVectorType(ret_type, 8);
185 ret_type = LLVMPointerType(ret_type, CONST_ADDR_SPACE);
193 ret_type = LLVMPointerType(ret_type, USER_SGPR_ADDR_SPACE);
194 ptr = LLVMBuildIntToPtr(gallivm->builder, sgpr_index, ret_type, "");