-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathstublink.cpp
2500 lines (2064 loc) · 75.9 KB
/
stublink.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.
//
// stublink.cpp
//
#include "common.h"
#include "threads.h"
#include "excep.h"
#include "stublink.h"
#include "stubgen.h"
#include "stublink.inl"
#include "rtlfunctions.h"
#define S_BYTEPTR(x) S_SIZE_T((SIZE_T)(x))
#ifndef DACCESS_COMPILE
//************************************************************************
// CodeElement
//
// There are two types of CodeElements: CodeRuns (a stream of uninterpreted
// code bytes) and LabelRefs (an instruction containing
// a fixup.)
//************************************************************************
struct CodeElement
{
enum CodeElementType {
kCodeRun = 0,
kLabelRef = 1,
};
CodeElementType m_type; // kCodeRun or kLabelRef
CodeElement *m_next; // ptr to next CodeElement
// Used as workspace during Link(): holds the offset relative to
// the start of the final stub.
UINT m_globaloffset;
UINT m_dataoffset;
};
//************************************************************************
// CodeRun: A run of uninterrupted code bytes.
//************************************************************************
#ifdef _DEBUG
#define CODERUNSIZE 3
#else
#define CODERUNSIZE 32
#endif
struct CodeRun : public CodeElement
{
UINT m_numcodebytes; // how many bytes are actually used
BYTE m_codebytes[CODERUNSIZE];
};
//************************************************************************
// LabelRef: An instruction containing an embedded label reference
//************************************************************************
struct LabelRef : public CodeElement
{
// provides platform-specific information about the instruction
InstructionFormat *m_pInstructionFormat;
// a variation code (interpretation is specific to the InstructionFormat)
// typically used to customize an instruction (e.g. with a condition
// code.)
UINT m_variationCode;
CodeLabel *m_target;
// Workspace during the link phase
UINT m_refsize;
// Pointer to next LabelRef
LabelRef *m_nextLabelRef;
};
//************************************************************************
// IntermediateUnwindInfo
//************************************************************************
#ifdef STUBLINKER_GENERATES_UNWIND_INFO
#ifdef TARGET_AMD64
// List of unwind operations, queued in StubLinker::m_pUnwindInfoList.
struct IntermediateUnwindInfo
{
IntermediateUnwindInfo *pNext;
CodeRun *pCodeRun;
UINT LocalOffset;
UNWIND_CODE rgUnwindCode[1]; // variable length, depends on first entry's UnwindOp
};
#endif // TARGET_AMD64
StubUnwindInfoHeapSegment *g_StubHeapSegments;
CrstStatic g_StubUnwindInfoHeapSegmentsCrst;
#ifdef _DEBUG // for unit test
void *__DEBUG__g_StubHeapSegments = &g_StubHeapSegments;
#endif
//
// Callback registered via RtlInstallFunctionTableCallback. Called by
// RtlpLookupDynamicFunctionEntry to locate RUNTIME_FUNCTION entry for a PC
// found within a portion of a heap that contains stub code.
//
T_RUNTIME_FUNCTION*
FindStubFunctionEntry (
BIT64_ONLY(IN ULONG64 ControlPc)
NOT_BIT64(IN ULONG ControlPc),
IN PVOID Context
)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
FORBID_FAULT;
}
CONTRACTL_END
CONSISTENCY_CHECK(DYNFNTABLE_STUB == IdentifyDynamicFunctionTableTypeFromContext(Context));
StubUnwindInfoHeapSegment *pStubHeapSegment = (StubUnwindInfoHeapSegment*)DecodeDynamicFunctionTableContext(Context);
//
// The RUNTIME_FUNCTION entry contains ULONG offsets relative to the
// segment base. Stub::EmitUnwindInfo ensures that this cast is valid.
//
ULONG RelativeAddress = (ULONG)((BYTE*)ControlPc - pStubHeapSegment->pbBaseAddress);
LOG((LF_STUBS, LL_INFO100000, "ControlPc %p, RelativeAddress 0x%x, pStubHeapSegment %p, pStubHeapSegment->pbBaseAddress %p\n",
ControlPc,
RelativeAddress,
pStubHeapSegment,
pStubHeapSegment->pbBaseAddress));
//
// Search this segment's list of stubs for an entry that includes the
// segment-relative offset.
//
for (StubUnwindInfoHeader *pHeader = pStubHeapSegment->pUnwindHeaderList;
pHeader;
pHeader = pHeader->pNext)
{
// The entry points are in increasing address order.
if (RelativeAddress >= RUNTIME_FUNCTION__BeginAddress(&pHeader->FunctionEntry))
{
T_RUNTIME_FUNCTION *pCurFunction = &pHeader->FunctionEntry;
T_RUNTIME_FUNCTION *pPrevFunction = NULL;
LOG((LF_STUBS, LL_INFO100000, "pCurFunction %p, pCurFunction->BeginAddress 0x%x, pCurFunction->EndAddress 0x%x\n",
pCurFunction,
RUNTIME_FUNCTION__BeginAddress(pCurFunction),
RUNTIME_FUNCTION__EndAddress(pCurFunction, (TADDR)pStubHeapSegment->pbBaseAddress)));
CONSISTENCY_CHECK((RUNTIME_FUNCTION__EndAddress(pCurFunction, (TADDR)pStubHeapSegment->pbBaseAddress) > RUNTIME_FUNCTION__BeginAddress(pCurFunction)));
CONSISTENCY_CHECK((!pPrevFunction || RUNTIME_FUNCTION__EndAddress(pPrevFunction, (TADDR)pStubHeapSegment->pbBaseAddress) <= RUNTIME_FUNCTION__BeginAddress(pCurFunction)));
// The entry points are in increasing address order. They're
// also contiguous, so after we're sure it's after the start of
// the first function (checked above), we only need to test
// the end address.
if (RelativeAddress < RUNTIME_FUNCTION__EndAddress(pCurFunction, (TADDR)pStubHeapSegment->pbBaseAddress))
{
CONSISTENCY_CHECK((RelativeAddress >= RUNTIME_FUNCTION__BeginAddress(pCurFunction)));
return pCurFunction;
}
}
}
//
// Return NULL to indicate that there is no RUNTIME_FUNCTION/unwind
// information for this offset.
//
return NULL;
}
bool UnregisterUnwindInfoInLoaderHeapCallback (PVOID pvArgs, PVOID pvAllocationBase, SIZE_T cbReserved)
{
CONTRACTL
{
NOTHROW;
GC_TRIGGERS;
}
CONTRACTL_END;
//
// There may be multiple StubUnwindInfoHeapSegment's associated with a region.
//
LOG((LF_STUBS, LL_INFO1000, "Looking for stub unwind info for LoaderHeap segment %p size %p\n", pvAllocationBase, cbReserved));
CrstHolder crst(&g_StubUnwindInfoHeapSegmentsCrst);
StubUnwindInfoHeapSegment *pStubHeapSegment;
for (StubUnwindInfoHeapSegment **ppPrevStubHeapSegment = &g_StubHeapSegments;
(pStubHeapSegment = *ppPrevStubHeapSegment); )
{
LOG((LF_STUBS, LL_INFO10000, " have unwind info for address %p size %p\n", pStubHeapSegment->pbBaseAddress, pStubHeapSegment->cbSegment));
// If heap region ends before stub segment
if ((BYTE*)pvAllocationBase + cbReserved <= pStubHeapSegment->pbBaseAddress)
{
// The list is ordered, so address range is between segments
break;
}
// The given heap segment base address may fall within a prereserved
// region that was given to the heap when the heap was constructed, so
// pvAllocationBase may be > pbBaseAddress. Also, there could be
// multiple segments for each heap region, so pvAllocationBase may be
// < pbBaseAddress. So...there is no meaningful relationship between
// pvAllocationBase and pbBaseAddress.
// If heap region starts before end of stub segment
if ((BYTE*)pvAllocationBase < pStubHeapSegment->pbBaseAddress + pStubHeapSegment->cbSegment)
{
_ASSERTE((BYTE*)pvAllocationBase + cbReserved <= pStubHeapSegment->pbBaseAddress + pStubHeapSegment->cbSegment);
DeleteEEFunctionTable(pStubHeapSegment);
#ifdef TARGET_AMD64
if (pStubHeapSegment->pUnwindInfoTable != 0)
delete pStubHeapSegment->pUnwindInfoTable;
#endif
*ppPrevStubHeapSegment = pStubHeapSegment->pNext;
delete pStubHeapSegment;
}
else
{
ppPrevStubHeapSegment = &pStubHeapSegment->pNext;
}
}
return false; // Keep enumerating
}
VOID UnregisterUnwindInfoInLoaderHeap (UnlockedLoaderHeap *pHeap)
{
CONTRACTL
{
NOTHROW;
GC_TRIGGERS;
PRECONDITION(pHeap->m_fPermitStubsWithUnwindInfo);
}
CONTRACTL_END;
pHeap->EnumPageRegions(&UnregisterUnwindInfoInLoaderHeapCallback, NULL /* pvArgs */);
#ifdef _DEBUG
pHeap->m_fStubUnwindInfoUnregistered = TRUE;
#endif // _DEBUG
}
class StubUnwindInfoSegmentBoundaryReservationList
{
struct ReservationList
{
ReservationList *pNext;
static ReservationList *FromStub (Stub *pStub)
{
return (ReservationList*)(pStub+1);
}
Stub *GetStub ()
{
return (Stub*)this - 1;
}
};
ReservationList *m_pList;
public:
StubUnwindInfoSegmentBoundaryReservationList ()
{
LIMITED_METHOD_CONTRACT;
m_pList = NULL;
}
~StubUnwindInfoSegmentBoundaryReservationList ()
{
LIMITED_METHOD_CONTRACT;
ReservationList *pList = m_pList;
while (pList)
{
ReservationList *pNext = pList->pNext;
ExecutableWriterHolder<Stub> stubWriterHolder(pList->GetStub(), sizeof(Stub));
stubWriterHolder.GetRW()->DecRef();
pList = pNext;
}
}
void AddStub (Stub *pStub)
{
LIMITED_METHOD_CONTRACT;
ReservationList *pList = ReservationList::FromStub(pStub);
ExecutableWriterHolder<ReservationList> listWriterHolder(pList, sizeof(ReservationList));
listWriterHolder.GetRW()->pNext = m_pList;
m_pList = pList;
}
};
#endif // STUBLINKER_GENERATES_UNWIND_INFO
//************************************************************************
// StubLinker
//************************************************************************
//---------------------------------------------------------------
// Construction
//---------------------------------------------------------------
StubLinker::StubLinker()
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
}
CONTRACTL_END;
m_pCodeElements = NULL;
m_pFirstCodeLabel = NULL;
m_pFirstLabelRef = NULL;
m_pPatchLabel = NULL;
m_pTargetMethod = NULL;
m_stackSize = 0;
m_fDataOnly = FALSE;
#ifdef TARGET_ARM
m_fProlog = FALSE;
m_cCalleeSavedRegs = 0;
m_cbStackFrame = 0;
m_fPushArgRegs = FALSE;
#endif
#ifdef STUBLINKER_GENERATES_UNWIND_INFO
#ifdef _DEBUG
m_pUnwindInfoCheckLabel = NULL;
#endif
#ifdef TARGET_AMD64
m_pUnwindInfoList = NULL;
m_nUnwindSlots = 0;
m_fHaveFramePointer = FALSE;
#endif
#ifdef TARGET_ARM64
m_fProlog = FALSE;
m_cIntRegArgs = 0;
m_cVecRegArgs = 0;
m_cCalleeSavedRegs = 0;
m_cbStackSpace = 0;
#endif
#endif // STUBLINKER_GENERATES_UNWIND_INFO
}
//---------------------------------------------------------------
// Append code bytes.
//---------------------------------------------------------------
VOID StubLinker::EmitBytes(const BYTE *pBytes, UINT numBytes)
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeElement *pLastCodeElement = GetLastCodeElement();
while (numBytes != 0) {
if (pLastCodeElement != NULL &&
pLastCodeElement->m_type == CodeElement::kCodeRun) {
CodeRun *pCodeRun = (CodeRun*)pLastCodeElement;
UINT numbytessrc = numBytes;
UINT numbytesdst = CODERUNSIZE - pCodeRun->m_numcodebytes;
if (numbytesdst <= numbytessrc) {
CopyMemory(&(pCodeRun->m_codebytes[pCodeRun->m_numcodebytes]),
pBytes,
numbytesdst);
pCodeRun->m_numcodebytes = CODERUNSIZE;
pLastCodeElement = NULL;
pBytes += numbytesdst;
numBytes -= numbytesdst;
} else {
CopyMemory(&(pCodeRun->m_codebytes[pCodeRun->m_numcodebytes]),
pBytes,
numbytessrc);
pCodeRun->m_numcodebytes += numbytessrc;
pBytes += numbytessrc;
numBytes = 0;
}
} else {
pLastCodeElement = AppendNewEmptyCodeRun();
}
}
}
//---------------------------------------------------------------
// Append code bytes.
//---------------------------------------------------------------
VOID StubLinker::Emit8 (unsigned __int8 val)
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeRun *pCodeRun = GetLastCodeRunIfAny();
if (pCodeRun && (CODERUNSIZE - pCodeRun->m_numcodebytes) >= sizeof(val)) {
*((unsigned __int8 *)(pCodeRun->m_codebytes + pCodeRun->m_numcodebytes)) = val;
pCodeRun->m_numcodebytes += sizeof(val);
} else {
EmitBytes((BYTE*)&val, sizeof(val));
}
}
//---------------------------------------------------------------
// Append code bytes.
//---------------------------------------------------------------
VOID StubLinker::Emit16(unsigned __int16 val)
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeRun *pCodeRun = GetLastCodeRunIfAny();
if (pCodeRun && (CODERUNSIZE - pCodeRun->m_numcodebytes) >= sizeof(val)) {
SET_UNALIGNED_16(pCodeRun->m_codebytes + pCodeRun->m_numcodebytes, val);
pCodeRun->m_numcodebytes += sizeof(val);
} else {
EmitBytes((BYTE*)&val, sizeof(val));
}
}
//---------------------------------------------------------------
// Append code bytes.
//---------------------------------------------------------------
VOID StubLinker::Emit32(unsigned __int32 val)
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeRun *pCodeRun = GetLastCodeRunIfAny();
if (pCodeRun && (CODERUNSIZE - pCodeRun->m_numcodebytes) >= sizeof(val)) {
SET_UNALIGNED_32(pCodeRun->m_codebytes + pCodeRun->m_numcodebytes, val);
pCodeRun->m_numcodebytes += sizeof(val);
} else {
EmitBytes((BYTE*)&val, sizeof(val));
}
}
//---------------------------------------------------------------
// Append code bytes.
//---------------------------------------------------------------
VOID StubLinker::Emit64(unsigned __int64 val)
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeRun *pCodeRun = GetLastCodeRunIfAny();
if (pCodeRun && (CODERUNSIZE - pCodeRun->m_numcodebytes) >= sizeof(val)) {
SET_UNALIGNED_64(pCodeRun->m_codebytes + pCodeRun->m_numcodebytes, val);
pCodeRun->m_numcodebytes += sizeof(val);
} else {
EmitBytes((BYTE*)&val, sizeof(val));
}
}
//---------------------------------------------------------------
// Append pointer value.
//---------------------------------------------------------------
VOID StubLinker::EmitPtr(const VOID *val)
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeRun *pCodeRun = GetLastCodeRunIfAny();
if (pCodeRun && (CODERUNSIZE - pCodeRun->m_numcodebytes) >= sizeof(val)) {
SET_UNALIGNED_PTR(pCodeRun->m_codebytes + pCodeRun->m_numcodebytes, (UINT_PTR)val);
pCodeRun->m_numcodebytes += sizeof(val);
} else {
EmitBytes((BYTE*)&val, sizeof(val));
}
}
//---------------------------------------------------------------
// Create a new undefined label. Label must be assigned to a code
// location using EmitLabel() prior to final linking.
// Throws COM+ exception on failure.
//---------------------------------------------------------------
CodeLabel* StubLinker::NewCodeLabel()
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeLabel *pCodeLabel = (CodeLabel*)(m_quickHeap.Alloc(sizeof(CodeLabel)));
_ASSERTE(pCodeLabel); // QuickHeap throws exceptions rather than returning NULL
pCodeLabel->m_next = m_pFirstCodeLabel;
pCodeLabel->m_fExternal = FALSE;
pCodeLabel->m_fAbsolute = FALSE;
pCodeLabel->i.m_pCodeRun = NULL;
m_pFirstCodeLabel = pCodeLabel;
return pCodeLabel;
}
CodeLabel* StubLinker::NewAbsoluteCodeLabel()
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeLabel *pCodeLabel = NewCodeLabel();
pCodeLabel->m_fAbsolute = TRUE;
return pCodeLabel;
}
//---------------------------------------------------------------
// Sets the label to point to the current "instruction pointer".
// It is invalid to call EmitLabel() twice on
// the same label.
//---------------------------------------------------------------
VOID StubLinker::EmitLabel(CodeLabel* pCodeLabel)
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
_ASSERTE(!(pCodeLabel->m_fExternal)); //can't emit an external label
_ASSERTE(pCodeLabel->i.m_pCodeRun == NULL); //must only emit label once
CodeRun *pLastCodeRun = GetLastCodeRunIfAny();
if (!pLastCodeRun) {
pLastCodeRun = AppendNewEmptyCodeRun();
}
pCodeLabel->i.m_pCodeRun = pLastCodeRun;
pCodeLabel->i.m_localOffset = pLastCodeRun->m_numcodebytes;
}
//---------------------------------------------------------------
// Combines NewCodeLabel() and EmitLabel() for convenience.
// Throws COM+ exception on failure.
//---------------------------------------------------------------
CodeLabel* StubLinker::EmitNewCodeLabel()
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeLabel* label = NewCodeLabel();
EmitLabel(label);
return label;
}
//---------------------------------------------------------------
// Creates & emits the patch offset label for the stub
//---------------------------------------------------------------
VOID StubLinker::EmitPatchLabel()
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
//
// Note that it's OK to have re-emit the patch label,
// just use the later one.
//
m_pPatchLabel = EmitNewCodeLabel();
}
//---------------------------------------------------------------
// Returns final location of label as an offset from the start
// of the stub. Can only be called after linkage.
//---------------------------------------------------------------
UINT32 StubLinker::GetLabelOffset(CodeLabel *pLabel)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
}
CONTRACTL_END;
_ASSERTE(!(pLabel->m_fExternal));
return pLabel->i.m_localOffset + pLabel->i.m_pCodeRun->m_globaloffset;
}
//---------------------------------------------------------------
// Create a new label to an external address.
// Throws COM+ exception on failure.
//---------------------------------------------------------------
CodeLabel* StubLinker::NewExternalCodeLabel(LPVOID pExternalAddress)
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
PRECONDITION(CheckPointer(pExternalAddress));
}
CONTRACTL_END;
CodeLabel *pCodeLabel = (CodeLabel*)(m_quickHeap.Alloc(sizeof(CodeLabel)));
_ASSERTE(pCodeLabel); // QuickHeap throws exceptions rather than returning NULL
pCodeLabel->m_next = m_pFirstCodeLabel;
pCodeLabel->m_fExternal = TRUE;
pCodeLabel->m_fAbsolute = FALSE;
pCodeLabel->e.m_pExternalAddress = pExternalAddress;
m_pFirstCodeLabel = pCodeLabel;
return pCodeLabel;
}
//---------------------------------------------------------------
// Set the target method for Instantiating stubs.
//---------------------------------------------------------------
void StubLinker::SetTargetMethod(PTR_MethodDesc pMD)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
PRECONDITION(pMD != NULL);
}
CONTRACTL_END;
m_pTargetMethod = pMD;
}
//---------------------------------------------------------------
// Append an instruction containing a reference to a label.
//
// target - the label being referenced.
// instructionFormat - a platform-specific InstructionFormat object
// that gives properties about the reference.
// variationCode - uninterpreted data passed to the pInstructionFormat methods.
//---------------------------------------------------------------
VOID StubLinker::EmitLabelRef(CodeLabel* target, const InstructionFormat & instructionFormat, UINT variationCode)
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
LabelRef *pLabelRef = (LabelRef *)(m_quickHeap.Alloc(sizeof(LabelRef)));
_ASSERTE(pLabelRef); // m_quickHeap throws an exception rather than returning NULL
pLabelRef->m_type = LabelRef::kLabelRef;
pLabelRef->m_pInstructionFormat = (InstructionFormat*)&instructionFormat;
pLabelRef->m_variationCode = variationCode;
pLabelRef->m_target = target;
pLabelRef->m_nextLabelRef = m_pFirstLabelRef;
m_pFirstLabelRef = pLabelRef;
AppendCodeElement(pLabelRef);
}
//---------------------------------------------------------------
// Internal helper routine.
//---------------------------------------------------------------
CodeRun *StubLinker::GetLastCodeRunIfAny()
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeElement *pLastCodeElem = GetLastCodeElement();
if (pLastCodeElem == NULL || pLastCodeElem->m_type != CodeElement::kCodeRun) {
return NULL;
} else {
return (CodeRun*)pLastCodeElem;
}
}
//---------------------------------------------------------------
// Internal helper routine.
//---------------------------------------------------------------
CodeRun *StubLinker::AppendNewEmptyCodeRun()
{
CONTRACTL
{
THROWS;
GC_NOTRIGGER;
}
CONTRACTL_END;
CodeRun *pNewCodeRun = (CodeRun*)(m_quickHeap.Alloc(sizeof(CodeRun)));
_ASSERTE(pNewCodeRun); // QuickHeap throws exceptions rather than returning NULL
pNewCodeRun->m_type = CodeElement::kCodeRun;
pNewCodeRun->m_numcodebytes = 0;
AppendCodeElement(pNewCodeRun);
return pNewCodeRun;
}
//---------------------------------------------------------------
// Internal helper routine.
//---------------------------------------------------------------
VOID StubLinker::AppendCodeElement(CodeElement *pCodeElement)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
}
CONTRACTL_END;
pCodeElement->m_next = m_pCodeElements;
m_pCodeElements = pCodeElement;
}
//---------------------------------------------------------------
// Is the current LabelRef's size big enough to reach the target?
//---------------------------------------------------------------
static BOOL LabelCanReach(LabelRef *pLabelRef)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
}
CONTRACTL_END;
InstructionFormat *pIF = pLabelRef->m_pInstructionFormat;
if (pLabelRef->m_target->m_fExternal)
{
return pLabelRef->m_pInstructionFormat->CanReach(
pLabelRef->m_refsize, pLabelRef->m_variationCode, TRUE, (INT_PTR)pLabelRef->m_target->e.m_pExternalAddress);
}
else
{
UINT targetglobaloffset = pLabelRef->m_target->i.m_pCodeRun->m_globaloffset +
pLabelRef->m_target->i.m_localOffset;
UINT srcglobaloffset = pLabelRef->m_globaloffset +
pIF->GetHotSpotOffset(pLabelRef->m_refsize,
pLabelRef->m_variationCode);
INT offset = (INT)(targetglobaloffset - srcglobaloffset);
return pLabelRef->m_pInstructionFormat->CanReach(
pLabelRef->m_refsize, pLabelRef->m_variationCode, FALSE, offset);
}
}
//---------------------------------------------------------------
// Generate the actual stub. The returned stub has a refcount of 1.
// No other methods (other than the destructor) should be called
// after calling Link().
//
// Throws COM+ exception on failure.
//---------------------------------------------------------------
Stub *StubLinker::Link(LoaderHeap *pHeap, DWORD flags)
{
STANDARD_VM_CONTRACT;
int globalsize = 0;
int size = CalculateSize(&globalsize);
_ASSERTE(!pHeap || pHeap->IsExecutable());
StubHolder<Stub> pStub;
#ifdef STUBLINKER_GENERATES_UNWIND_INFO
StubUnwindInfoSegmentBoundaryReservationList ReservedStubs;
for (;;)
#endif
{
pStub = Stub::NewStub(
pHeap,
size,
flags
#ifdef STUBLINKER_GENERATES_UNWIND_INFO
, UnwindInfoSize(globalsize)
#endif
);
ASSERT(pStub != NULL);
bool fSuccess = EmitStub(pStub, globalsize, size, pHeap);
#ifdef STUBLINKER_GENERATES_UNWIND_INFO
if (fSuccess)
{
break;
}
else
{
ReservedStubs.AddStub(pStub);
pStub.SuppressRelease();
}
#else
CONSISTENCY_CHECK_MSG(fSuccess, ("EmitStub should always return true"));
#endif
}
return pStub.Extract();
}
int StubLinker::CalculateSize(int* pGlobalSize)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
}
CONTRACTL_END;
_ASSERTE(pGlobalSize);
#if defined(_DEBUG) && defined(STUBLINKER_GENERATES_UNWIND_INFO)
if (m_pUnwindInfoCheckLabel)
{
EmitLabel(m_pUnwindInfoCheckLabel);
EmitUnwindInfoCheckSubfunction();
m_pUnwindInfoCheckLabel = NULL;
}
#endif
#ifdef _DEBUG
// Don't want any undefined labels
for (CodeLabel *pCodeLabel = m_pFirstCodeLabel;
pCodeLabel != NULL;
pCodeLabel = pCodeLabel->m_next) {
if ((!(pCodeLabel->m_fExternal)) && pCodeLabel->i.m_pCodeRun == NULL) {
_ASSERTE(!"Forgot to define a label before asking StubLinker to link.");
}
}
#endif //_DEBUG
//-------------------------------------------------------------------
// Tentatively set all of the labelref sizes to their smallest possible
// value.
//-------------------------------------------------------------------
for (LabelRef *pLabelRef = m_pFirstLabelRef;
pLabelRef != NULL;
pLabelRef = pLabelRef->m_nextLabelRef) {
for (UINT bitmask = 1; bitmask <= InstructionFormat::kMax; bitmask = bitmask << 1) {
if (pLabelRef->m_pInstructionFormat->m_allowedSizes & bitmask) {
pLabelRef->m_refsize = bitmask;
break;
}
}
}
UINT globalsize;
UINT datasize;
BOOL fSomethingChanged;
do {
fSomethingChanged = FALSE;
// Layout each code element.
globalsize = 0;
datasize = 0;
CodeElement *pCodeElem;
for (pCodeElem = m_pCodeElements; pCodeElem; pCodeElem = pCodeElem->m_next) {
switch (pCodeElem->m_type) {
case CodeElement::kCodeRun:
globalsize += ((CodeRun*)pCodeElem)->m_numcodebytes;
break;
case CodeElement::kLabelRef: {
LabelRef *pLabelRef = (LabelRef*)pCodeElem;
globalsize += pLabelRef->m_pInstructionFormat->GetSizeOfInstruction( pLabelRef->m_refsize,
pLabelRef->m_variationCode );
datasize += pLabelRef->m_pInstructionFormat->GetSizeOfData( pLabelRef->m_refsize,
pLabelRef->m_variationCode );
}
break;
default:
_ASSERTE(0);
}
// Record a temporary global offset; this is actually
// wrong by a fixed value. We'll fix up after we know the
// size of the entire stub.
pCodeElem->m_globaloffset = 0 - globalsize;
// also record the data offset. Note the link-list we walk is in
// *reverse* order so we visit the last instruction first
// so what we record now is in fact the offset from the *end* of
// the data block. We fix it up later.
pCodeElem->m_dataoffset = 0 - datasize;
}
// Now fix up the global offsets.
for (pCodeElem = m_pCodeElements; pCodeElem; pCodeElem = pCodeElem->m_next) {
pCodeElem->m_globaloffset += globalsize;
pCodeElem->m_dataoffset += datasize;
}
// Now, iterate thru the LabelRef's and check if any of them
// have to be resized.
for (LabelRef *pLabelRef = m_pFirstLabelRef;
pLabelRef != NULL;
pLabelRef = pLabelRef->m_nextLabelRef) {
if (!LabelCanReach(pLabelRef)) {
fSomethingChanged = TRUE;
UINT bitmask = pLabelRef->m_refsize << 1;
// Find the next largest size.
// (we could be smarter about this and eliminate intermediate
// sizes based on the tentative offset.)
for (; bitmask <= InstructionFormat::kMax; bitmask = bitmask << 1) {
if (pLabelRef->m_pInstructionFormat->m_allowedSizes & bitmask) {
pLabelRef->m_refsize = bitmask;
break;
}
}
#ifdef _DEBUG
if (bitmask > InstructionFormat::kMax) {