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

Fixes for IL2CPU refactoring #2648

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions source/Cosmos.Core_Asm/Array/ArrayClearAsm.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using IL2CPU.API;
using XSharp;
using XSharp.Assembler;
using XSharp.Assembler.x86;
using static XSharp.XSRegisters;

namespace Cosmos.Core_Asm
Expand Down
1 change: 0 additions & 1 deletion source/Cosmos.Core_Asm/ArrayImpl.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#define COSMOSDEBUG
using System;
using Cosmos.Debug.Kernel;
using IL2CPU.API.Attribs;

namespace Cosmos.Core_Asm
Expand Down
2 changes: 0 additions & 2 deletions source/Cosmos.Core_Asm/CPU/CPUCanReadCPUIDAsm.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using Cosmos.Debug.Kernel;
using XSharp;
using XSharp.Assembler;
using XSharp.Assembler.x86;
using static XSharp.XSRegisters;

namespace Cosmos.Core_Asm
Expand Down
3 changes: 1 addition & 2 deletions source/Cosmos.Core_Asm/CPU/CPUGetEBPValue.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Cosmos.Debug.Kernel;
using XSharp;
using XSharp;
using XSharp.Assembler;
using static XSharp.XSRegisters;

Expand Down
7 changes: 1 addition & 6 deletions source/Cosmos.Core_Asm/CPU/CPUGetESPValue.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XSharp;
using XSharp;
using XSharp.Assembler;
using static XSharp.XSRegisters;

Expand Down
4 changes: 1 addition & 3 deletions source/Cosmos.Core_Asm/CPU/CPUGetStackStart.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using Cosmos.Debug.Kernel;
using XSharp;
using XSharp;
using XSharp.Assembler;
using static XSharp.XSRegisters;

namespace Cosmos.Core_Asm
{
Expand Down
1 change: 0 additions & 1 deletion source/Cosmos.Core_Asm/CPU/CPUReadCPUIDAsm.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using Cosmos.Debug.Kernel;
using XSharp;
using XSharp.Assembler;
using static XSharp.XSRegisters;
Expand Down
1 change: 0 additions & 1 deletion source/Cosmos.Core_Asm/CPU/CPUReadTimestampCounterAsm.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System;
using XSharp.Assembler;
using XSharp;

Expand Down
7 changes: 1 addition & 6 deletions source/Cosmos.Core_Asm/CPU/CPUSetESPValue.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XSharp;
using XSharp;
using XSharp.Assembler;
using static XSharp.XSRegisters;

Expand Down
6 changes: 3 additions & 3 deletions source/Cosmos.Core_Asm/Delegate/DelegateCtorAsm.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Reflection;
using XSharp.Assembler;
using Cosmos.IL2CPU;
using Cosmos.IL2CPU.X86.IL;
using Cosmos.IL2CPU.CIL;
using Cosmos.IL2CPU.CIL.Instructions;
using Cosmos.IL2CPU.CIL.Utils;
using XSharp;

namespace Cosmos.Core_Asm
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;
using XSharp.Assembler;
using Cosmos.IL2CPU;
using Cosmos.IL2CPU.CIL;
using XSharp;

namespace Cosmos.Core_Asm
Expand Down
6 changes: 3 additions & 3 deletions source/Cosmos.Core_Asm/Delegate/DelegateInvokeAsm.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System;

using IL2CPU.API;
using Cosmos.IL2CPU;
using Cosmos.IL2CPU.X86.IL;

using Cosmos.IL2CPU.CIL.Instructions;
using Cosmos.IL2CPU.CIL.Utils;
using Cosmos.IL2CPU.Cosmos;
using XSharp;
using XSharp.Assembler;
using x86 = XSharp.Assembler.x86;
Expand Down
1 change: 0 additions & 1 deletion source/Cosmos.Core_Asm/GCImplementation/GetPointerAsm.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using XSharp.Assembler;
using IL2CPU.API;
using XSharp;
using CPUx86 = XSharp.Assembler.x86;
using static XSharp.XSRegisters;
Expand Down
6 changes: 1 addition & 5 deletions source/Cosmos.Core_Asm/GCImplementationImpl.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;
using Cosmos.Core;
using Cosmos.Core_Asm.GCImplementation;
using Cosmos.Core_Asm.GCImplementation;
using IL2CPU.API.Attribs;

namespace Cosmos.Core_Asm
Expand Down
2 changes: 1 addition & 1 deletion source/Cosmos.Core_Asm/Memory/GetStringTypeIDAsm.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Cosmos.IL2CPU;
using Cosmos.IL2CPU.CIL;
using XSharp;
using XSharp.Assembler;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using XSharp.Assembler;
using XSharp.Assembler.x86;
using XSharp;
using static XSharp.XSRegisters;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using XSharp.Assembler;
using XSharp.Assembler.x86;
using XSharp;
using static XSharp.XSRegisters;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using XSharp.Assembler;
using XSharp.Assembler.x86;
using XSharp;
using static XSharp.XSRegisters;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using XSharp.Assembler;
using XSharp.Assembler.x86;
using XSharp;
using static XSharp.XSRegisters;

Expand Down
2 changes: 2 additions & 0 deletions source/Cosmos.Core_Plugs/System/GCImplCreateNewArrayAsm.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
using System;
using System.Reflection;
using Cosmos.IL2CPU;
using Cosmos.IL2CPU.CIL;
using Cosmos.IL2CPU.Cosmos;
using IL2CPU.API;
using XSharp;
using XSharp.Assembler;
Expand Down