Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / Microsoft / Scripting / Compiler / CompilerScope.Storage.cs / 1305376 / CompilerScope.Storage.cs
/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Microsoft Public License. A * copy of the license can be found in the License.html file at the root of this distribution. If * you cannot locate the Microsoft Public License, 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 Microsoft Public License. * * You must not remove this notice, or any other, from this software. * * * ***************************************************************************/ using System.Reflection; using System.Reflection.Emit; using System.Runtime.CompilerServices; namespace System.Linq.Expressions.Compiler { internal sealed partial class CompilerScope { private abstract class Storage { internal readonly LambdaCompiler Compiler; internal readonly ParameterExpression Variable; internal Storage(LambdaCompiler compiler, ParameterExpression variable) { Compiler = compiler; Variable = variable; } internal abstract void EmitLoad(); internal abstract void EmitAddress(); internal abstract void EmitStore(); internal virtual void EmitStore(Storage value) { value.EmitLoad(); EmitStore(); } internal virtual void FreeLocal() { } } private sealed class LocalStorage : Storage { private readonly LocalBuilder _local; internal LocalStorage(LambdaCompiler compiler, ParameterExpression variable) : base(compiler, variable) { // ByRef variables are supported. This is used internally by // the compiler when emitting an inlined lambda invoke, to // handle ByRef parameters. BlockExpression prevents this // from being exposed to user created trees. _local = compiler.GetNamedLocal(variable.IsByRef ? variable.Type.MakeByRefType() : variable.Type, variable); } internal override void EmitLoad() { Compiler.IL.Emit(OpCodes.Ldloc, _local); } internal override void EmitStore() { Compiler.IL.Emit(OpCodes.Stloc, _local); } internal override void EmitAddress() { Compiler.IL.Emit(OpCodes.Ldloca, _local); } } private sealed class ArgumentStorage : Storage { private readonly int _argument; internal ArgumentStorage(LambdaCompiler compiler, ParameterExpression p) : base(compiler, p) { _argument = compiler.GetLambdaArgument(compiler.Parameters.IndexOf(p)); } internal override void EmitLoad() { Compiler.IL.EmitLoadArg(_argument); } internal override void EmitStore() { Compiler.IL.EmitStoreArg(_argument); } internal override void EmitAddress() { Compiler.IL.EmitLoadArgAddress(_argument); } } private sealed class ElementBoxStorage : Storage { private readonly int _index; private readonly Storage _array; private readonly Type _boxType; private readonly FieldInfo _boxValueField; internal ElementBoxStorage(Storage array, int index, ParameterExpression variable) : base(array.Compiler, variable) { _array = array; _index = index; _boxType = typeof(StrongBox<>).MakeGenericType(variable.Type); _boxValueField = _boxType.GetField("Value"); } internal override void EmitLoad() { EmitLoadBox(); Compiler.IL.Emit(OpCodes.Ldfld, _boxValueField); } internal override void EmitStore() { LocalBuilder value = Compiler.GetLocal(Variable.Type); Compiler.IL.Emit(OpCodes.Stloc, value); EmitLoadBox(); Compiler.IL.Emit(OpCodes.Ldloc, value); Compiler.FreeLocal(value); Compiler.IL.Emit(OpCodes.Stfld, _boxValueField); } internal override void EmitStore(Storage value) { EmitLoadBox(); value.EmitLoad(); Compiler.IL.Emit(OpCodes.Stfld, _boxValueField); } internal override void EmitAddress() { EmitLoadBox(); Compiler.IL.Emit(OpCodes.Ldflda, _boxValueField); } internal void EmitLoadBox() { _array.EmitLoad(); Compiler.IL.EmitInt(_index); Compiler.IL.Emit(OpCodes.Ldelem_Ref); Compiler.IL.Emit(OpCodes.Castclass, _boxType); } } private sealed class LocalBoxStorage : Storage { private readonly LocalBuilder _boxLocal; private readonly Type _boxType; private readonly FieldInfo _boxValueField; internal LocalBoxStorage(LambdaCompiler compiler, ParameterExpression variable) : base(compiler, variable) { _boxType = typeof(StrongBox<>).MakeGenericType(variable.Type); _boxValueField = _boxType.GetField("Value"); _boxLocal = compiler.GetNamedLocal(_boxType, variable); } internal override void EmitLoad() { Compiler.IL.Emit(OpCodes.Ldloc, _boxLocal); Compiler.IL.Emit(OpCodes.Ldfld, _boxValueField); } internal override void EmitAddress() { Compiler.IL.Emit(OpCodes.Ldloc, _boxLocal); Compiler.IL.Emit(OpCodes.Ldflda, _boxValueField); } internal override void EmitStore() { LocalBuilder value = Compiler.GetLocal(Variable.Type); Compiler.IL.Emit(OpCodes.Stloc, value); Compiler.IL.Emit(OpCodes.Ldloc, _boxLocal); Compiler.IL.Emit(OpCodes.Ldloc, value); Compiler.FreeLocal(value); Compiler.IL.Emit(OpCodes.Stfld, _boxValueField); } internal override void EmitStore(Storage value) { Compiler.IL.Emit(OpCodes.Ldloc, _boxLocal); value.EmitLoad(); Compiler.IL.Emit(OpCodes.Stfld, _boxValueField); } internal void EmitStoreBox() { Compiler.IL.Emit(OpCodes.Stloc, _boxLocal); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RunWorkerCompletedEventArgs.cs
- WebPartConnectionsCancelEventArgs.cs
- Identity.cs
- Certificate.cs
- UnauthorizedWebPart.cs
- LinqDataSource.cs
- TextServicesProperty.cs
- OleDbCommand.cs
- FillBehavior.cs
- ContextStaticAttribute.cs
- ListBoxItem.cs
- MediaTimeline.cs
- QueryNode.cs
- Events.cs
- EditorZoneBase.cs
- JsonGlobals.cs
- XslException.cs
- RoutedCommand.cs
- FlowLayoutSettings.cs
- HyperLinkField.cs
- PathData.cs
- DataContractSet.cs
- CacheAxisQuery.cs
- ApplicationActivator.cs
- GetIsBrowserClientRequest.cs
- FactoryGenerator.cs
- TextDecorationCollectionConverter.cs
- ValidationHelpers.cs
- MultiSelectRootGridEntry.cs
- ExpressionHelper.cs
- EventLogPermission.cs
- AxHostDesigner.cs
- RepeatButton.cs
- XmlLoader.cs
- BaseComponentEditor.cs
- Assembly.cs
- GridViewHeaderRowPresenter.cs
- EncryptedData.cs
- TextTreeExtractElementUndoUnit.cs
- SqlProviderManifest.cs
- ServiceBusyException.cs
- StreamGeometry.cs
- StylusPointCollection.cs
- VisualTreeUtils.cs
- PropertyPathConverter.cs
- MimeXmlReflector.cs
- ToolTipAutomationPeer.cs
- HttpGetClientProtocol.cs
- TimeSpan.cs
- WrappedIUnknown.cs
- SoapAttributeOverrides.cs
- SqlFlattener.cs
- PieceNameHelper.cs
- WindowsFormsHelpers.cs
- TabPanel.cs
- HitTestFilterBehavior.cs
- MenuStrip.cs
- PackagingUtilities.cs
- GridViewUpdateEventArgs.cs
- WindowsComboBox.cs
- WorkflowServiceOperationListItem.cs
- RelationshipEndCollection.cs
- MethodSignatureGenerator.cs
- HttpProcessUtility.cs
- BinaryReader.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- AsnEncodedData.cs
- StandardCommandToolStripMenuItem.cs
- ZipArchive.cs
- ListViewAutomationPeer.cs
- XmlDeclaration.cs
- SqlComparer.cs
- Command.cs
- ComponentResourceManager.cs
- RootCodeDomSerializer.cs
- VerticalAlignConverter.cs
- Brushes.cs
- ObjectStateEntry.cs
- RichTextBox.cs
- Logging.cs
- XmlDesigner.cs
- ApplicationTrust.cs
- CommandManager.cs
- DirectoryInfo.cs
- DateTimeEditor.cs
- ClockGroup.cs
- ConfigurationLockCollection.cs
- ResourcesGenerator.cs
- JapaneseLunisolarCalendar.cs
- PageCache.cs
- _NegotiateClient.cs
- StoragePropertyMapping.cs
- ColumnResult.cs
- TemplateControl.cs
- SafeRightsManagementSessionHandle.cs
- mediaclock.cs
- ListenerElementsCollection.cs
- OdbcParameterCollection.cs
- SqlDataAdapter.cs
- IdentityNotMappedException.cs