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
|
// 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.
// precode.h
//
//
// Stub that runs before the actual native code
#ifndef __PRECODE_H__
#define __PRECODE_H__
typedef DPTR(class Precode) PTR_Precode;
#ifndef PRECODE_ALIGNMENT
#define PRECODE_ALIGNMENT sizeof(void*)
#endif
enum PrecodeType {
PRECODE_INVALID = InvalidPrecode::Type,
PRECODE_STUB = StubPrecode::Type,
#ifdef HAS_NDIRECT_IMPORT_PRECODE
PRECODE_NDIRECT_IMPORT = NDirectImportPrecode::Type,
#endif // HAS_NDIRECT_IMPORT_PRECODE
#ifdef HAS_REMOTING_PRECODE
PRECODE_REMOTING = RemotingPrecode::Type,
#endif // HAS_REMOTING_PRECODE
#ifdef HAS_FIXUP_PRECODE
PRECODE_FIXUP = FixupPrecode::Type,
#endif // HAS_FIXUP_PRECODE
#ifdef HAS_THISPTR_RETBUF_PRECODE
PRECODE_THISPTR_RETBUF = ThisPtrRetBufPrecode::Type,
#endif // HAS_THISPTR_RETBUF_PRECODE
};
// For more details see. file:../../doc/BookOfTheRuntime/ClassLoader/MethodDescDesign.doc
class Precode {
#ifdef DACCESS_COMPILE
friend class NativeImageDumper;
#endif
BYTE m_data[SIZEOF_PRECODE_BASE];
StubPrecode* AsStubPrecode()
{
LIMITED_METHOD_CONTRACT;
SUPPORTS_DAC;
return dac_cast<PTR_StubPrecode>(this);
}
#ifdef HAS_NDIRECT_IMPORT_PRECODE
public:
// Fake precodes has to be exposed
NDirectImportPrecode* AsNDirectImportPrecode()
{
LIMITED_METHOD_CONTRACT;
SUPPORTS_DAC;
return dac_cast<PTR_NDirectImportPrecode>(this);
}
private:
#endif // HAS_NDIRECT_IMPORT_PRECODE
#ifdef HAS_REMOTING_PRECODE
RemotingPrecode* AsRemotingPrecode()
{
LIMITED_METHOD_CONTRACT;
SUPPORTS_DAC;
return dac_cast<PTR_RemotingPrecode>(this);
}
#endif // HAS_REMOTING_PRECODE
#ifdef HAS_FIXUP_PRECODE
FixupPrecode* AsFixupPrecode()
{
LIMITED_METHOD_CONTRACT;
SUPPORTS_DAC;
return dac_cast<PTR_FixupPrecode>(this);
}
#endif // HAS_FIXUP_PRECODE
#ifdef HAS_THISPTR_RETBUF_PRECODE
ThisPtrRetBufPrecode* AsThisPtrRetBufPrecode()
{
LIMITED_METHOD_CONTRACT;
SUPPORTS_DAC;
return dac_cast<PTR_ThisPtrRetBufPrecode>(this);
}
#endif // HAS_THISPTR_RETBUF_PRECODE
TADDR GetStart()
{
SUPPORTS_DAC;
LIMITED_METHOD_CONTRACT;
return dac_cast<TADDR>(this);
}
static void UnexpectedPrecodeType(const char * originator, PrecodeType precodeType)
{
SUPPORTS_DAC;
#ifdef DACCESS_COMPILE
DacError(E_UNEXPECTED);
#else
#ifdef _PREFIX_
// We only use __UNREACHABLE here since otherwise it would be a hint
// for the compiler to fold this case with the other cases in a switch
// statement. However, we would rather have this case be a separate
// code path so that we will get a clean crash sooner.
__UNREACHABLE("Unexpected precode type");
#endif
CONSISTENCY_CHECK_MSGF(false, ("%s: Unexpected precode type: 0x%02x.", originator, precodeType));
#endif
}
public:
PrecodeType GetType()
{
LIMITED_METHOD_CONTRACT;
SUPPORTS_DAC;
#ifdef OFFSETOF_PRECODE_TYPE
BYTE type = m_data[OFFSETOF_PRECODE_TYPE];
#ifdef _TARGET_X86_
if (type == X86_INSTR_MOV_RM_R)
type = m_data[OFFSETOF_PRECODE_TYPE_MOV_RM_R];
#endif // _TARGET_X86_
#ifdef _TARGET_AMD64_
if (type == (X86_INSTR_MOV_R10_IMM64 & 0xFF))
type = m_data[OFFSETOF_PRECODE_TYPE_MOV_R10];
else if ((type == (X86_INSTR_CALL_REL32 & 0xFF)) || (type == (X86_INSTR_JMP_REL32 & 0xFF)))
type = m_data[OFFSETOF_PRECODE_TYPE_CALL_OR_JMP];
#endif // _AMD64
#if defined(HAS_FIXUP_PRECODE) && (defined(_TARGET_X86_) || defined(_TARGET_AMD64_))
if (type == FixupPrecode::TypePrestub)
type = FixupPrecode::Type;
#endif
#ifdef _TARGET_ARM_
static_assert_no_msg(offsetof(StubPrecode, m_pTarget) == offsetof(NDirectImportPrecode, m_pMethodDesc));
// If the precode does not have thumb bit on target, it must be NDirectImportPrecode.
if (type == StubPrecode::Type && ((AsStubPrecode()->m_pTarget & THUMB_CODE) == 0))
type = NDirectImportPrecode::Type;
#endif
return (PrecodeType)type;
#else // OFFSETOF_PRECODE_TYPE
return PRECODE_STUB;
#endif // OFFSETOF_PRECODE_TYPE
}
static BOOL IsValidType(PrecodeType t);
static int AlignOf(PrecodeType t)
{
SUPPORTS_DAC;
int align = PRECODE_ALIGNMENT;
#if defined(_TARGET_X86_) && defined(HAS_FIXUP_PRECODE)
// Fixup precodes has to be aligned to allow atomic patching
if (t == PRECODE_FIXUP)
align = 8;
#endif // _TARGET_X86_ && HAS_FIXUP_PRECODE
return align;
}
static SIZE_T SizeOf(PrecodeType t);
SIZE_T SizeOf()
{
WRAPPER_NO_CONTRACT;
return SizeOf(GetType());
}
// Note: This is immediate target of the precode. It does not follow jump stub if there is one.
PCODE GetTarget();
BOOL IsPointingTo(PCODE target, PCODE addr)
{
WRAPPER_NO_CONTRACT;
SUPPORTS_DAC;
#ifdef CROSSGEN_COMPILE
// Crossgen does not create jump stubs on AMD64, so just return always false here to
// avoid non-deterministic behavior.
return FALSE;
#else // CROSSGEN_COMPILE
if (target == addr)
return TRUE;
#ifdef _TARGET_AMD64_
// Handle jump stubs
if (isJumpRel64(target)) {
target = decodeJump64(target);
if (target == addr)
return TRUE;
}
#endif // _TARGET_AMD64_
return FALSE;
#endif // CROSSGEN_COMPILE
}
BOOL IsPointingToNativeCode(PCODE pNativeCode)
{
WRAPPER_NO_CONTRACT;
SUPPORTS_DAC;
#ifdef HAS_REMOTING_PRECODE
// Remoting precode is special case
if (GetType() == PRECODE_REMOTING)
return FALSE;
#endif
return IsPointingTo(GetTarget(), pNativeCode);
}
BOOL IsPointingToPrestub(PCODE target);
BOOL IsPointingToPrestub()
{
WRAPPER_NO_CONTRACT;
return IsPointingToPrestub(GetTarget());
}
PCODE GetEntryPoint()
{
LIMITED_METHOD_CONTRACT;
return dac_cast<TADDR>(this) + GetEntryPointOffset();
}
static SIZE_T GetEntryPointOffset()
{
LIMITED_METHOD_CONTRACT;
#ifdef _TARGET_ARM_
return THUMB_CODE;
#else
return 0;
#endif
}
MethodDesc * GetMethodDesc(BOOL fSpeculative = FALSE);
BOOL IsCorrectMethodDesc(MethodDesc * pMD);
static Precode* Allocate(PrecodeType t, MethodDesc* pMD,
LoaderAllocator *pLoaderAllocator, AllocMemTracker *pamTracker);
void Init(PrecodeType t, MethodDesc* pMD, LoaderAllocator *pLoaderAllocator);
#ifndef DACCESS_COMPILE
BOOL SetTargetInterlocked(PCODE target);
// Reset precode to point to prestub
void Reset();
#endif // DACCESS_COMPILE
static Precode* GetPrecodeFromEntryPoint(PCODE addr, BOOL fSpeculative = FALSE)
{
LIMITED_METHOD_DAC_CONTRACT;
#ifdef DACCESS_COMPILE
// Always use speculative checks with DAC
fSpeculative = TRUE;
#endif
TADDR pInstr = PCODEToPINSTR(addr);
// Always do consistency check in debug
if (fSpeculative INDEBUG(|| TRUE))
{
if (!IS_ALIGNED(pInstr, PRECODE_ALIGNMENT) || !IsValidType(PTR_Precode(pInstr)->GetType()))
{
if (fSpeculative) return NULL;
_ASSERTE(!"Precode::GetPrecodeFromEntryPoint: Unexpected code in precode");
}
}
Precode* pPrecode = PTR_Precode(pInstr);
if (!fSpeculative)
{
g_IBCLogger.LogMethodPrecodeAccess(pPrecode->GetMethodDesc());
}
return pPrecode;
}
// If addr is patched fixup precode, returns address that it points to. Otherwise returns NULL.
static PCODE TryToSkipFixupPrecode(PCODE addr);
//
// Precode as temporary entrypoint
//
static SIZE_T SizeOfTemporaryEntryPoint(PrecodeType t)
{
LIMITED_METHOD_DAC_CONTRACT;
#ifdef HAS_FIXUP_PRECODE_CHUNKS
_ASSERTE(t != PRECODE_FIXUP);
#endif
return ALIGN_UP(SizeOf(t), AlignOf(t));
}
static Precode * GetPrecodeForTemporaryEntryPoint(TADDR temporaryEntryPoints, int index);
static SIZE_T SizeOfTemporaryEntryPoints(PrecodeType t, bool preallocateJumpStubs, int count);
static SIZE_T SizeOfTemporaryEntryPoints(TADDR temporaryEntryPoints, int count);
static TADDR AllocateTemporaryEntryPoints(MethodDescChunk* pChunk,
LoaderAllocator *pLoaderAllocator, AllocMemTracker *pamTracker);
#ifdef FEATURE_PREJIT
//
// NGEN stuff
//
void Save(DataImage *image);
void Fixup(DataImage *image, MethodDesc * pMD);
BOOL IsPrebound(DataImage *image);
// Helper class for saving precodes in chunks
class SaveChunk
{
#ifdef HAS_FIXUP_PRECODE_CHUNKS
// Array of methods to be saved in the method desc chunk
InlineSArray<MethodDesc *, 20> m_rgPendingChunk;
#endif // HAS_FIXUP_PRECODE_CHUNKS
public:
void Save(DataImage * image, MethodDesc * pMD);
void Flush(DataImage * image);
};
#endif // FEATURE_PREJIT
#ifdef DACCESS_COMPILE
void EnumMemoryRegions(CLRDataEnumMemoryFlags flags);
#endif
#ifdef HAS_FIXUP_PRECODE_CHUNKS
static DWORD GetOffsetOfBase(PrecodeType t, DWORD count)
{
assert(t == PRECODE_FIXUP);
return (DWORD)(count * sizeof(FixupPrecode));
}
static DWORD GetOffset(PrecodeType t, DWORD index, DWORD count)
{
assert(t == PRECODE_FIXUP);
assert(index < count);
return (DWORD)((count - index - 1)* sizeof(FixupPrecode));
}
#endif
};
#endif // __PRECODE_H__
|