Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[mono][interp] Testing tiering disabled #116070

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

Draft
wants to merge 4 commits into
base: main
Choose a base branch
Loading
from

Conversation

BrzVlad
Copy link
Member

@BrzVlad BrzVlad commented May 28, 2025

No description provided.

@BrzVlad BrzVlad added NO-REVIEW Experimental/testing PR, do NOT review it area-Codegen-Interpreter-mono labels May 28, 2025
Copy link
Contributor

Tagging subscribers to this area: @BrzVlad, @kotlarmilos
See info in area-owners.md if you want to be subscribed.

BrzVlad added 4 commits June 2, 2025 09:46
…during cprop

The definition was not updated, leading to invalid optimizations later on.
Otherwise SSA dominance algorithms may fail to detect certain code flow and incorrectly manage phi nodes.

public bool M() {
	bool ret = true;
	try {
		// throw NULL
	} catch (NullReferenceException) {
		goto Label;
	}
	ret = false;
Label:
	return ret;
}

Without this fix, given the SSA cfg doesn't include EH bblocks, we would see the return opcode always reachable through the fallthrough from `ret = false`.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-Codegen-Interpreter-mono NO-REVIEW Experimental/testing PR, do NOT review it
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant
Morty Proxy This is a proxified and sanitized view of the page, visit original site.