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
|
/* ****************************************************************************
*
* Copyright (c) Microsoft Corporation.
*
* This source code is subject to terms and conditions of the Apache License, Version 2.0. A
* copy of the license can be found in the License.html file at the root of this distribution. If
* you cannot locate the Apache License, Version 2.0, please send an email to
* dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
* by the terms of the Apache License, Version 2.0.
*
* You must not remove this notice, or any other, from this software.
*
*
* ***************************************************************************/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using System.Reflection.Emit;
using System.Diagnostics.SymbolStore;
// Not needed in CLR 4 builds because we have the
// ILGenerator.ILOffset property.
#if !FEATURE_CORE_DLR || SILVERLIGHT
#if !FEATURE_CORE_DLR
namespace Microsoft.Scripting.Ast.Compiler {
#else
namespace System.Linq.Expressions.Compiler {
#endif
/// <summary>
/// Wraps ILGenerator with code that tracks the current IL offset as instructions are emitted into the IL stream.
/// </summary>
internal sealed class OffsetTrackingILGenerator {
private readonly ILGenerator _ilg;
internal int _offset;
internal int ILOffset { get { return _offset; } }
internal OffsetTrackingILGenerator(ILGenerator ilg) {
Debug.Assert(ilg != null);
_ilg = ilg;
}
private void AdvanceOffset(OpCode opcode) {
_offset += opcode.Size;
}
private void AdvanceOffsetWithLabel(OpCode opcode) {
AdvanceOffset(opcode);
if (OpCodes.TakesSingleByteArgument(opcode)) {
_offset++;
} else {
_offset += 4;
}
}
#region Simple Instructions
internal void Emit(OpCode opcode) {
_ilg.Emit(opcode);
AdvanceOffset(opcode);
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, byte arg) {
_ilg.Emit(opcode, arg);
AdvanceOffset(opcode);
_offset++;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, sbyte arg) {
_ilg.Emit(opcode, arg);
AdvanceOffset(opcode);
_offset++;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, int arg) {
_ilg.Emit(opcode, arg);
AdvanceOffset(opcode);
_offset += 4;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, MethodInfo meth) {
_ilg.Emit(opcode, meth);
AdvanceOffset(opcode);
_offset += 4;
AssertOffsetMatches();
}
internal void EmitCall(OpCode opcode, MethodInfo methodInfo, Type[] optionalParameterTypes) {
_ilg.EmitCall(opcode, methodInfo, optionalParameterTypes);
AdvanceOffset(opcode);
_offset += 4;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, ConstructorInfo con) {
_ilg.Emit(opcode, con);
AdvanceOffset(opcode);
_offset += 4;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, Type cls) {
_ilg.Emit(opcode, cls);
AdvanceOffset(opcode);
_offset += 4;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, long arg) {
_ilg.Emit(opcode, arg);
AdvanceOffset(opcode);
_offset += 8;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, float arg) {
_ilg.Emit(opcode, arg);
AdvanceOffset(opcode);
_offset += 4;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, double arg) {
_ilg.Emit(opcode, arg);
AdvanceOffset(opcode);
_offset += 8;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, Label label) {
_ilg.Emit(opcode, label);
AdvanceOffsetWithLabel(opcode);
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, Label[] labels) {
_ilg.Emit(opcode, labels);
AdvanceOffset(opcode);
_offset += 4;
for (int remaining = labels.Length * 4, i = 0; remaining > 0; remaining -= 4, i++) {
_offset += 4;
}
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, FieldInfo field) {
_ilg.Emit(opcode, field);
AdvanceOffset(opcode);
_offset += 4;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, String str) {
_ilg.Emit(opcode, str);
AdvanceOffset(opcode);
_offset += 4;
AssertOffsetMatches();
}
internal void Emit(OpCode opcode, LocalBuilder local) {
_ilg.Emit(opcode, local);
int tempVal = local.LocalIndex;
if (opcode.Equals(OpCodes.Ldloc)) {
switch (tempVal) {
case 0:
opcode = OpCodes.Ldloc_0;
break;
case 1:
opcode = OpCodes.Ldloc_1;
break;
case 2:
opcode = OpCodes.Ldloc_2;
break;
case 3:
opcode = OpCodes.Ldloc_3;
break;
default:
if (tempVal <= 255)
opcode = OpCodes.Ldloc_S;
break;
}
} else if (opcode.Equals(OpCodes.Stloc)) {
switch (tempVal) {
case 0:
opcode = OpCodes.Stloc_0;
break;
case 1:
opcode = OpCodes.Stloc_1;
break;
case 2:
opcode = OpCodes.Stloc_2;
break;
case 3:
opcode = OpCodes.Stloc_3;
break;
default:
if (tempVal <= 255)
opcode = OpCodes.Stloc_S;
break;
}
} else if (opcode.Equals(OpCodes.Ldloca)) {
if (tempVal <= 255)
opcode = OpCodes.Ldloca_S;
}
AdvanceOffset(opcode);
if (opcode.OperandType == OperandType.InlineNone)
return;
else if (!OpCodes.TakesSingleByteArgument(opcode)) {
_offset += 2;
} else {
_offset++;
}
AssertOffsetMatches();
}
#endregion
#region Exception Handling
private enum ExceptionState {
Try = 0,
Filter = 1,
Catch = 2,
Finally = 3,
Fault = 4,
}
private Stack<ExceptionState> _exceptionState = new Stack<ExceptionState>();
internal void BeginExceptionBlock() {
_ilg.BeginExceptionBlock();
_exceptionState.Push(ExceptionState.Try);
AssertOffsetMatches();
}
internal void EndExceptionBlock() {
_ilg.EndExceptionBlock();
ExceptionState state = _exceptionState.Pop();
if (state == ExceptionState.Catch) {
AdvanceOffsetWithLabel(OpCodes.Leave);
} else if (state == ExceptionState.Finally || state == ExceptionState.Fault) {
AdvanceOffset(OpCodes.Endfinally);
}
AssertOffsetMatches();
}
internal void BeginExceptFilterBlock() {
_ilg.BeginExceptFilterBlock();
_exceptionState.Pop();
_exceptionState.Push(ExceptionState.Filter);
AssertOffsetMatches();
}
internal void BeginCatchBlock(Type exceptionType) {
_ilg.BeginCatchBlock(exceptionType);
ExceptionState state = _exceptionState.Pop();
if (state == ExceptionState.Filter) {
AdvanceOffset(OpCodes.Endfilter);
} else {
AdvanceOffsetWithLabel(OpCodes.Leave);
}
_exceptionState.Push(ExceptionState.Catch);
AssertOffsetMatches();
}
internal void BeginFaultBlock() {
_ilg.BeginFaultBlock();
AdvanceOffsetWithLabel(OpCodes.Leave);
_exceptionState.Pop();
_exceptionState.Push(ExceptionState.Fault);
AssertOffsetMatches();
}
internal void BeginFinallyBlock() {
_ilg.BeginFinallyBlock();
ExceptionState state = _exceptionState.Pop();
if (state != ExceptionState.Try) {
// leave for any preceeding catch clause
AdvanceOffsetWithLabel(OpCodes.Leave);
}
// leave for try clause
AdvanceOffsetWithLabel(OpCodes.Leave);
_exceptionState.Push(ExceptionState.Finally);
AssertOffsetMatches();
}
#endregion
#region Labels and Locals
internal Label DefineLabel() {
return _ilg.DefineLabel();
}
internal void MarkLabel(Label loc) {
_ilg.MarkLabel(loc);
}
internal LocalBuilder DeclareLocal(Type localType) {
return _ilg.DeclareLocal(localType);
}
internal void MarkSequencePoint(ISymbolDocumentWriter document, int startLine, int startColumn, int endLine, int endColumn) {
_ilg.MarkSequencePoint(document, startLine, startColumn, endLine, endColumn);
}
#endregion
#region Assertions
#if STRESS_DEBUG
private FieldInfo _ilgOffsetField;
private bool _checkOffset = true;
#endif
[Conditional("STRESS_DEBUG")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic")]
private void AssertOffsetMatches() {
#if STRESS_DEBUG
if (!_checkOffset) {
return;
}
int m_length = -1;
try {
if (_ilgOffsetField == null) {
_ilgOffsetField = typeof(ILGenerator).GetField("m_length", BindingFlags.NonPublic | BindingFlags.Instance);
}
m_length = (int)_ilgOffsetField.GetValue(_ilg);
} catch (Exception) {
_checkOffset = false;
}
if (_checkOffset) {
Debug.Assert(m_length == _offset);
}
#endif
}
#endregion
}
}
#endif
|