Displaying 3 results from an estimated 3 matches for "jstr".
Did you mean:
istr
2018 Apr 25
2
Help on understanding assume shape array processing and array descriptors in LLVM IR
...g to understand how assume shaped arrays are received and
processed in LLVM IR. I am using "flang" for my front end.
There seems to be an array descriptor received as implicit argument
for every assume shaped array.
For my test routine:
---snip--
SUBROUTINE test(a,b,Li,Lj,Istr,Iend,Jstr,Jend)
INTEGER, INTENT(IN) :: Li,Lj
INTEGER, INTENT(IN) :: Istr, Iend, Jstr,Jend
INTEGER :: i, j
REAL*8, INTENT(INOUT) :: a(Li:,Lj:)
REAL*8, INTENT(IN) :: b(Li:,Lj:)
--snip--
I got the below LLVM IR, the parameters received.
--snip--
; Function Attrs: norecurse noun...
2018 Apr 25
0
Help on understanding assume shape array processing and array descriptors in LLVM IR
...g to understand how assume shaped arrays are received and
processed in LLVM IR. I am using "flang" for my front end.
There seems to be an array descriptor received as implicit argument
for every assume shaped array.
For my test routine:
---snip--
SUBROUTINE test(a,b,Li,Lj,Istr,Iend,Jstr,Jend)
INTEGER, INTENT(IN) :: Li,Lj
INTEGER, INTENT(IN) :: Istr, Iend, Jstr,Jend
INTEGER :: i, j
REAL*8, INTENT(INOUT) :: a(Li:,Lj:)
REAL*8, INTENT(IN) :: b(Li:,Lj:)
--snip--
I got the below LLVM IR, the parameters received.
--snip--
; Function Attrs: norecurse noun...
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...00] or -1 meaning 'not present': */\n";
+ pr " public float %s;\n" name
) cols;
pr "}\n"
@@ -8210,9 +8210,9 @@ Java_com_redhat_et_libguestfs_GuestFS__1close
| RConstString _ | RConstOptString _ | RString _
| RBufferOut _ -> pr "jstring ";
| RStruct _ | RHashtable _ ->
- pr "jobject ";
+ pr "jobject ";
| RStringList _ | RStructList _ ->
- pr "jobjectArray ";
+ pr "jobjectArray ";
);
pr "JNICALL\n";
pr &quo...