public inbox for jit@gcc.gnu.org
 help / color / mirror / Atom feed
From: David Malcolm <dmalcolm@redhat.com>
To: "Li, Yicheng" <yli137@vols.utk.edu>, "jit@gcc.gnu.org" <jit@gcc.gnu.org>
Subject: Re: block_end_with_jump to a block question
Date: Fri, 16 Jun 2023 13:16:38 -0400	[thread overview]
Message-ID: <3a7cbd78d5bab0c7181dd472609f15ebbdaafbd4.camel@redhat.com> (raw)
In-Reply-To: <44268385-4EA3-4901-8D9D-0833187D8A83@vols.utk.edu>

On Fri, 2023-06-16 at 16:56 +0000, Li, Yicheng via Jit wrote:
> Hi,
> 
> I created a a few blocks using gcc_jit_function_new_block.
> While I have a jit function param coming in as “index”.
> But the “index” has a type as gcc_jit_lvalue, which cannot be
> consider as an integer, thus, I cannot do
> gcc_jit_block_end_with_jump( block, NULL, elem_block[index].
> Is there a trick to do this?

Hi

It's not quite clear to me what the code is trying to do...

> 
> gcc_jit_lvalue *dst_input = gcc_jit_function_new_local( func, NULL, char_ptr_ptr_type, "dst_input" ),
> 
>                    *src_val = gcc_jit_function_new_local( func, NULL, char_ptr_type, "src_val" ),
> 
>                    *src_loop = gcc_jit_function_new_local( func, NULL, char_ptr_type, "src_loop" ),
> 
>                    *index_val = gcc_jit_function_new_local( func, NULL, int_ptr_type, "index_val" ),

...here you create a local variable called "index_val"...


> 
>                    *disp_val = gcc_jit_function_new_local( func, NULL, sizet_ptr_type, "disp_val" ),
> 
>                    *maxdata_val = gcc_jit_function_new_local( func, NULL, sizet_ptr_type, "maxdata_val" );
> 
> 
>     gcc_jit_block_add_assignment( block, NULL, dst_input, gcc_jit_param_as_rvalue( param[0] ) );
> 
>     gcc_jit_block_add_assignment( block, NULL, src_val, gcc_jit_param_as_rvalue( param[1] ) );
> 
>     gcc_jit_block_add_assignment( block, NULL, index_val, gcc_jit_param_as_rvalue( param[2] ) );

...and here you create an assignment equivalent to this C code:

   index_val = param[2];


> 
>     gcc_jit_block_add_assignment( block, NULL, disp_val, gcc_jit_param_as_rvalue( param[3] ) );
> 
>     gcc_jit_block_add_assignment( block, NULL, maxdata_val, gcc_jit_param_as_rvalue( param[4] ) );
> 
> 
>     gcc_jit_lvalue *dst_val = gcc_jit_context_new_array_access( ctxt, NULL, dst_input,
> 
>                                   gcc_jit_context_new_rvalue_from_int( ctxt, int_type, 0 ) ),
> 
>                    *index = gcc_jit_context_new_array_access( ctxt, NULL, index_val,
> 
>                                    gcc_jit_context_new_rvalue_from_int( ctxt, int_type, 0 ) ),

"index" here is an array access i.e. you're making an lvalue equivalent
to this C code:

  index_val[0]

which is equivalent to:


  *index_val


> 
>                    *disp = gcc_jit_context_new_array_access( ctxt, NULL, disp_val,
> 
>                                gcc_jit_context_new_rvalue_from_int( ctxt, int_type, 0 ) ),
> 
>                    *maxdata = gcc_jit_context_new_array_access( ctxt, NULL, maxdata_val,
> 
>                                   gcc_jit_context_new_rvalue_from_int( ctxt, int_type, 0 ) );
> 
> 
>     gcc_jit_lvalue *count_val = gcc_jit_function_new_local( func, NULL, int_type, "elem_count" );
> 
> 
>     gcc_jit_block *elem_block[desc_used],
> 
>                   *elem_exit_block[desc_used];
> 
>     int blockn = 0,
> 
>         nelem = 0;
> 
>     for( int i = 0; i <= desc_used; i++ ){
> 
>             char block_name[10];
> 
>             elem_block[nelem] = gcc_jit_function_new_block( func, itoa( blockn++, block_name, 10 ) );
> 
>             nelem++;
> 
>     }
> 
> 
>     gcc_jit_block_end_with_jump( block, NULL, elem_block[index] );

"index" here is the (gcc_jit_lvalue *) from above, referring to an
lvalue equivalent to "index_val[0]".

Which block do you want to be executed after "block"?  Or is this meant
to be a switch statement?  If so, look at
https://gcc.gnu.org/onlinedocs/jit/topics/functions.html#c.gcc_jit_block_end_with_switch

> 
> The error from compiler is
> 
> error: array subscript is not an integer
> 
>  1183 |     gcc_jit_block_end_with_jump( block, NULL,
> elem_block[index] );

This is looking up an element of the "elem_block" array, and so needs
an integer value, not a (gcc_jit_lvalue *).

Hope this is helpful
Dave

      reply	other threads:[~2023-06-16 17:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-16 16:56 Li, Yicheng
2023-06-16 17:16 ` David Malcolm [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3a7cbd78d5bab0c7181dd472609f15ebbdaafbd4.camel@redhat.com \
    --to=dmalcolm@redhat.com \
    --cc=jit@gcc.gnu.org \
    --cc=yli137@vols.utk.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).