Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Constant type misidentified as primitive #873

Closed
SteveGilham opened this issue Sep 13, 2022 · 0 comments
Closed

Constant type misidentified as primitive #873

SteveGilham opened this issue Sep 13, 2022 · 0 comments

Comments

@SteveGilham
Copy link
Contributor

The following code

namespace NullConst {

    public class Program {
        public static void Main ()
        {
            new Program ().MakeConst ();
        }

        public void MakeConst ()
        {
            const IList<string> thing = null;
        }
    }
}

compiles to IL which does not contain the const value; but it is present in the debug metadata.

Reading and then immediately writing the assembly fails with an NRE claiming that there is a null primitive constant; when stepping through the process, the type information is correctly preserved in the debug metadata (still IList<string>, with element type GenericInst). the method SignatureWriter GetConstantSignature (ElementType type, object value), however, sends this to the default primitive case where the null value fails.

The following reformulation of that method

		private SignatureWriter GetConstantSignature (ElementType type, object value)
		{
			var signature = CreateSignatureWriter ();

			if (type == ElementType.String) {
				signature.WriteConstantString ((string)value);
			} else if (type.IsPrimitive ()) {
				signature.WriteConstantPrimitive (value);
			} else {
				signature.WriteInt32 (0);
			}

			return signature;
		}

passes the unit tests, and permits the assembly to be written.

SteveGilham added a commit to SteveGilham/cecil that referenced this issue Sep 13, 2022
jbevain added a commit that referenced this issue Sep 29, 2022
* Address issue #873

* Be explicit as to what we support writing

* Use normal test infrastructure

* Restore writing primitives

* Restore style

* Can't verify .net core assembly

Co-authored-by: Jb Evain <jb@evain.net>
@jbevain jbevain closed this as completed Sep 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants