-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparing for precision garbase collection (#1250)
* - Preparing for SafePoints * - Preparing for SafePoints * - Preparing for SafePoints * - Preparing for SafePoints * Merge branch 'master' of https://github.com/mosa/MOSA-Project into 511-safepoints # Conflicts: # Source/Mosa.Compiler.Framework/Stages/SafePointStage.cs
- Loading branch information
Showing
8 changed files
with
86 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
Source/Mosa.Compiler.Framework/Instructions/UnstableRegionEnd.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright (c) MOSA Project. Licensed under the New BSD License. | ||
|
||
// This code was generated by an automated template. | ||
|
||
namespace Mosa.Compiler.Framework.Instructions; | ||
|
||
/// <summary> | ||
/// UnstableRegionEnd | ||
/// </summary> | ||
public sealed class UnstableRegionEnd : BaseIRInstruction | ||
{ | ||
public UnstableRegionEnd() | ||
: base(0, 0) | ||
{ | ||
} | ||
|
||
public override bool IgnoreDuringCodeGeneration => true; | ||
} |
18 changes: 18 additions & 0 deletions
18
Source/Mosa.Compiler.Framework/Instructions/UnstableRegionStart.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright (c) MOSA Project. Licensed under the New BSD License. | ||
|
||
// This code was generated by an automated template. | ||
|
||
namespace Mosa.Compiler.Framework.Instructions; | ||
|
||
/// <summary> | ||
/// UnstableRegionStart | ||
/// </summary> | ||
public sealed class UnstableRegionStart : BaseIRInstruction | ||
{ | ||
public UnstableRegionStart() | ||
: base(0, 0) | ||
{ | ||
} | ||
|
||
public override bool IgnoreDuringCodeGeneration => true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters