Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / Microsoft / Scripting / Compiler / RuntimeVariableList.cs / 1305376 / RuntimeVariableList.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.ComponentModel; using System.Diagnostics; using System.Linq.Expressions.Compiler; namespace System.Runtime.CompilerServices { ////// This API supports the .NET Framework infrastructure and is not intended to be used directly from your code. /// Contains helper methods called from dynamically generated methods. /// [EditorBrowsable(EditorBrowsableState.Never), DebuggerStepThrough] public static partial class RuntimeOps { ////// Creates an interface that can be used to modify closed over variables at runtime. /// /// The closure array. /// An array of indicies into the closure array where variables are found. ///An interface to access variables. [Obsolete("do not use this method", true), EditorBrowsable(EditorBrowsableState.Never)] public static IRuntimeVariables CreateRuntimeVariables(object[] data, long[] indexes) { return new RuntimeVariableList(data, indexes); } ////// Creates an interface that can be used to modify closed over variables at runtime. /// ///An interface to access variables. [Obsolete("do not use this method", true), EditorBrowsable(EditorBrowsableState.Never)] public static IRuntimeVariables CreateRuntimeVariables() { return new EmptyRuntimeVariables(); } private sealed class EmptyRuntimeVariables : IRuntimeVariables { int IRuntimeVariables.Count { get { return 0; } } object IRuntimeVariables.this[int index] { get { throw new ArgumentOutOfRangeException("index"); } set { throw new ArgumentOutOfRangeException("index"); } } } ////// Provides a list of variables, supporing read/write of the values /// Exposed via RuntimeVariablesExpression /// private sealed class RuntimeVariableList : IRuntimeVariables { // The top level environment. It contains pointers to parent // environments, which are always in the first element private readonly object[] _data; // An array of (int, int) pairs, each representing how to find a // variable in the environment data struction. // // The first integer indicates the number of times to go up in the // closure chain, the second integer indicates the index into that // closure chain. private readonly long[] _indexes; internal RuntimeVariableList(object[] data, long[] indexes) { Debug.Assert(data != null); Debug.Assert(indexes != null); _data = data; _indexes = indexes; } public int Count { get { return _indexes.Length; } } public object this[int index] { get { return GetStrongBox(index).Value; } set { GetStrongBox(index).Value = value; } } private IStrongBox GetStrongBox(int index) { // We lookup the closure using two ints: // 1. The high dword is the number of parents to go up // 2. The low dword is the index into that array long closureKey = _indexes[index]; // walk up the parent chain to find the real environment object[] result = _data; for (int parents = (int)(closureKey >> 32); parents > 0; parents--) { result = HoistedLocals.GetParent(result); } // Return the variable storage return (IStrongBox)result[(int)closureKey]; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /* **************************************************************************** * * 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.ComponentModel; using System.Diagnostics; using System.Linq.Expressions.Compiler; namespace System.Runtime.CompilerServices { ////// This API supports the .NET Framework infrastructure and is not intended to be used directly from your code. /// Contains helper methods called from dynamically generated methods. /// [EditorBrowsable(EditorBrowsableState.Never), DebuggerStepThrough] public static partial class RuntimeOps { ////// Creates an interface that can be used to modify closed over variables at runtime. /// /// The closure array. /// An array of indicies into the closure array where variables are found. ///An interface to access variables. [Obsolete("do not use this method", true), EditorBrowsable(EditorBrowsableState.Never)] public static IRuntimeVariables CreateRuntimeVariables(object[] data, long[] indexes) { return new RuntimeVariableList(data, indexes); } ////// Creates an interface that can be used to modify closed over variables at runtime. /// ///An interface to access variables. [Obsolete("do not use this method", true), EditorBrowsable(EditorBrowsableState.Never)] public static IRuntimeVariables CreateRuntimeVariables() { return new EmptyRuntimeVariables(); } private sealed class EmptyRuntimeVariables : IRuntimeVariables { int IRuntimeVariables.Count { get { return 0; } } object IRuntimeVariables.this[int index] { get { throw new ArgumentOutOfRangeException("index"); } set { throw new ArgumentOutOfRangeException("index"); } } } ////// Provides a list of variables, supporing read/write of the values /// Exposed via RuntimeVariablesExpression /// private sealed class RuntimeVariableList : IRuntimeVariables { // The top level environment. It contains pointers to parent // environments, which are always in the first element private readonly object[] _data; // An array of (int, int) pairs, each representing how to find a // variable in the environment data struction. // // The first integer indicates the number of times to go up in the // closure chain, the second integer indicates the index into that // closure chain. private readonly long[] _indexes; internal RuntimeVariableList(object[] data, long[] indexes) { Debug.Assert(data != null); Debug.Assert(indexes != null); _data = data; _indexes = indexes; } public int Count { get { return _indexes.Length; } } public object this[int index] { get { return GetStrongBox(index).Value; } set { GetStrongBox(index).Value = value; } } private IStrongBox GetStrongBox(int index) { // We lookup the closure using two ints: // 1. The high dword is the number of parents to go up // 2. The low dword is the index into that array long closureKey = _indexes[index]; // walk up the parent chain to find the real environment object[] result = _data; for (int parents = (int)(closureKey >> 32); parents > 0; parents--) { result = HoistedLocals.GetParent(result); } // Return the variable storage return (IStrongBox)result[(int)closureKey]; } } } } // 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
- UIHelper.cs
- Type.cs
- XmlEntityReference.cs
- VisualCollection.cs
- Util.cs
- StrongNameIdentityPermission.cs
- EngineSiteSapi.cs
- ServiceHostingEnvironment.cs
- Event.cs
- OutputCacheProfileCollection.cs
- DomNameTable.cs
- SqlVisitor.cs
- XamlSerializerUtil.cs
- InternalEnumValidator.cs
- CodeArrayIndexerExpression.cs
- ResolveCriteria.cs
- DropTarget.cs
- FrameworkObject.cs
- WinFormsUtils.cs
- CannotUnloadAppDomainException.cs
- NativeWindow.cs
- DataListItemEventArgs.cs
- Int32Collection.cs
- HttpProtocolImporter.cs
- EncoderFallback.cs
- X509CertificateTrustedIssuerElementCollection.cs
- MessageSecurityOverTcpElement.cs
- SqlDependencyListener.cs
- XmlNullResolver.cs
- ProcessModule.cs
- TokenizerHelper.cs
- SchemaName.cs
- Material.cs
- DetailsViewDeletedEventArgs.cs
- SubqueryTrackingVisitor.cs
- CodeDirectionExpression.cs
- ByteAnimationUsingKeyFrames.cs
- RequestNavigateEventArgs.cs
- CodeVariableDeclarationStatement.cs
- HideDisabledControlAdapter.cs
- ItemAutomationPeer.cs
- SocketInformation.cs
- EndpointPerformanceCounters.cs
- StrokeCollection.cs
- WorkflowTraceTransfer.cs
- XmlCDATASection.cs
- WorkflowDesignerMessageFilter.cs
- TreeNodeClickEventArgs.cs
- UriExt.cs
- FixedSOMPageElement.cs
- HttpListenerTimeoutManager.cs
- NativeMethods.cs
- ExpressionNormalizer.cs
- Interlocked.cs
- FastEncoderWindow.cs
- GroupItemAutomationPeer.cs
- OracleConnectionFactory.cs
- HtmlImage.cs
- CollectionBase.cs
- HMACMD5.cs
- TraceContextRecord.cs
- FileLogRecord.cs
- FtpRequestCacheValidator.cs
- LogicalTreeHelper.cs
- CodeNamespaceImport.cs
- XmlResolver.cs
- GridViewRow.cs
- FrameworkElementFactory.cs
- QueryConverter.cs
- StringUtil.cs
- SafeReadContext.cs
- SchemaImporter.cs
- PathStreamGeometryContext.cs
- HtmlInputText.cs
- RoutedUICommand.cs
- BitmapEffectInputData.cs
- XmlSchema.cs
- LedgerEntryCollection.cs
- SerializableAttribute.cs
- _IPv4Address.cs
- DataGridViewRowHeaderCell.cs
- ResolveDuplex11AsyncResult.cs
- AssemblyUtil.cs
- CodePageUtils.cs
- TransformerTypeCollection.cs
- EditorPartChrome.cs
- InputMethodStateChangeEventArgs.cs
- ContainerControl.cs
- CodeTypeOfExpression.cs
- EventMappingSettings.cs
- _TransmitFileOverlappedAsyncResult.cs
- SqlDataSource.cs
- DetailsViewUpdatedEventArgs.cs
- XmlWriterDelegator.cs
- FileEnumerator.cs
- StringUtil.cs
- SqlGenericUtil.cs
- KeyboardDevice.cs
- SectionXmlInfo.cs
- _ChunkParse.cs