1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
|
{
Copyright (c) 2010 by Jonas Maebe
This unit implements some JVM type helper routines (minimal
unit dependencies, usable in symdef).
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
****************************************************************************
}
{$i fpcdefs.inc}
unit jvmdef;
interface
uses
globtype,
node,
symbase,symtype;
{ returns whether a def can make use of an extra type signature (for
Java-style generics annotations; not use for FPC-style generics or their
translations, but to annotate the kind of classref a java.lang.Class is
and things like that) }
function jvmtypeneedssignature(def: tdef): boolean;
{ create a signature encoding of a particular type; requires that
jvmtypeneedssignature returned "true" for this type }
procedure jvmaddencodedsignature(def: tdef; bpacked: boolean; var encodedstr: TSymStr);
{ Encode a type into the internal format used by the JVM (descriptor).
Returns false if a type is not representable by the JVM,
and in that case also the failing definition. }
function jvmtryencodetype(def: tdef; out encodedtype: TSymStr; forcesignature: boolean; out founderror: tdef): boolean;
{ same as above, but throws an internal error on failure }
function jvmencodetype(def: tdef; withsignature: boolean): TSymStr;
{ Check whether a type can be used in a JVM methom signature or field
declaration. }
function jvmchecktype(def: tdef; out founderror: tdef): boolean;
{ incremental version of jvmtryencodetype() }
function jvmaddencodedtype(def: tdef; bpacked: boolean; var encodedstr: TSymStr; forcesignature: boolean; out founderror: tdef): boolean;
{ add type prefix (package name) to a type }
procedure jvmaddtypeownerprefix(owner: tsymtable; var name: TSymStr);
{ returns type string for a single-dimensional array (different from normal
typestring in case of a primitive type) }
function jvmarrtype(def: tdef; out primitivetype: boolean): TSymStr;
function jvmarrtype_setlength(def: tdef): char;
{ returns whether a def is emulated using an implicit pointer type on the
JVM target (e.g., records, regular arrays, ...) }
function jvmimplicitpointertype(def: tdef): boolean;
{ returns the mangled base name for a tsym (type + symbol name, no
visibility etc); also adds signature attribute if requested and
appropriate }
function jvmmangledbasename(sym: tsym; withsignature: boolean): TSymStr;
function jvmmangledbasename(sym: tsym; const usesymname: TSymStr; withsignature: boolean): TSymStr;
{ sometimes primitive types have to be boxed/unboxed via class types. This
routine returns the appropriate box type for the passed primitive type }
procedure jvmgetboxtype(def: tdef; out objdef, paradef: tdef; mergeints: boolean);
function jvmgetunboxmethod(def: tdef): string;
function jvmgetcorrespondingclassdef(def: tdef): tdef;
function get_para_push_size(def: tdef): tdef;
{ threadvars are wrapped via descendents of java.lang.ThreadLocal }
function jvmgetthreadvardef(def: tdef): tdef;
{ gets the number of dimensions and the final element type of a normal
array }
procedure jvmgetarraydimdef(arrdef: tdef; out eledef: tdef; out ndim: longint);
implementation
uses
cutils,cclasses,constexp,
verbose,systems,
fmodule,
symtable,symconst,symsym,symdef,symcpu,symcreat,
defutil,paramgr;
{******************************************************************
Type encoding
*******************************************************************}
function jvmtypeneedssignature(def: tdef): boolean;
var
i: longint;
begin
result:=false;
case def.typ of
classrefdef,
setdef:
begin
result:=true;
end;
arraydef :
begin
result:=jvmtypeneedssignature(tarraydef(def).elementdef);
end;
procvardef :
begin
{ may change in the future }
end;
procdef :
begin
for i:=0 to tprocdef(def).paras.count-1 do
begin
result:=jvmtypeneedssignature(tparavarsym(tprocdef(def).paras[i]).vardef);
if result then
exit;
end;
end
else
result:=false;
end;
end;
procedure jvmaddencodedsignature(def: tdef; bpacked: boolean; var encodedstr: TSymStr);
var
founderror: tdef;
begin
case def.typ of
pointerdef :
begin
{ maybe one day }
internalerror(2011051403);
end;
classrefdef :
begin
{ Ljava/lang/Class<+SomeClassType> means
"Ljava/lang/Class<SomeClassType_or_any_of_its_descendents>" }
encodedstr:=encodedstr+'Ljava/lang/Class<+';
jvmaddencodedtype(tclassrefdef(def).pointeddef,false,encodedstr,true,founderror);
encodedstr:=encodedstr+'>;';
end;
setdef :
begin
if tsetdef(def).elementdef.typ=enumdef then
begin
encodedstr:=encodedstr+'Ljava/util/EnumSet<';
jvmaddencodedtype(tenumdef(tsetdef(def).elementdef).getbasedef,false,encodedstr,true,founderror);
encodedstr:=encodedstr+'>;';
end
else
internalerror(2011051404);
end;
arraydef :
begin
if is_array_of_const(def) then
begin
internalerror(2011051405);
end
else if is_packed_array(def) then
begin
internalerror(2011051406);
end
else
begin
encodedstr:=encodedstr+'[';
jvmaddencodedsignature(tarraydef(def).elementdef,false,encodedstr);
end;
end;
procvardef :
begin
{ maybe one day }
internalerror(2011051407);
end;
objectdef :
begin
{ maybe one day }
end;
undefineddef,
errordef :
begin
internalerror(2011051408);
end;
procdef :
{ must be done via jvmencodemethod() }
internalerror(2011051401);
else
internalerror(2011051402);
end;
end;
function jvmaddencodedtype(def: tdef; bpacked: boolean; var encodedstr: TSymStr; forcesignature: boolean; out founderror: tdef): boolean;
var
c: char;
begin
result:=true;
case def.typ of
stringdef :
begin
case tstringdef(def).stringtype of
{ translated into java.lang.String }
st_widestring,
st_unicodestring:
result:=jvmaddencodedtype(java_jlstring,false,encodedstr,forcesignature,founderror);
st_ansistring:
result:=jvmaddencodedtype(java_ansistring,false,encodedstr,forcesignature,founderror);
st_shortstring:
result:=jvmaddencodedtype(java_shortstring,false,encodedstr,forcesignature,founderror);
else
{ May be handled via wrapping later }
result:=false;
end;
end;
enumdef:
begin
result:=jvmaddencodedtype(tcpuenumdef(tenumdef(def).getbasedef).classdef,false,encodedstr,forcesignature,founderror);
end;
orddef :
begin
{ for procedure "results" }
if is_void(def) then
c:='V'
{ only Pascal-style booleans conform to Java's definition of
Boolean }
else if is_pasbool(def) and
(def.size=1) then
c:='Z'
else if is_widechar(def) then
c:='C'
else
begin
case def.size of
1:
c:='B';
2:
c:='S';
4:
c:='I';
8:
c:='J';
else
internalerror(2010121905);
end;
end;
encodedstr:=encodedstr+c;
end;
pointerdef :
begin
if is_voidpointer(def) then
result:=jvmaddencodedtype(java_jlobject,false,encodedstr,forcesignature,founderror)
else if jvmimplicitpointertype(tpointerdef(def).pointeddef) then
result:=jvmaddencodedtype(tpointerdef(def).pointeddef,false,encodedstr,forcesignature,founderror)
else
begin
{ all pointer types are emulated via arrays }
encodedstr:=encodedstr+'[';
result:=jvmaddencodedtype(tpointerdef(def).pointeddef,false,encodedstr,forcesignature,founderror);
end
end;
floatdef :
begin
case tfloatdef(def).floattype of
s32real:
c:='F';
s64real:
c:='D';
else
begin
result:=false;
c:=' ';
end;
end;
encodedstr:=encodedstr+c;
end;
filedef :
result:=false;
recorddef :
begin
encodedstr:=encodedstr+'L'+trecorddef(def).jvm_full_typename(true)+';'
end;
variantdef :
begin
{ will be hanlded via wrapping later, although wrapping may
happen at higher level }
result:=false;
end;
classrefdef :
begin
if not forcesignature then
{ unfortunately, java.lang.Class is final, so we can't create
different versions for difference class reference types }
encodedstr:=encodedstr+'Ljava/lang/Class;'
{ we can however annotate it with extra signature information in
using Java's generic annotations }
else
jvmaddencodedsignature(def,false,encodedstr);
result:=true;
end;
setdef :
begin
if tsetdef(def).elementdef.typ=enumdef then
begin
if forcesignature then
jvmaddencodedsignature(def,false,encodedstr)
else
result:=jvmaddencodedtype(java_juenumset,false,encodedstr,forcesignature,founderror)
end
else
result:=jvmaddencodedtype(java_jubitset,false,encodedstr,forcesignature,founderror)
end;
formaldef :
begin
{ var/const/out x: JLObject }
result:=jvmaddencodedtype(java_jlobject,false,encodedstr,forcesignature,founderror);
end;
arraydef :
begin
if is_array_of_const(def) then
begin
encodedstr:=encodedstr+'[';
result:=jvmaddencodedtype(search_system_type('TVARREC').typedef,false,encodedstr,forcesignature,founderror);
end
else if is_packed_array(def) then
result:=false
else
begin
encodedstr:=encodedstr+'[';
if not jvmaddencodedtype(tarraydef(def).elementdef,false,encodedstr,forcesignature,founderror) then
begin
result:=false;
{ report the exact (nested) error defintion }
exit;
end;
end;
end;
procvardef :
begin
result:=jvmaddencodedtype(tcpuprocvardef(def).classdef,false,encodedstr,forcesignature,founderror);
end;
objectdef :
case tobjectdef(def).objecttype of
odt_javaclass,
odt_interfacejava:
begin
def:=maybe_find_real_class_definition(def,false);
encodedstr:=encodedstr+'L'+tobjectdef(def).jvm_full_typename(true)+';'
end
else
result:=false;
end;
undefineddef,
errordef :
result:=false;
procdef :
{ must be done via jvmencodemethod() }
internalerror(2010121903);
else
internalerror(2010121904);
end;
if not result then
founderror:=def;
end;
function jvmtryencodetype(def: tdef; out encodedtype: TSymStr; forcesignature: boolean; out founderror: tdef): boolean;
begin
encodedtype:='';
result:=jvmaddencodedtype(def,false,encodedtype,forcesignature,founderror);
end;
procedure jvmaddtypeownerprefix(owner: tsymtable; var name: TSymStr);
var
owningcontainer: tsymtable;
tmpresult: TSymStr;
module: tmodule;
nameendpos: longint;
begin
{ see tprocdef.jvmmangledbasename for description of the format }
owningcontainer:=owner;
while (owningcontainer.symtabletype=localsymtable) do
owningcontainer:=owningcontainer.defowner.owner;
case owningcontainer.symtabletype of
globalsymtable,
staticsymtable:
begin
module:=find_module_from_symtable(owningcontainer);
tmpresult:='';
if assigned(module.namespace) then
tmpresult:=module.namespace^+'/';
tmpresult:=tmpresult+module.realmodulename^+'/';
end;
objectsymtable:
case tobjectdef(owningcontainer.defowner).objecttype of
odt_javaclass,
odt_interfacejava:
begin
tmpresult:=tobjectdef(owningcontainer.defowner).jvm_full_typename(true)+'/'
end
else
internalerror(2010122606);
end;
recordsymtable:
tmpresult:=trecorddef(owningcontainer.defowner).jvm_full_typename(true)+'/'
else
internalerror(2010122605);
end;
name:=tmpresult+name;
nameendpos:=pos(' ',name);
if nameendpos=0 then
nameendpos:=length(name)+1;
insert('''',name,nameendpos);
name:=''''+name;
end;
function jvmarrtype(def: tdef; out primitivetype: boolean): TSymStr;
var
errdef: tdef;
begin
if not jvmtryencodetype(def,result,false,errdef) then
internalerror(2011012205);
primitivetype:=false;
if length(result)=1 then
begin
case result[1] of
'Z': result:='boolean';
'C': result:='char';
'B': result:='byte';
'S': result:='short';
'I': result:='int';
'J': result:='long';
'F': result:='float';
'D': result:='double';
else
internalerror(2011012206);
end;
primitivetype:=true;
end
else if (result[1]='L') then
begin
{ in case of a class reference, strip the leading 'L' and the
trailing ';' }
setlength(result,length(result)-1);
delete(result,1,1);
end;
{ for arrays, use the actual reference type }
end;
function jvmarrtype_setlength(def: tdef): char;
var
errdef: tdef;
res: TSymStr;
begin
{ keep in sync with rtl/java/jdynarrh.inc and usage in njvminl }
if is_record(def) then
result:='R'
else if is_shortstring(def) then
result:='T'
else if def.typ=setdef then
begin
if tsetdef(def).elementdef.typ=enumdef then
result:='E'
else
result:='L'
end
else if (def.typ=procvardef) and
not tprocvardef(def).is_addressonly then
result:='P'
else
begin
if not jvmtryencodetype(def,res,false,errdef) then
internalerror(2011012209);
if length(res)=1 then
result:=res[1]
else
result:='A';
end;
end;
function jvmimplicitpointertype(def: tdef): boolean;
begin
case def.typ of
arraydef:
result:=(tarraydef(def).highrange>=tarraydef(def).lowrange) or
is_open_array(def) or
is_array_of_const(def) or
is_array_constructor(def);
recorddef,
setdef:
result:=true;
objectdef:
result:=is_object(def);
stringdef :
result:=tstringdef(def).stringtype in [st_shortstring,st_longstring];
procvardef:
result:=not tprocvardef(def).is_addressonly;
else
result:=false;
end;
end;
{ mergeints = true means that all integer types are mapped to jllong,
otherwise they are mapped to the closest corresponding type }
procedure jvmgetboxtype(def: tdef; out objdef, paradef: tdef; mergeints: boolean);
begin
case def.typ of
orddef:
begin
case torddef(def).ordtype of
pasbool8:
begin
objdef:=tobjectdef(search_system_type('JLBOOLEAN').typedef);
paradef:=pasbool8type;
end;
uwidechar:
begin
objdef:=tobjectdef(search_system_type('JLCHARACTER').typedef);
paradef:=cwidechartype;
end;
else
begin
{ wrap all integer types into a JLLONG, so that we don't get
errors after returning a byte assigned to a long etc }
if mergeints or
(torddef(def).ordtype in [s64bit,u64bit,scurrency,bool64bit,pasbool64]) then
begin
objdef:=tobjectdef(search_system_type('JLLONG').typedef);
paradef:=s64inttype;
end
else
begin
case torddef(def).ordtype of
s8bit,
u8bit,
uchar,
bool8bit:
begin
objdef:=tobjectdef(search_system_type('JLBYTE').typedef);
paradef:=s8inttype;
end;
s16bit,
u16bit,
bool16bit,
pasbool16:
begin
objdef:=tobjectdef(search_system_type('JLSHORT').typedef);
paradef:=s16inttype;
end;
s32bit,
u32bit,
bool32bit,
pasbool32:
begin
objdef:=tobjectdef(search_system_type('JLINTEGER').typedef);
paradef:=s32inttype;
end;
else
internalerror(2011052101);
end;
end;
end;
end;
end;
floatdef:
begin
case tfloatdef(def).floattype of
s32real:
begin
objdef:=tobjectdef(search_system_type('JLFLOAT').typedef);
paradef:=s32floattype;
end;
s64real:
begin
objdef:=tobjectdef(search_system_type('JLDOUBLE').typedef);
paradef:=s64floattype;
end;
else
internalerror(2011052102);
end;
end;
else
internalerror(2011052103);
end;
end;
function jvmgetunboxmethod(def: tdef): string;
begin
case def.typ of
orddef:
begin
case torddef(def).ordtype of
pasbool8:
result:='BOOLEANVALUE';
s8bit,
u8bit,
uchar,
bool8bit:
result:='BYTEVALUE';
s16bit,
u16bit,
bool16bit,
pasbool16:
result:='SHORTVALUE';
s32bit,
u32bit,
bool32bit,
pasbool32:
result:='INTVALUE';
s64bit,
u64bit,
scurrency,
bool64bit,
pasbool64:
result:='LONGVALUE';
uwidechar:
result:='CHARVALUE';
else
internalerror(2011071702);
end;
end;
floatdef:
begin
case tfloatdef(def).floattype of
s32real:
result:='FLOATVALUE';
s64real:
result:='DOUBLEVALUE';
else
internalerror(2011071703);
end;
end;
else
internalerror(2011071704);
end;
end;
function jvmgetcorrespondingclassdef(def: tdef): tdef;
var
paradef: tdef;
begin
if def.typ in [orddef,floatdef] then
jvmgetboxtype(def,result,paradef,false)
else
begin
case def.typ of
stringdef :
begin
case tstringdef(def).stringtype of
{ translated into java.lang.String }
st_widestring,
st_unicodestring:
result:=java_jlstring;
st_ansistring:
result:=java_ansistring;
st_shortstring:
result:=java_shortstring;
else
internalerror(2011072409);
end;
end;
enumdef:
begin
result:=tcpuenumdef(tenumdef(def).getbasedef).classdef;
end;
pointerdef :
begin
if def=voidpointertype then
result:=java_jlobject
else if jvmimplicitpointertype(tpointerdef(def).pointeddef) then
result:=tpointerdef(def).pointeddef
else
internalerror(2011072410);
end;
recorddef :
begin
result:=def;
end;
variantdef :
begin
result:=cvarianttype;
end;
classrefdef :
begin
result:=search_system_type('JLCLASS').typedef;
end;
setdef :
begin
if tsetdef(def).elementdef.typ=enumdef then
result:=java_juenumset
else
result:=java_jubitset;
end;
formaldef :
begin
result:=java_jlobject;
end;
arraydef :
begin
{ cannot represent statically }
internalerror(2011072411);
end;
procvardef :
begin
result:=tcpuprocvardef(def).classdef;
end;
objectdef :
case tobjectdef(def).objecttype of
odt_javaclass,
odt_interfacejava:
result:=def
else
internalerror(2011072412);
end;
else
internalerror(2011072413);
end;
end;
end;
function get_para_push_size(def: tdef): tdef;
begin
result:=def;
if def.typ=orddef then
case torddef(def).ordtype of
u8bit,uchar:
if torddef(def).high>127 then
result:=s8inttype;
u16bit:
if torddef(def).high>32767 then
result:=s16inttype;
end;
end;
function jvmgetthreadvardef(def: tdef): tdef;
begin
if (def.typ=arraydef) and
not is_dynamic_array(def) then
begin
result:=search_system_type('FPCNORMALARRAYTHREADVAR').typedef;
exit;
end;
if jvmimplicitpointertype(def) then
begin
result:=search_system_type('FPCIMPLICITPTRTHREADVAR').typedef;
exit;
end;
case def.typ of
orddef:
begin
case torddef(def).ordtype of
pasbool8:
begin
result:=tobjectdef(search_system_type('FPCBOOLEANTHREADVAR').typedef);
end;
uwidechar:
begin
result:=tobjectdef(search_system_type('FPCCHARTHREADVAR').typedef);
end;
s8bit,
u8bit,
uchar,
bool8bit:
begin
result:=tobjectdef(search_system_type('FPCBYTETHREADVAR').typedef);
end;
s16bit,
u16bit,
bool16bit,
pasbool16:
begin
result:=tobjectdef(search_system_type('FPCSHORTTHREADVAR').typedef);
end;
s32bit,
u32bit,
bool32bit,
pasbool32:
begin
result:=tobjectdef(search_system_type('FPCINTTHREADVAR').typedef);
end;
s64bit,
u64bit,
scurrency,
bool64bit,
pasbool64:
begin
result:=tobjectdef(search_system_type('FPCLONGTHREADVAR').typedef);
end
else
internalerror(2011082101);
end;
end;
floatdef:
begin
case tfloatdef(def).floattype of
s32real:
begin
result:=tobjectdef(search_system_type('FPCFLOATTHREADVAR').typedef);
end;
s64real:
begin
result:=tobjectdef(search_system_type('FPCDOUBLETHREADVAR').typedef);
end;
else
internalerror(2011082102);
end;
end
else
begin
result:=search_system_type('FPCPOINTERTHREADVAR').typedef
end;
end;
end;
procedure jvmgetarraydimdef(arrdef: tdef; out eledef: tdef; out ndim: longint);
begin
eledef:=arrdef;
ndim:=0;
repeat
eledef:=tarraydef(eledef).elementdef;
inc(ndim);
until (eledef.typ<>arraydef) or
is_dynamic_array(eledef);
end;
function jvmmangledbasename(sym: tsym; const usesymname: TSymStr; withsignature: boolean): TSymStr;
var
container: tsymtable;
vsym: tabstractvarsym;
csym: tconstsym;
usedef: tdef;
begin
case sym.typ of
staticvarsym,
paravarsym,
localvarsym,
fieldvarsym:
begin
vsym:=tabstractvarsym(sym);
{ for local and paravarsyms that are unsigned 8/16 bit, change the
outputted type to signed 16/32 bit:
a) the stack slots are all 32 bit anyway, so the storage allocation
is still correct
b) since at the JVM level all types are signed, this makes sure
that the values in the stack slots are valid for the specified
types
}
usedef:=vsym.vardef;
if vsym.typ in [localvarsym,paravarsym] then
begin
if (usedef.typ=orddef) then
case torddef(usedef).ordtype of
u8bit,uchar:
usedef:=s16inttype;
u16bit:
usedef:=s32inttype;
end;
end;
result:=jvmencodetype(usedef,false);
if withsignature and
jvmtypeneedssignature(usedef) then
begin
result:=result+' signature "';
result:=result+jvmencodetype(usedef,true)+'"';
end;
if (vsym.typ=paravarsym) and
(vo_is_self in tparavarsym(vsym).varoptions) then
result:='''this'' ' +result
else if (vsym.typ in [paravarsym,localvarsym]) and
([vo_is_funcret,vo_is_result] * tabstractnormalvarsym(vsym).varoptions <> []) then
result:='''result'' '+result
else
begin
{ add array indirection if required }
if (vsym.typ=paravarsym) and
((usedef.typ=formaldef) or
((vsym.varspez in [vs_var,vs_out,vs_constref]) and
not jvmimplicitpointertype(usedef))) then
result:='['+result;
{ single quotes for definitions to prevent clashes with Java
opcodes }
if withsignature then
result:=usesymname+''' '+result
else
result:=usesymname+' '+result;
{ we have to mangle staticvarsyms in localsymtables to
prevent name clashes... }
if (vsym.typ=staticvarsym) then
begin
container:=sym.Owner;
while (container.symtabletype=localsymtable) do
begin
if tdef(container.defowner).typ<>procdef then
internalerror(2011040303);
{ defid is added to prevent problem with overloads }
result:=tprocdef(container.defowner).procsym.realname+'$$'+tostr(tprocdef(container.defowner).defid)+'$'+result;
container:=container.defowner.owner;
end;
end;
if withsignature then
result:=''''+result
end;
end;
constsym:
begin
csym:=tconstsym(sym);
{ some constants can be untyped }
if assigned(csym.constdef) and
not(csym.consttyp in [constwstring,conststring]) then
begin
result:=jvmencodetype(csym.constdef,false);
if withsignature and
jvmtypeneedssignature(csym.constdef) then
begin
result:=result+' signature "';
result:=result+jvmencodetype(csym.constdef,true)+'"';
end;
end
else
begin
case csym.consttyp of
constord:
result:=jvmencodetype(s32inttype,withsignature);
constreal:
result:=jvmencodetype(s64floattype,withsignature);
constset:
internalerror(2011040701);
constpointer,
constnil:
result:=jvmencodetype(java_jlobject,withsignature);
constwstring,
conststring:
result:=jvmencodetype(java_jlstring,withsignature);
constresourcestring:
internalerror(2011040702);
else
internalerror(2011040703);
end;
end;
if withsignature then
result:=''''+usesymname+''' '+result
else
result:=usesymname+' '+result
end;
else
internalerror(2011021703);
end;
end;
function jvmmangledbasename(sym: tsym; withsignature: boolean): TSymStr;
begin
if (sym.typ=fieldvarsym) and
assigned(tfieldvarsym(sym).externalname) then
result:=jvmmangledbasename(sym,tfieldvarsym(sym).externalname^,withsignature)
else if (sym.typ=staticvarsym) and
(tstaticvarsym(sym).mangledbasename<>'') then
result:=jvmmangledbasename(sym,tstaticvarsym(sym).mangledbasename,withsignature)
else
result:=jvmmangledbasename(sym,sym.RealName,withsignature);
end;
{******************************************************************
jvm type validity checking
*******************************************************************}
function jvmencodetype(def: tdef; withsignature: boolean): TSymStr;
var
errordef: tdef;
begin
if not jvmtryencodetype(def,result,withsignature,errordef) then
internalerror(2011012305);
end;
function jvmchecktype(def: tdef; out founderror: tdef): boolean;
var
encodedtype: TSymStr;
begin
{ don't duplicate the code like in objcdef, since the resulting strings
are much shorter here so it's not worth it }
result:=jvmtryencodetype(def,encodedtype,false,founderror);
end;
end.
|