gallivm: remove lp_add_attr_dereferenceable in favor of amd/common

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Marek Olšák 2017-03-21 23:13:46 +01:00
parent 7ab03ba725
commit 6e2b9fd071
3 changed files with 1 additions and 15 deletions

View file

@ -747,17 +747,6 @@ lp_free_memory_manager(LLVMMCJITMemoryManagerRef memorymgr)
delete reinterpret_cast<BaseMemoryManager*>(memorymgr);
}
extern "C" void
lp_add_attr_dereferenceable(LLVMValueRef val, uint64_t bytes)
{
#if HAVE_LLVM >= 0x0306
llvm::Argument *A = llvm::unwrap<llvm::Argument>(val);
llvm::AttrBuilder B;
B.addDereferenceableAttr(bytes);
A->addAttr(llvm::AttributeSet::get(A->getContext(), A->getArgNo() + 1, B));
#endif
}
extern "C" LLVMValueRef
lp_get_called_value(LLVMValueRef call)
{

View file

@ -73,9 +73,6 @@ lp_get_default_memory_manager();
extern void
lp_free_memory_manager(LLVMMCJITMemoryManagerRef memorymgr);
extern void
lp_add_attr_dereferenceable(LLVMValueRef val, uint64_t bytes);
extern LLVMValueRef
lp_get_called_value(LLVMValueRef call);

View file

@ -5226,7 +5226,7 @@ static void si_create_function(struct si_shader_context *ctx,
if (LLVMGetTypeKind(LLVMTypeOf(P)) == LLVMPointerTypeKind) {
lp_add_function_attr(ctx->main_fn, i + 1, LP_FUNC_ATTR_BYVAL);
lp_add_function_attr(ctx->main_fn, i + 1, LP_FUNC_ATTR_NOALIAS);
lp_add_attr_dereferenceable(P, UINT64_MAX);
ac_add_attr_dereferenceable(P, UINT64_MAX);
} else
lp_add_function_attr(ctx->main_fn, i + 1, LP_FUNC_ATTR_INREG);
}