From 619db30d70d0f90d244fca718c85dd7a4d0b08be Mon Sep 17 00:00:00 2001 From: David Mak Date: Thu, 15 Aug 2024 12:53:33 +0800 Subject: [PATCH] [artiq] WIP --- nac3artiq/src/codegen.rs | 22 +++++++++++----------- nac3core/src/codegen/classes.rs | 6 +++--- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/nac3artiq/src/codegen.rs b/nac3artiq/src/codegen.rs index c06df6a4..b221a149 100644 --- a/nac3artiq/src/codegen.rs +++ b/nac3artiq/src/codegen.rs @@ -487,13 +487,13 @@ fn format_rpc_arg<'ctx>( let buffer = ctx.builder.build_array_alloca(llvm_i8, buffer_size, "rpc.arg").unwrap(); let buffer = ArraySliceValue::from_ptr_val(buffer, buffer_size, Some("rpc.arg")); - // let ppdata = generator.gen_var_alloc(ctx, llvm_arg_ty.element_type(), None).unwrap(); - // ctx.builder.build_store(ppdata, llvm_arg.data().base_ptr(ctx, generator)).unwrap(); + let ppdata = generator.gen_var_alloc(ctx, llvm_arg_ty.element_type(), None).unwrap(); + ctx.builder.build_store(ppdata, llvm_arg.data().base_ptr(ctx, generator)).unwrap(); call_memcpy_generic( ctx, buffer.base_ptr(ctx, generator), - llvm_arg.ptr_to_data(ctx), + ppdata, llvm_pdata_sizeof, llvm_i1.const_zero(), ); @@ -679,14 +679,14 @@ fn format_rpc_ret<'ctx>( ) .unwrap() .into_pointer_value(); - - call_memcpy_generic( - ctx, - ndarray.ptr_to_data(ctx), - data_addr, - llvm_pdata_sizeof, - llvm_i1.const_zero(), - ); + // call_memcpy_generic( + // ctx, + // ndarray.ptr_to_data(ctx), + // data_addr, + // llvm_pdata_sizeof, + // llvm_i1.const_zero(), + // ); + ndarray.store_data(ctx, data_addr); let pbuffer_dims_begin = unsafe { buffer.ptr_offset_unchecked(ctx, generator, &llvm_pdata_sizeof, None) diff --git a/nac3core/src/codegen/classes.rs b/nac3core/src/codegen/classes.rs index b6d3f2fa..05bf2664 100644 --- a/nac3core/src/codegen/classes.rs +++ b/nac3core/src/codegen/classes.rs @@ -1330,7 +1330,7 @@ impl<'ctx> NDArrayValue<'ctx> { } /// Returns the pointer to the field storing the number of dimensions of this `NDArray`. - pub fn ptr_to_ndims(&self, ctx: &CodeGenContext<'ctx, '_>) -> PointerValue<'ctx> { + fn ptr_to_ndims(&self, ctx: &CodeGenContext<'ctx, '_>) -> PointerValue<'ctx> { let llvm_i32 = ctx.ctx.i32_type(); let var_name = self.name.map(|v| format!("{v}.ndims.addr")).unwrap_or_default(); @@ -1366,7 +1366,7 @@ impl<'ctx> NDArrayValue<'ctx> { /// Returns the double-indirection pointer to the `dims` array, as if by calling `getelementptr` /// on the field. - pub fn ptr_to_dims(&self, ctx: &CodeGenContext<'ctx, '_>) -> PointerValue<'ctx> { + fn ptr_to_dims(&self, ctx: &CodeGenContext<'ctx, '_>) -> PointerValue<'ctx> { let llvm_i32 = ctx.ctx.i32_type(); let var_name = self.name.map(|v| format!("{v}.dims.addr")).unwrap_or_default(); @@ -1404,7 +1404,7 @@ impl<'ctx> NDArrayValue<'ctx> { /// Returns the double-indirection pointer to the `data` array, as if by calling `getelementptr` /// on the field. - pub fn ptr_to_data(&self, ctx: &CodeGenContext<'ctx, '_>) -> PointerValue<'ctx> { + fn ptr_to_data(&self, ctx: &CodeGenContext<'ctx, '_>) -> PointerValue<'ctx> { let llvm_i32 = ctx.ctx.i32_type(); let var_name = self.name.map(|v| format!("{v}.data.addr")).unwrap_or_default();