Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6595089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:53:41+00:00 2026-05-25T17:53:41+00:00

I would like to have some geek advice here since I can’t brainstorm more.

  • 0

I would like to have some geek advice here since I can’t brainstorm more.

class sampleType
    {
        public void M1(bool someValue)
        {
            if (someValue)
            {
                int a = 1;
                Console.WriteLine(a);
                goto comehere;
            }
            else
            {
                int a = 2;
                Console.WriteLine(a);
                goto comehere;
            }

        comehere:
            {
                int a = 3;
                Console.WriteLine(a);
            }
        }
    }

Assumption: M1 is jitted and ready to execute. M1 is the last item in the thread stack (last register).

Question: How current stack register denote local variables of M1? Especially scope of ‘a’ at if/else/goto block.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T17:53:41+00:00Added an answer on May 25, 2026 at 5:53 pm

    At the IL level, either:

    1) The three non-overlapping local variables “a” will be generated as a single temporary storage slot and re-used; we know this is safe because they do not overlap, they are all the same type, and they have the same name, so there is no chance the debugger will get confused about them. or:

    2) The three local variables “a” will be generated as three different temporary storage slots, or

    3) The three local variables “a” will be determined to be single-assignment and side-effect-free constants, and logically turned into constants, not variables. I do not believe we perform this optimization at this time but we reserve the right to in the future.

    At the jitter level, the jitter is free to do whatever it pleases. It can generate a single stack slot. It can assign a single register. It can generate multiple stack slots, it can assign multiple registers. It can treat them as constants. What the jitter can do is limited only by the cleverness of the jitter team. There is no requirement whatsoever that this uses any stack at all.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a simple vector class and I would like to have some
I would like to have some advice from my linux programmer friends, on a
I have a case here that I would like to have some opinions from
I would like to have some space between the same line.. I know there
I would like to have some functionality by which if I write <textarea maxlength=50></textarea>
I have some files in my SVN repository that I would like to have
I have some text in a UITextView, that I would like to have show
I have some files that I would like to rename using regex and powershell,
I have some data that I would like to visualize. Each byte of the
If you have some blocks of code that you would like to prevent execution

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.