public inbox for jit@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Li, Yicheng" <yli137@vols.utk.edu>
To: "jit@gcc.gnu.org" <jit@gcc.gnu.org>
Subject: block_end_with_jump to a block question
Date: Fri, 16 Jun 2023 16:56:28 +0000	[thread overview]
Message-ID: <44268385-4EA3-4901-8D9D-0833187D8A83@vols.utk.edu> (raw)

[-- Attachment #1: Type: text/plain, Size: 2940 bytes --]

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?
Here’s the code.



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" ),

                   *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] ) );

    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 ) ),

                   *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] );

The error from compiler is

error: array subscript is not an integer

 1183 |     gcc_jit_block_end_with_jump( block, NULL, elem_block[index] );

Thank you
Yicheng Li


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

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

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=44268385-4EA3-4901-8D9D-0833187D8A83@vols.utk.edu \
    --to=yli137@vols.utk.edu \
    --cc=jit@gcc.gnu.org \
    /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).