summaryrefslogtreecommitdiff
path: root/src/vm/binder.h
blob: ad80292ea0a4b7d5e0a517500a8c4a04ef876659 (plain)
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.


#ifndef _BINDERMODULE_H_
#define _BINDERMODULE_H_

class DataImage;
class Module;
class MethodTable;
class MethodDesc;
class FieldDesc;

typedef const struct HardCodedMetaSig *LPHARDCODEDMETASIG;

// As hard-coded metasigs are constant data ordinarily it
// wouldn't be necessary to use PTR access.  However, access
// through the Binder class requires it.
typedef DPTR(const struct HardCodedMetaSig) PTR_HARDCODEDMETASIG;

struct HardCodedMetaSig
{
    const BYTE* m_pMetaSig; // metasig prefixed with INT8 length:
                            // length > 0 - resolved, lenght < 0 - has unresolved type references
};

#define DEFINE_METASIG(body)            extern const body
#define DEFINE_METASIG_T(body)          extern body
#define METASIG_BODY(varname, types)    HardCodedMetaSig gsig_ ## varname;
#include "metasig.h"

//
// Use the Binder objects to avoid doing unnecessary name lookup 
// (esp. in the prejit case) 
//
// E.g. MscorlibBinder::GetClass(CLASS__APP_DOMAIN);
// 

// BinderClassIDs are of the form CLASS__XXX

enum BinderClassID
{
#define TYPEINFO(e,ns,c,s,g,ia,ip,if,im,gv)   CLASS__ ## e,
#include "cortypeinfo.h"
#undef TYPEINFO

#define DEFINE_CLASS(i,n,s)         CLASS__ ## i,
#include "mscorlib.h"

    CLASS__MSCORLIB_COUNT,

    // Aliases for element type classids
    CLASS__NIL      = CLASS__ELEMENT_TYPE_END,
    CLASS__VOID     = CLASS__ELEMENT_TYPE_VOID,
    CLASS__BOOLEAN  = CLASS__ELEMENT_TYPE_BOOLEAN,
    CLASS__CHAR     = CLASS__ELEMENT_TYPE_CHAR,
    CLASS__BYTE     = CLASS__ELEMENT_TYPE_U1,
    CLASS__SBYTE    = CLASS__ELEMENT_TYPE_I1,
    CLASS__INT16    = CLASS__ELEMENT_TYPE_I2,
    CLASS__UINT16   = CLASS__ELEMENT_TYPE_U2,
    CLASS__INT32    = CLASS__ELEMENT_TYPE_I4,
    CLASS__UINT32   = CLASS__ELEMENT_TYPE_U4,
    CLASS__INT64    = CLASS__ELEMENT_TYPE_I8,
    CLASS__UINT64   = CLASS__ELEMENT_TYPE_U8,
    CLASS__SINGLE   = CLASS__ELEMENT_TYPE_R4,
    CLASS__DOUBLE   = CLASS__ELEMENT_TYPE_R8,
    CLASS__STRING   = CLASS__ELEMENT_TYPE_STRING,
    CLASS__TYPED_REFERENCE = CLASS__ELEMENT_TYPE_TYPEDBYREF,
    CLASS__INTPTR   = CLASS__ELEMENT_TYPE_I,
    CLASS__UINTPTR  = CLASS__ELEMENT_TYPE_U,
    CLASS__OBJECT   = CLASS__ELEMENT_TYPE_OBJECT
};


// BinderMethodIDs are of the form METHOD__XXX__YYY, 
// where X is the class and Y is the method

enum BinderMethodID : int
{
    METHOD__NIL = 0,

#define DEFINE_METHOD(c,i,s,g)      METHOD__ ## c ## __ ## i,
#include "mscorlib.h"

    METHOD__MSCORLIB_COUNT,
};

// BinderFieldIDs are of the form FIELD__XXX__YYY, 
// where X is the class and Y is the field

enum BinderFieldID
{
    FIELD__NIL = 0,

#define DEFINE_FIELD(c,i,s)                 FIELD__ ## c ## __ ## i,
#include "mscorlib.h"

    FIELD__MSCORLIB_COUNT,
};

struct MscorlibClassDescription
{
    PTR_CSTR nameSpace;
    PTR_CSTR name;
};

struct MscorlibMethodDescription
{
    BinderClassID classID;
    PTR_CSTR name;
    PTR_HARDCODEDMETASIG sig;
};

struct MscorlibFieldDescription
{
    BinderClassID classID;
    PTR_CSTR name;
};

class MscorlibBinder
{
  public:
#ifdef DACCESS_COMPILE
    friend class NativeImageDumper;
#endif

    //
    // Note that the frequently called methods are intentionally static to reduce code bloat.
    // Instance methods would push the address of the global object at every callsite.
    //

    static PTR_Module GetModule();

    //
    // Retrieve structures from ID.
    // 
    // Note that none of the MscorlibBinder methods trigger static
    // constructors. The JITed code takes care of triggering them.
    //
    static PTR_MethodTable GetClass(BinderClassID id);
    static MethodDesc * GetMethod(BinderMethodID id);
    static FieldDesc * GetField(BinderFieldID id);

    //
    // A slighly faster version that assumes that the class was fetched
    // by the binder earlier.
    //
    static PTR_MethodTable GetExistingClass(BinderClassID id);
    static MethodDesc * GetExistingMethod(BinderMethodID id);
    static FieldDesc * GetExistingField(BinderFieldID id);

    //
    // Utilities for classes
    //
    static FORCEINLINE BOOL IsClass(MethodTable *pMT, BinderClassID id)
    {
        return dac_cast<TADDR>(GetClass(id)) == dac_cast<TADDR>(pMT);
    }

    // Get the class only if it has been loaded already
    static PTR_MethodTable GetClassIfExist(BinderClassID id);

    static LPCUTF8 GetClassNameSpace(BinderClassID id);
    static LPCUTF8 GetClassName(BinderClassID id);

    //
    // Utilities for methods
    // 
    static LPCUTF8 GetMethodName(BinderMethodID id);
    static LPHARDCODEDMETASIG GetMethodSig(BinderMethodID id);

    static Signature GetMethodSignature(BinderMethodID id)
    {
        WRAPPER_NO_CONTRACT;
        return GetSignature(GetMethodSig(id));
    }

    //
    // Utilities for fields
    // 
    static LPCUTF8 GetFieldName(BinderFieldID id);

    static DWORD GetFieldOffset(BinderFieldID id);

    //
    // Utilities for exceptions
    //

    static MethodTable *GetException(RuntimeExceptionKind kind)
    {
        WRAPPER_NO_CONTRACT;
        _ASSERTE(kind <= kLastExceptionInMscorlib);  // Not supported for exceptions defined outside mscorlib.
        BinderClassID id = (BinderClassID) (kind + CLASS__MSCORLIB_COUNT);
        return GetClass(id);
    }

    static BOOL IsException(MethodTable *pMT, RuntimeExceptionKind kind)
    {
        WRAPPER_NO_CONTRACT;
        _ASSERTE(kind <= kLastExceptionInMscorlib);  // Not supported for exceptions defined outside mscorlib.
        BinderClassID id = (BinderClassID) (kind + CLASS__MSCORLIB_COUNT);
        return dac_cast<TADDR>(GetClassIfExist(id)) == dac_cast<TADDR>(pMT);
    }

    static LPCUTF8 GetExceptionName(RuntimeExceptionKind kind)
    {
        WRAPPER_NO_CONTRACT;
        _ASSERTE(kind <= kLastExceptionInMscorlib);  // Not supported for exceptions defined outside mscorlib.
        BinderClassID id = (BinderClassID) (kind + CLASS__MSCORLIB_COUNT);
        return GetClassName(id);
    }

    //
    // Utilities for signature element types
    //

    static PTR_MethodTable GetElementType(CorElementType type)
    {
        LIMITED_METHOD_DAC_CONTRACT;
        return GetExistingClass((BinderClassID) (type));
    }

    // This should be called during CLR initialization only
    static PTR_MethodTable LoadPrimitiveType(CorElementType et);

    // Get the metasig, do a one-time conversion if necessary
    static Signature GetSignature(LPHARDCODEDMETASIG pHardcodedSig);
    static Signature GetTargetSignature(LPHARDCODEDMETASIG pHardcodedSig);

    //
    // Static initialization
    //
    static void Startup();

    //
    // These are called by initialization code:
    //
    static void AttachModule(Module *pModule);

#ifdef FEATURE_PREJIT
    //
    // Store the binding arrays to a prejit image
    // so we don't have to do name lookup at runtime
    //
    void BindAll();
    void Save(DataImage *image);
    void Fixup(DataImage *image);
#endif

#ifdef _DEBUG
    void Check();
    void CheckExtended();
#endif

#ifdef DACCESS_COMPILE
    void EnumMemoryRegions(CLRDataEnumMemoryFlags flags);
#endif

private:

    // We have two different instances of the binder in crossgen. The instance local methods
    // are used when it is necessary to differentiate between them.
    PTR_MethodTable LookupClassLocal(BinderClassID id);
    MethodDesc * LookupMethodLocal(BinderMethodID id);
    FieldDesc * LookupFieldLocal(BinderFieldID id);

    PTR_MethodTable GetClassLocal(BinderClassID id);
    MethodDesc * GetMethodLocal(BinderMethodID id);
    FieldDesc * GetFieldLocal(BinderFieldID id);

    static PTR_MethodTable LookupClass(BinderClassID id);
    static MethodDesc * LookupMethod(BinderMethodID id);
    static FieldDesc * LookupField(BinderFieldID id);

    static PTR_MethodTable LookupClassIfExist(BinderClassID id);

    Signature GetSignatureLocal(LPHARDCODEDMETASIG pHardcodedSig);

    bool ConvertType(const BYTE*& pSig, SigBuilder * pSigBuilder);
    void BuildConvertedSignature(const BYTE* pSig, SigBuilder * pSigBuilder);
    const BYTE* ConvertSignature(LPHARDCODEDMETASIG pHardcodedSig, const BYTE* pSig);

    void SetDescriptions(Module * pModule, 
        const MscorlibClassDescription * pClassDescriptions, USHORT nClasses,
        const MscorlibMethodDescription * pMethodDescriptions, USHORT nMethods,
        const MscorlibFieldDescription * pFieldDescriptions, USHORT nFields);

    void AllocateTables();

#ifdef _DEBUG
    static void TriggerGCUnderStress();
#endif

    PTR_Module m_pModule;

    DPTR(PTR_MethodTable) m_pClasses;
    DPTR(PTR_MethodDesc) m_pMethods;
    DPTR(PTR_FieldDesc) m_pFields;

    // This is necessary to avoid embeding copy of the descriptions into mscordacwks
    DPTR(const MscorlibClassDescription) m_classDescriptions;
    DPTR(const MscorlibMethodDescription) m_methodDescriptions;
    DPTR(const MscorlibFieldDescription) m_fieldDescriptions;

    USHORT m_cClasses;
    USHORT m_cMethods;
    USHORT m_cFields;

    static CrstStatic s_SigConvertCrst;

#ifdef _DEBUG
  
    struct OffsetAndSizeCheck
    {
        PTR_CSTR classNameSpace;
        PTR_CSTR className;
        SIZE_T expectedClassSize;

        PTR_CSTR fieldName;
        SIZE_T expectedFieldOffset;
        SIZE_T expectedFieldSize;
    };

    static const OffsetAndSizeCheck OffsetsAndSizes[];

#endif
};

//
// Global bound modules:
// 

GVAL_DECL(MscorlibBinder, g_Mscorlib);

FORCEINLINE PTR_MethodTable MscorlibBinder::GetClass(BinderClassID id)
{
    CONTRACTL
    {
        THROWS;
        GC_TRIGGERS;
        INJECT_FAULT(ThrowOutOfMemory());

        PRECONDITION(id != CLASS__NIL);
        PRECONDITION((&g_Mscorlib)->m_cClasses > 0);  // Make sure mscorlib has been loaded.
        PRECONDITION(id <= (&g_Mscorlib)->m_cClasses);
    }
    CONTRACTL_END;

    // Force a GC here under stress because type loading could trigger GC nondeterminsticly
    INDEBUG(TriggerGCUnderStress());

    PTR_MethodTable pMT = VolatileLoad(&((&g_Mscorlib)->m_pClasses[id]));
    if (pMT == NULL) 
        return LookupClass(id);
    return pMT;
}

FORCEINLINE MethodDesc * MscorlibBinder::GetMethod(BinderMethodID id)
{
    CONTRACTL
    {
        THROWS;
        GC_TRIGGERS;
        INJECT_FAULT(ThrowOutOfMemory());

        PRECONDITION(id != METHOD__NIL);
        PRECONDITION(id <= (&g_Mscorlib)->m_cMethods);
    }
    CONTRACTL_END;

    // Force a GC here under stress because type loading could trigger GC nondeterminsticly
    INDEBUG(TriggerGCUnderStress());

    MethodDesc * pMD = VolatileLoad(&((&g_Mscorlib)->m_pMethods[id]));
    if (pMD == NULL) 
        return LookupMethod(id);
    return pMD;
}

FORCEINLINE FieldDesc * MscorlibBinder::GetField(BinderFieldID id)
{
    CONTRACTL
    {
        THROWS;
        GC_TRIGGERS;
        INJECT_FAULT(ThrowOutOfMemory());

        PRECONDITION(id != FIELD__NIL);
        PRECONDITION(id <= (&g_Mscorlib)->m_cFields);
    }
    CONTRACTL_END;

    // Force a GC here under stress because type loading could trigger GC nondeterminsticly
    INDEBUG(TriggerGCUnderStress());

    FieldDesc * pFD = VolatileLoad(&((&g_Mscorlib)->m_pFields[id]));
    if (pFD == NULL) 
        return LookupField(id);
    return pFD;
}

FORCEINLINE PTR_MethodTable MscorlibBinder::GetExistingClass(BinderClassID id)
{
    LIMITED_METHOD_DAC_CONTRACT;
    PTR_MethodTable pMT = (&g_Mscorlib)->m_pClasses[id];
    _ASSERTE(pMT != NULL);
    return pMT;
}

FORCEINLINE MethodDesc * MscorlibBinder::GetExistingMethod(BinderMethodID id)
{
    LIMITED_METHOD_DAC_CONTRACT;
    MethodDesc * pMD = (&g_Mscorlib)->m_pMethods[id];
    _ASSERTE(pMD != NULL);
    return pMD;
}

FORCEINLINE FieldDesc * MscorlibBinder::GetExistingField(BinderFieldID id)
{
    LIMITED_METHOD_DAC_CONTRACT;
    FieldDesc * pFD = (&g_Mscorlib)->m_pFields[id];
    _ASSERTE(pFD != NULL);
    return pFD;
}

FORCEINLINE PTR_MethodTable MscorlibBinder::GetClassIfExist(BinderClassID id)
{
    CONTRACTL
    {
        GC_NOTRIGGER; 
        NOTHROW;
        FORBID_FAULT;
        MODE_ANY;

        PRECONDITION(id != CLASS__NIL);
        PRECONDITION(id <= (&g_Mscorlib)->m_cClasses);
    }
    CONTRACTL_END;

    PTR_MethodTable pMT = VolatileLoad(&((&g_Mscorlib)->m_pClasses[id]));
    if (pMT == NULL) 
        return LookupClassIfExist(id);
    return pMT;
}


FORCEINLINE PTR_Module MscorlibBinder::GetModule()
{
    LIMITED_METHOD_DAC_CONTRACT;
    PTR_Module pModule = (&g_Mscorlib)->m_pModule;
    _ASSERTE(pModule != NULL);
    return pModule;
}

FORCEINLINE LPCUTF8 MscorlibBinder::GetClassNameSpace(BinderClassID id)
{ 
    LIMITED_METHOD_CONTRACT;

    _ASSERTE(id != CLASS__NIL);
    _ASSERTE(id <= (&g_Mscorlib)->m_cClasses);
    return (&g_Mscorlib)->m_classDescriptions[id].nameSpace;
}

FORCEINLINE LPCUTF8 MscorlibBinder::GetClassName(BinderClassID id)
{ 
    LIMITED_METHOD_CONTRACT;

    _ASSERTE(id != CLASS__NIL);
    _ASSERTE(id <= (&g_Mscorlib)->m_cClasses);
    return (&g_Mscorlib)->m_classDescriptions[id].name;
}

FORCEINLINE LPCUTF8 MscorlibBinder::GetMethodName(BinderMethodID id)
{ 
    LIMITED_METHOD_CONTRACT;

    _ASSERTE(id != METHOD__NIL);
    _ASSERTE(id <= (&g_Mscorlib)->m_cMethods);
    return (&g_Mscorlib)->m_methodDescriptions[id-1].name;
}

FORCEINLINE LPHARDCODEDMETASIG MscorlibBinder::GetMethodSig(BinderMethodID id)
{
    LIMITED_METHOD_CONTRACT;

    _ASSERTE(id != METHOD__NIL);
    _ASSERTE(id <= (&g_Mscorlib)->m_cMethods);
    return (&g_Mscorlib)->m_methodDescriptions[id-1].sig;
}

FORCEINLINE LPCUTF8 MscorlibBinder::GetFieldName(BinderFieldID id)
{ 
    LIMITED_METHOD_CONTRACT;

    _ASSERTE(id != FIELD__NIL);
    _ASSERTE(id <= (&g_Mscorlib)->m_cFields);
    return (&g_Mscorlib)->m_fieldDescriptions[id-1].name;
}

#endif // _BINDERMODULE_H_