forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscopeinfo.cpp
2071 lines (1819 loc) · 73.8 KB
/
scopeinfo.cpp
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XX XX
XX ScopeInfo XX
XX XX
XX Classes to gather the Scope information from the local variable info. XX
XX Translates the given LocalVarTab from IL instruction offsets into XX
XX native code offsets. XX
XX XX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
*/
/******************************************************************************
* Debuggable code
*
* We break up blocks at the start and end IL ranges of the local variables.
* This is because IL offsets do not correspond exactly to native offsets
* except at block boundaries. No basic-blocks are deleted (not even
* unreachable), so there will not be any missing address-ranges, though the
* blocks themselves may not be ordered. (Also, internal blocks may be added).
* o At the start of each basic block, siBeginBlock() checks if any variables
* are coming in scope, and adds an open scope to siOpenScopeList if needed.
* o At the end of each basic block, siEndBlock() checks if any variables
* are going out of scope and moves the open scope from siOpenScopeLast
* to siScopeList.
*
* Optimized code
*
* We cannot break up the blocks as this will produce different code under
* the debugger. Instead we try to do a best effort.
* o At the start of each basic block, siBeginBlock() adds open scopes
* corresponding to block->bbLiveIn to siOpenScopeList. Also siUpdate()
* is called to close scopes for variables which are not live anymore.
* o siEndBlock() closes scopes for any variables which go out of range
* before bbCodeOffsEnd.
* o siCloseAllOpenScopes() closes any open scopes after all the blocks.
* This should only be needed if some basic block are deleted/out of order,
* etc.
* Also,
* o At every store to a variable, siCheckVarScope() adds an open scope
* for the variable being assigned to.
* o UpdateLifeVar() calls siUpdate() which closes scopes for variables which
* are not live anymore.
*
******************************************************************************
*/
#include "jitpch.h"
#ifdef _MSC_VER
#pragma hdrstop
#endif
#include "emit.h"
#include "codegen.h"
//============================================================================
// siVarLoc functions
//============================================================================
bool CodeGenInterface::siVarLoc::vlIsInReg(regNumber reg) const
{
switch (vlType)
{
case CodeGenInterface::VLT_REG:
return (vlReg.vlrReg == reg);
case CodeGenInterface::VLT_REG_REG:
return ((vlRegReg.vlrrReg1 == reg) || (vlRegReg.vlrrReg2 == reg));
case CodeGenInterface::VLT_REG_STK:
return (vlRegStk.vlrsReg == reg);
case CodeGenInterface::VLT_STK_REG:
return (vlStkReg.vlsrReg == reg);
case CodeGenInterface::VLT_STK:
case CodeGenInterface::VLT_STK2:
case CodeGenInterface::VLT_FPSTK:
return false;
default:
assert(!"Bad locType");
return false;
}
}
bool CodeGenInterface::siVarLoc::vlIsOnStack(regNumber reg, signed offset) const
{
regNumber actualReg;
switch (vlType)
{
case CodeGenInterface::VLT_REG_STK:
actualReg = vlRegStk.vlrsStk.vlrssBaseReg;
if ((int)actualReg == (int)ICorDebugInfo::REGNUM_AMBIENT_SP)
{
actualReg = REG_SPBASE;
}
return ((actualReg == reg) && (vlRegStk.vlrsStk.vlrssOffset == offset));
case CodeGenInterface::VLT_STK_REG:
actualReg = vlStkReg.vlsrStk.vlsrsBaseReg;
if ((int)actualReg == (int)ICorDebugInfo::REGNUM_AMBIENT_SP)
{
actualReg = REG_SPBASE;
}
return ((actualReg == reg) && (vlStkReg.vlsrStk.vlsrsOffset == offset));
case CodeGenInterface::VLT_STK:
actualReg = vlStk.vlsBaseReg;
if ((int)actualReg == (int)ICorDebugInfo::REGNUM_AMBIENT_SP)
{
actualReg = REG_SPBASE;
}
return ((actualReg == reg) && (vlStk.vlsOffset == offset));
case CodeGenInterface::VLT_STK2:
actualReg = vlStk2.vls2BaseReg;
if ((int)actualReg == (int)ICorDebugInfo::REGNUM_AMBIENT_SP)
{
actualReg = REG_SPBASE;
}
return ((actualReg == reg) && ((vlStk2.vls2Offset == offset) || (vlStk2.vls2Offset == (offset - 4))));
case CodeGenInterface::VLT_REG:
case CodeGenInterface::VLT_REG_FP:
case CodeGenInterface::VLT_REG_REG:
case CodeGenInterface::VLT_FPSTK:
return false;
default:
assert(!"Bad locType");
return false;
}
}
bool CodeGenInterface::siVarLoc::vlIsOnStack() const
{
switch (vlType)
{
case CodeGenInterface::VLT_STK:
case CodeGenInterface::VLT_STK2:
case CodeGenInterface::VLT_FPSTK:
return true;
default:
return false;
}
}
//------------------------------------------------------------------------
// storeVariableInRegisters: Convert the siVarLoc instance in a register
// location using the given registers.
//
// Arguments:
// reg - the first register where the variable is placed.
// otherReg - the second register where the variable is placed
// or REG_NA if does not apply.
//
void CodeGenInterface::siVarLoc::storeVariableInRegisters(regNumber reg, regNumber otherReg)
{
if (otherReg == REG_NA)
{
// Only one register is used
vlType = VLT_REG;
vlReg.vlrReg = reg;
}
else
{
// Two register are used
vlType = VLT_REG_REG;
vlRegReg.vlrrReg1 = reg;
vlRegReg.vlrrReg2 = otherReg;
}
}
//------------------------------------------------------------------------
// storeVariableOnStack: Convert the siVarLoc instance in a stack location
// with the given base register and stack offset.
//
// Arguments:
// stackBaseReg - the base of the stack.
// varStackOffset - the offset from the base where the variable is placed.
//
void CodeGenInterface::siVarLoc::storeVariableOnStack(regNumber stackBaseReg, NATIVE_OFFSET varStackOffset)
{
vlType = VLT_STK;
vlStk.vlsBaseReg = stackBaseReg;
vlStk.vlsOffset = varStackOffset;
}
//------------------------------------------------------------------------
// Equals: Compares first reference and then values of the structures.
//
// Arguments:
// lhs - a "siVarLoc *" to compare.
// rhs - a "siVarLoc *" to compare.
//
// Notes:
// Return true if both are nullptr.
//
// static
bool CodeGenInterface::siVarLoc::Equals(const siVarLoc* lhs, const siVarLoc* rhs)
{
if (lhs == rhs)
{
// Are both nullptr or the same reference
return true;
}
if ((lhs == nullptr) || (rhs == nullptr))
{
// Just one of them is a nullptr
return false;
}
if (lhs->vlType != rhs->vlType)
{
return false;
}
assert(lhs->vlType == rhs->vlType);
// If neither is nullptr, and are not the same reference, compare values
switch (lhs->vlType)
{
case VLT_STK:
case VLT_STK_BYREF:
return (lhs->vlStk.vlsBaseReg == rhs->vlStk.vlsBaseReg) && (lhs->vlStk.vlsOffset == rhs->vlStk.vlsOffset);
case VLT_STK2:
return (lhs->vlStk2.vls2BaseReg == rhs->vlStk2.vls2BaseReg) &&
(lhs->vlStk2.vls2Offset == rhs->vlStk2.vls2Offset);
case VLT_REG:
case VLT_REG_FP:
case VLT_REG_BYREF:
return (lhs->vlReg.vlrReg == rhs->vlReg.vlrReg);
case VLT_REG_REG:
return (lhs->vlRegReg.vlrrReg1 == rhs->vlRegReg.vlrrReg1) &&
(lhs->vlRegReg.vlrrReg2 == rhs->vlRegReg.vlrrReg2);
case VLT_REG_STK:
return (lhs->vlRegStk.vlrsReg == rhs->vlRegStk.vlrsReg) &&
(lhs->vlRegStk.vlrsStk.vlrssBaseReg == rhs->vlRegStk.vlrsStk.vlrssBaseReg) &&
(lhs->vlRegStk.vlrsStk.vlrssOffset == rhs->vlRegStk.vlrsStk.vlrssOffset);
case VLT_STK_REG:
return (lhs->vlStkReg.vlsrReg == rhs->vlStkReg.vlsrReg) &&
(lhs->vlStkReg.vlsrStk.vlsrsBaseReg == rhs->vlStkReg.vlsrStk.vlsrsBaseReg) &&
(lhs->vlStkReg.vlsrStk.vlsrsOffset == rhs->vlStkReg.vlsrStk.vlsrsOffset);
case VLT_FPSTK:
return (lhs->vlFPstk.vlfReg == rhs->vlFPstk.vlfReg);
case VLT_FIXED_VA:
return (lhs->vlFixedVarArg.vlfvOffset == rhs->vlFixedVarArg.vlfvOffset);
case VLT_COUNT:
case VLT_INVALID:
return true;
default:
unreached();
}
}
//------------------------------------------------------------------------
// siFillStackVarLoc: Fill "siVarLoc" struct indicating the stack position of the variable
// using "LclVarDsc" and "baseReg"/"offset".
//
// Arguments:
// varDsc - a "LclVarDsc *" to the variable it is desired to build the "siVarLoc".
// varLoc - a "siVarLoc &" to fill with the data of the "varDsc".
// type - a "var_types" which indicate the type of the variable.
// baseReg - a "regNumber" use as a base for the offset.
// offset - a signed amount of bytes distance from "baseReg" for the position of the variable.
// isFramePointerUsed - a boolean variable
//
// Notes:
// The "varLoc" argument is filled depending of the "type" argument but as a VLT_STK... variation.
// "baseReg" and "offset" are used to indicate the position of the variable in the stack.
void CodeGenInterface::siVarLoc::siFillStackVarLoc(
const LclVarDsc* varDsc, var_types type, regNumber baseReg, int offset, bool isFramePointerUsed)
{
assert(offset != BAD_STK_OFFS);
switch (type)
{
case TYP_INT:
case TYP_REF:
case TYP_BYREF:
case TYP_FLOAT:
case TYP_STRUCT:
#ifdef FEATURE_SIMD
case TYP_SIMD8:
case TYP_SIMD12:
case TYP_SIMD16:
#if defined(TARGET_XARCH)
case TYP_SIMD32:
case TYP_SIMD64:
#endif // TARGET_XARCH
#endif // FEATURE_SIMD
#ifdef TARGET_64BIT
case TYP_LONG:
case TYP_DOUBLE:
#endif // TARGET_64BIT
#if defined(FEATURE_MASKED_HW_INTRINSICS)
case TYP_MASK:
#endif // FEATURE_MASKED_HW_INTRINSICS
#if FEATURE_IMPLICIT_BYREFS
// In the AMD64 ABI we are supposed to pass a struct by reference when its
// size is not 1, 2, 4 or 8 bytes in size. During fgMorph, the compiler modifies
// the IR to comply with the ABI and therefore changes the type of the lclVar
// that holds the struct from TYP_STRUCT to TYP_BYREF but it gives us a hint that
// this is still a struct by setting the lvIsImplicitByref flag.
// The same is true for ARM64 and structs > 16 bytes.
//
// See lvaSetStruct for further detail.
//
// Now, the VM expects a special enum for these type of local vars: VLT_STK_BYREF
// to accommodate for this situation.
if (varDsc->lvIsImplicitByRef)
{
assert(varDsc->lvIsParam);
assert(varDsc->lvType == TYP_BYREF);
this->vlType = VLT_STK_BYREF;
}
else
#endif // FEATURE_IMPLICIT_BYREFS
{
this->vlType = VLT_STK;
}
this->vlStk.vlsBaseReg = baseReg;
this->vlStk.vlsOffset = offset;
if (!isFramePointerUsed && this->vlStk.vlsBaseReg == REG_SPBASE)
{
this->vlStk.vlsBaseReg = (regNumber)ICorDebugInfo::REGNUM_AMBIENT_SP;
}
break;
#ifndef TARGET_64BIT
case TYP_LONG:
case TYP_DOUBLE:
this->vlType = VLT_STK2;
this->vlStk2.vls2BaseReg = baseReg;
this->vlStk2.vls2Offset = offset;
if (!isFramePointerUsed && this->vlStk2.vls2BaseReg == REG_SPBASE)
{
this->vlStk2.vls2BaseReg = (regNumber)ICorDebugInfo::REGNUM_AMBIENT_SP;
}
break;
#endif // !TARGET_64BIT
default:
noway_assert(!"Invalid type");
}
}
//------------------------------------------------------------------------
// siFillRegisterVarLoc: Fill "siVarLoc" struct indicating the register position of the variable
// using "LclVarDsc" and "baseReg"/"offset" if it has a part in the stack (x64 bit float or long).
//
// Arguments:
// varDsc - a "LclVarDsc *" to the variable it is desired to build the "siVarLoc".
// varLoc - a "siVarLoc &" to fill with the data of the "varDsc".
// type - a "var_types" which indicate the type of the variable.
// baseReg - a "regNumber" use as a base for the offset.
// offset - a signed amount of bytes distance from "baseReg" for the position of the variable.
// isFramePointerUsed - a boolean indicating whether the current method sets up an
// explicit stack frame or not.
//
// Notes:
// The "varLoc" argument is filled depending of the "type" argument but as a VLT_REG... variation.
// "baseReg" and "offset" are used .for not 64 bit and values that are split in two parts.
void CodeGenInterface::siVarLoc::siFillRegisterVarLoc(
const LclVarDsc* varDsc, var_types type, regNumber baseReg, int offset, bool isFramePointerUsed)
{
switch (type)
{
case TYP_INT:
case TYP_REF:
case TYP_BYREF:
#ifdef TARGET_64BIT
case TYP_LONG:
#endif // TARGET_64BIT
this->vlType = VLT_REG;
this->vlReg.vlrReg = varDsc->GetRegNum();
break;
#ifndef TARGET_64BIT
case TYP_LONG:
if (varDsc->GetOtherReg() != REG_STK)
{
this->vlType = VLT_REG_REG;
this->vlRegReg.vlrrReg1 = varDsc->GetRegNum();
this->vlRegReg.vlrrReg2 = varDsc->GetOtherReg();
}
else
{
this->vlType = VLT_REG_STK;
this->vlRegStk.vlrsReg = varDsc->GetRegNum();
this->vlRegStk.vlrsStk.vlrssBaseReg = baseReg;
if (isFramePointerUsed && this->vlRegStk.vlrsStk.vlrssBaseReg == REG_SPBASE)
{
this->vlRegStk.vlrsStk.vlrssBaseReg = (regNumber)ICorDebugInfo::REGNUM_AMBIENT_SP;
}
this->vlRegStk.vlrsStk.vlrssOffset = offset + sizeof(int);
}
break;
#endif // !TARGET_64BIT
#ifdef TARGET_64BIT
case TYP_FLOAT:
case TYP_DOUBLE:
// TODO-AMD64-Bug: ndp\clr\src\inc\corinfo.h has a definition of RegNum that only goes up to R15,
// so no XMM registers can get debug information.
this->vlType = VLT_REG_FP;
this->vlReg.vlrReg = varDsc->GetRegNum();
break;
#else // !TARGET_64BIT
case TYP_FLOAT:
case TYP_DOUBLE:
if (isFloatRegType(type))
{
this->vlType = VLT_FPSTK;
this->vlFPstk.vlfReg = varDsc->GetRegNum();
}
break;
#endif // !TARGET_64BIT
#ifdef FEATURE_SIMD
case TYP_SIMD8:
case TYP_SIMD12:
case TYP_SIMD16:
#if defined(TARGET_XARCH)
case TYP_SIMD32:
case TYP_SIMD64:
#endif // TARGET_XARCH
#if defined(FEATURE_MASKED_HW_INTRINSICS)
case TYP_MASK:
#endif // FEATURE_MASKED_HW_INTRINSICS
{
this->vlType = VLT_REG_FP;
// TODO-AMD64-Bug: ndp\clr\src\inc\corinfo.h has a definition of RegNum that only goes up to R15,
// so no XMM registers can get debug information.
//
// Note: Need to initialize vlrReg field, otherwise during jit dump hitting an assert
// in eeDispVar() --> getRegName() that regNumber is valid.
this->vlReg.vlrReg = varDsc->GetRegNum();
break;
}
#endif // FEATURE_SIMD
default:
noway_assert(!"Invalid type");
}
}
//------------------------------------------------------------------------
// siVarLoc: Non-empty constructor of siVarLoc struct
// Arguments:
// varDsc - a "LclVarDsc *" to the variable it is desired to build the "siVarLoc".
// baseReg - a "regNumber" use as a base for the offset.
// offset - a signed amount of bytes distance from "baseReg" for the position of the variable.
// isFramePointerUsed - a boolean variable
//
// Notes:
// Called for every psiScope in "psiScopeList" codegen.h
CodeGenInterface::siVarLoc::siVarLoc(const LclVarDsc* varDsc, regNumber baseReg, int offset, bool isFramePointerUsed)
{
if (varDsc->lvIsInReg())
{
var_types regType = genActualType(varDsc->GetRegisterType());
siFillRegisterVarLoc(varDsc, regType, baseReg, offset, isFramePointerUsed);
}
else
{
var_types stackType = genActualType(varDsc->TypeGet());
siFillStackVarLoc(varDsc, stackType, baseReg, offset, isFramePointerUsed);
}
}
//------------------------------------------------------------------------
// getSiVarLoc: Returns a "siVarLoc" instance representing the variable location.
//
// Arguments:
// varDsc - the variable it is desired to build the "siVarLoc".
// stackLevel - the current stack level. If the stack pointer changes in
// the function, we must adjust stack pointer-based local
// variable offsets to compensate.
//
// Return Value:
// A "siVarLoc" representing the variable location, which could live
// in a register, an stack position, or a combination of both.
//
CodeGenInterface::siVarLoc CodeGenInterface::getSiVarLoc(const LclVarDsc* varDsc, unsigned int stackLevel) const
{
// For stack vars, find the base register, and offset
regNumber baseReg;
signed offset = varDsc->GetStackOffset();
if (!varDsc->lvFramePointerBased)
{
baseReg = REG_SPBASE;
offset += stackLevel;
}
else
{
baseReg = REG_FPBASE;
}
return CodeGenInterface::siVarLoc(varDsc, baseReg, offset, isFramePointerUsed());
}
#ifdef DEBUG
void CodeGenInterface::dumpSiVarLoc(const siVarLoc* varLoc) const
{
// "varLoc" cannot be null
noway_assert(varLoc != nullptr);
switch (varLoc->vlType)
{
case VLT_REG:
case VLT_REG_BYREF:
case VLT_REG_FP:
printf("%s", getRegName(varLoc->vlReg.vlrReg));
if (varLoc->vlType == VLT_REG_BYREF)
{
printf(" byref");
}
break;
case VLT_STK:
case VLT_STK_BYREF:
if ((int)varLoc->vlStk.vlsBaseReg != (int)ICorDebugInfo::REGNUM_AMBIENT_SP)
{
printf("%s[%d] (1 slot)", getRegName(varLoc->vlStk.vlsBaseReg), varLoc->vlStk.vlsOffset);
}
else
{
printf(STR_SPBASE "'[%d] (1 slot)", varLoc->vlStk.vlsOffset);
}
if (varLoc->vlType == VLT_REG_BYREF)
{
printf(" byref");
}
break;
#ifndef TARGET_AMD64
case VLT_REG_REG:
printf("%s-%s", getRegName(varLoc->vlRegReg.vlrrReg1), getRegName(varLoc->vlRegReg.vlrrReg2));
break;
case VLT_REG_STK:
if ((int)varLoc->vlRegStk.vlrsStk.vlrssBaseReg != (int)ICorDebugInfo::REGNUM_AMBIENT_SP)
{
printf("%s-%s[%d]", getRegName(varLoc->vlRegStk.vlrsReg),
getRegName(varLoc->vlRegStk.vlrsStk.vlrssBaseReg), varLoc->vlRegStk.vlrsStk.vlrssOffset);
}
else
{
printf("%s-" STR_SPBASE "'[%d]", getRegName(varLoc->vlRegStk.vlrsReg),
varLoc->vlRegStk.vlrsStk.vlrssOffset);
}
break;
case VLT_STK_REG:
unreached();
case VLT_STK2:
if ((int)varLoc->vlStk2.vls2BaseReg != (int)ICorDebugInfo::REGNUM_AMBIENT_SP)
{
printf("%s[%d] (2 slots)", getRegName(varLoc->vlStk2.vls2BaseReg), varLoc->vlStk2.vls2Offset);
}
else
{
printf(STR_SPBASE "'[%d] (2 slots)", varLoc->vlStk2.vls2Offset);
}
break;
case VLT_FPSTK:
printf("ST(L-%d)", varLoc->vlFPstk.vlfReg);
break;
case VLT_FIXED_VA:
printf("fxd_va[%d]", varLoc->vlFixedVarArg.vlfvOffset);
break;
#endif // !TARGET_AMD64
default:
unreached();
}
}
#endif // DEBUG
#ifdef DEBUG
//------------------------------------------------------------------------
// VariableLiveRanges dumpers
//------------------------------------------------------------------------
// Dump "VariableLiveRange" when code has not been generated and we don't have so the assembly native offset
// but at least "emitLocation"s and "siVarLoc"
void CodeGenInterface::VariableLiveKeeper::VariableLiveRange::dumpVariableLiveRange(
const CodeGenInterface* codeGen) const
{
codeGen->dumpSiVarLoc(&m_VarLocation);
printf(" [");
m_StartEmitLocation.Print(codeGen->GetCompiler()->compMethodID);
printf(", ");
if (m_EndEmitLocation.Valid())
{
m_EndEmitLocation.Print(codeGen->GetCompiler()->compMethodID);
}
else
{
printf("...");
}
printf("]");
}
// Dump "VariableLiveRange" when code has been generated and we have the assembly native offset of each "emitLocation"
void CodeGenInterface::VariableLiveKeeper::VariableLiveRange::dumpVariableLiveRange(
emitter* emit, const CodeGenInterface* codeGen) const
{
assert(emit != nullptr);
// "VariableLiveRanges" are created setting its location ("m_VarLocation") and the initial native offset
// ("m_StartEmitLocation")
codeGen->dumpSiVarLoc(&m_VarLocation);
// If this is an open "VariableLiveRange", "m_EndEmitLocation" is non-valid and print -1
UNATIVE_OFFSET endAssemblyOffset = m_EndEmitLocation.Valid() ? m_EndEmitLocation.CodeOffset(emit) : -1;
printf(" [%X, %X)", m_StartEmitLocation.CodeOffset(emit), m_EndEmitLocation.CodeOffset(emit));
}
//------------------------------------------------------------------------
// LiveRangeDumper
//------------------------------------------------------------------------
//------------------------------------------------------------------------
// resetDumper: If the "liveRange" has its last "VariableLiveRange" closed, it points
// the "LiveRangeDumper" to end of "liveRange" (nullptr). Otherwise,
// it points the "LiveRangeDumper" to the last "VariableLiveRange" of
// "liveRange", which is opened.
//
// Arguments:
// liveRanges - the "LiveRangeList" of the "VariableLiveDescriptor" we want to
// update its "LiveRangeDumper".
//
// Notes:
// This method is expected to be called once the code for a BasicBlock has been
// generated and all the new "VariableLiveRange"s of the variable during this block
// has been dumped.
//
void CodeGenInterface::VariableLiveKeeper::LiveRangeDumper::resetDumper(const LiveRangeList* liveRanges)
{
// There must have reported something in order to reset
assert(m_hasLiveRangesToDump);
if (liveRanges->back().m_EndEmitLocation.Valid())
{
// the last "VariableLiveRange" is closed and the variable
// is no longer alive
m_hasLiveRangesToDump = false;
}
else
{
// the last "VariableLiveRange" remains opened because it is
// live at "BasicBlock"s "bbLiveOut".
m_startingLiveRange = liveRanges->backPosition();
}
}
//------------------------------------------------------------------------
// setDumperStartAt: Make "LiveRangeDumper" instance point at the last "VariableLiveRange"
// added so we can start dumping from there after the "BasicBlock"s code is generated.
//
// Arguments:
// liveRangeIt - an iterator to a position in "VariableLiveDescriptor::m_VariableLiveRanges"
//
void CodeGenInterface::VariableLiveKeeper::LiveRangeDumper::setDumperStartAt(const LiveRangeListIterator liveRangeIt)
{
m_hasLiveRangesToDump = true;
m_startingLiveRange = liveRangeIt;
}
//------------------------------------------------------------------------
// getStartForDump: Return an iterator to the first "VariableLiveRange" edited/added
// during the current "BasicBlock"
//
// Return Value:
// A LiveRangeListIterator to the first "VariableLiveRange" in "LiveRangeList" which
// was used during last "BasicBlock".
//
CodeGenInterface::VariableLiveKeeper::LiveRangeListIterator CodeGenInterface::VariableLiveKeeper::LiveRangeDumper::
getStartForDump() const
{
return m_startingLiveRange;
}
//------------------------------------------------------------------------
// hasLiveRangesToDump: Return whether at least a "VariableLiveRange" was alive during
// the current "BasicBlock"'s code generation
//
// Return Value:
// A boolean indicating indicating if there is at least a "VariableLiveRange"
// that has been used for the variable during last "BasicBlock".
//
bool CodeGenInterface::VariableLiveKeeper::LiveRangeDumper::hasLiveRangesToDump() const
{
return m_hasLiveRangesToDump;
}
#endif // DEBUG
//------------------------------------------------------------------------
// VariableLiveDescriptor
//------------------------------------------------------------------------
CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::VariableLiveDescriptor(
CompAllocator allocator DEBUG_ARG(unsigned varNum))
{
// Initialize an empty list
m_VariableLiveRanges = new (allocator) LiveRangeList(allocator);
INDEBUG(m_VariableLifeBarrier = new (allocator) LiveRangeDumper(m_VariableLiveRanges));
INDEBUG(m_varNum = varNum);
}
//------------------------------------------------------------------------
// hasVariableLiveRangeOpen: Return true if the variable is still alive,
// false in other case.
//
bool CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::hasVariableLiveRangeOpen() const
{
return !m_VariableLiveRanges->empty() && !m_VariableLiveRanges->back().m_EndEmitLocation.Valid();
}
//------------------------------------------------------------------------
// getLiveRanges: Return the list of variable locations for this variable.
//
// Return Value:
// A const LiveRangeList* pointing to the first variable location if it has
// any or the end of the list in other case.
//
CodeGenInterface::VariableLiveKeeper::LiveRangeList* CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::
getLiveRanges() const
{
return m_VariableLiveRanges;
}
//------------------------------------------------------------------------
// startLiveRangeFromEmitter: Report this variable as being born in "varLocation"
// at the instruction where "emit" is located.
//
// Arguments:
// varLocation - the home of the variable.
// emit - an emitter* instance located at the first instruction where "varLocation" becomes valid.
//
// Assumptions:
// This variable is being born so it should currently be dead.
//
// Notes:
// The position of "emit" matters to ensure intervals inclusive of the
// beginning and exclusive of the end.
//
void CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::startLiveRangeFromEmitter(
CodeGenInterface::siVarLoc varLocation, emitter* emit) const
{
noway_assert(emit != nullptr);
// Is the first "VariableLiveRange" or the previous one has been closed so its "m_EndEmitLocation" is valid
noway_assert(m_VariableLiveRanges->empty() || m_VariableLiveRanges->back().m_EndEmitLocation.Valid());
if (!m_VariableLiveRanges->empty() &&
siVarLoc::Equals(&varLocation, &(m_VariableLiveRanges->back().m_VarLocation)) &&
m_VariableLiveRanges->back().m_EndEmitLocation.IsPreviousInsNum(emit))
{
JITDUMP("Debug: Extending V%02u debug range...\n", m_varNum);
// The variable is being born just after the instruction at which it died.
// In this case, i.e. an update of the variable's value, we coalesce the live ranges.
m_VariableLiveRanges->back().m_EndEmitLocation.Init();
}
else
{
JITDUMP("Debug: New V%02u debug range: %s\n", m_varNum,
m_VariableLiveRanges->empty() ? "first"
: siVarLoc::Equals(&varLocation, &(m_VariableLiveRanges->back().m_VarLocation)) ? "new var or location"
: "not adjacent");
// Creates new live range with invalid end
m_VariableLiveRanges->emplace_back(varLocation, emitLocation(), emitLocation());
m_VariableLiveRanges->back().m_StartEmitLocation.CaptureLocation(emit);
}
#ifdef DEBUG
if (!m_VariableLifeBarrier->hasLiveRangesToDump())
{
m_VariableLifeBarrier->setDumperStartAt(m_VariableLiveRanges->backPosition());
}
#endif // DEBUG
// m_startEmitLocation must be Valid. m_EndEmitLocation must not be valid.
noway_assert(m_VariableLiveRanges->back().m_StartEmitLocation.Valid());
noway_assert(!m_VariableLiveRanges->back().m_EndEmitLocation.Valid());
}
//------------------------------------------------------------------------
// endLiveRangeAtEmitter: Report this variable as becoming dead starting at the
// instruction where "emit" is located.
//
// Arguments:
// emit - an emitter* instance located at the first instruction where
// this variable becomes dead.
//
// Assumptions:
// This variable is becoming dead so it should currently be alive.
//
// Notes:
// The position of "emit" matters to ensure intervals inclusive of the
// beginning and exclusive of the end.
//
void CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::endLiveRangeAtEmitter(emitter* emit) const
{
noway_assert(emit != nullptr);
noway_assert(hasVariableLiveRangeOpen());
// Using [close, open) ranges so as to not compute the size of the last instruction
m_VariableLiveRanges->back().m_EndEmitLocation.CaptureLocation(emit);
JITDUMP("Debug: Closing V%02u debug range.\n", m_varNum);
// m_EndEmitLocation must be Valid
noway_assert(m_VariableLiveRanges->back().m_EndEmitLocation.Valid());
}
//------------------------------------------------------------------------
// updateLiveRangeAtEmitter: Report this variable as changing its variable
// home to "varLocation" at the instruction where "emit" is located.
//
// Arguments:
// varLocation - the new variable location.
// emit - an emitter* instance located at the first instruction where "varLocation" becomes valid.
//
// Assumptions:
// This variable should already be alive.
//
// Notes:
// The position of "emit" matters to ensure intervals inclusive of the
// beginning and exclusive of the end.
//
void CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::updateLiveRangeAtEmitter(
CodeGenInterface::siVarLoc varLocation, emitter* emit) const
{
// This variable is changing home so it has been started before during this block
noway_assert(m_VariableLiveRanges != nullptr && !m_VariableLiveRanges->empty());
// And its last m_EndEmitLocation has to be invalid
noway_assert(!m_VariableLiveRanges->back().m_EndEmitLocation.Valid());
// If we are reporting again the same home, that means we are doing something twice?
// noway_assert(! CodeGenInterface::siVarLoc::Equals(&m_VariableLiveRanges->back().m_VarLocation, varLocation));
// Close previous live range
endLiveRangeAtEmitter(emit);
startLiveRangeFromEmitter(varLocation, emit);
}
#ifdef DEBUG
void CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::dumpAllRegisterLiveRangesForBlock(
emitter* emit, const CodeGenInterface* codeGen) const
{
bool first = true;
for (LiveRangeListIterator it = m_VariableLiveRanges->begin(); it != m_VariableLiveRanges->end(); it++)
{
if (!first)
{
printf("; ");
}
it->dumpVariableLiveRange(emit, codeGen);
first = false;
}
}
void CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::dumpRegisterLiveRangesForBlockBeforeCodeGenerated(
const CodeGenInterface* codeGen) const
{
bool first = true;
for (LiveRangeListIterator it = m_VariableLifeBarrier->getStartForDump(); it != m_VariableLiveRanges->end(); it++)
{
if (!first)
{
printf("; ");
}
it->dumpVariableLiveRange(codeGen);
first = false;
}
}
// Returns true if a live range for this variable has been recorded
bool CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::hasVarLiveRangesToDump() const
{
return !m_VariableLiveRanges->empty();
}
// Returns true if a live range for this variable has been recorded from last call to EndBlock
bool CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::hasVarLiveRangesFromLastBlockToDump() const
{
return m_VariableLifeBarrier->hasLiveRangesToDump();
}
// Reset the barrier so as to dump only next block changes on next block
void CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::endBlockLiveRanges()
{
// make "m_VariableLifeBarrier->m_startingLiveRange" now points to nullptr for printing purposes
m_VariableLifeBarrier->resetDumper(m_VariableLiveRanges);
}
#endif // DEBUG
//------------------------------------------------------------------------
// VariableLiveKeeper
//------------------------------------------------------------------------
// Initialize structures for VariableLiveRanges
void CodeGenInterface::initializeVariableLiveKeeper()
{
CompAllocator allocator = compiler->getAllocator(CMK_VariableLiveRanges);
int amountTrackedVariables = compiler->opts.compDbgInfo ? compiler->info.compLocalsCount : 0;
int amountTrackedArgs = compiler->opts.compDbgInfo ? compiler->info.compArgsCount : 0;
varLiveKeeper = new (allocator) VariableLiveKeeper(amountTrackedVariables, amountTrackedArgs, compiler, allocator);
}
CodeGenInterface::VariableLiveKeeper* CodeGenInterface::getVariableLiveKeeper() const
{
return varLiveKeeper;
};
//------------------------------------------------------------------------
// VariableLiveKeeper: Create an instance of the object in charge of managing
// VariableLiveRanges and initialize the array "m_vlrLiveDsc".
//
// Arguments:
// totalLocalCount - the count of args, special args and IL Local
// variables in the method.
// argsCount - the count of args and special args in the method.
// compiler - a compiler instance
//
CodeGenInterface::VariableLiveKeeper::VariableLiveKeeper(unsigned int totalLocalCount,
unsigned int argsCount,
Compiler* comp,
CompAllocator allocator)
: m_LiveDscCount(totalLocalCount)
, m_LiveArgsCount(argsCount)
, m_Compiler(comp)
, m_LastBasicBlockHasBeenEmitted(false)
{
if (m_LiveDscCount > 0)
{
// Allocate memory for "m_vlrLiveDsc" and initialize each "VariableLiveDescriptor"
m_vlrLiveDsc = allocator.allocate<VariableLiveDescriptor>(m_LiveDscCount);
m_vlrLiveDscForProlog = allocator.allocate<VariableLiveDescriptor>(m_LiveDscCount);
for (unsigned int varNum = 0; varNum < m_LiveDscCount; varNum++)
{
new (m_vlrLiveDsc + varNum, jitstd::placement_t()) VariableLiveDescriptor(allocator DEBUG_ARG(varNum));
new (m_vlrLiveDscForProlog + varNum, jitstd::placement_t())
VariableLiveDescriptor(allocator DEBUG_ARG(varNum));
}
}
}
//------------------------------------------------------------------------
// siStartOrCloseVariableLiveRange: Reports the given variable as being born or becoming dead.
//
// Arguments:
// varDsc - the variable for which a location changed will be reported
// varNum - the index of the variable in "lvaTable"
// isBorn - true if the variable is being born where the emitter is located.
// isDying - true if the variable is dying where the emitter is located.
//
// Assumptions:
// The emitter should be located on the first instruction where
// the variable is becoming valid (when isBorn is true) or invalid (when isDying is true).
//
// Notes:
// This method is being called from treeLifeUpdater when the variable is being born,
// becoming dead, or both.
//
void CodeGenInterface::VariableLiveKeeper::siStartOrCloseVariableLiveRange(const LclVarDsc* varDsc,
unsigned int varNum,
bool isBorn,
bool isDying)