Cosmos/source2/Cosmos.Assembler/Cosmos.Assembler.csproj
kudzu_cp 16a03ff608
2012-08-07 01:54:08 +00:00

332 lines
No EOL
16 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{1116130E-28E0-428A-A597-F4B3B676C0CA}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Cosmos.Assembler</RootNamespace>
<AssemblyName>Cosmos.Assembler</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Cosmos.snk</AssemblyOriginatorKeyFile>
<TargetFrameworkProfile />
<CodeContractsAssemblyMode>0</CodeContractsAssemblyMode>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
<ErrorReport>prompt</ErrorReport>
<RunCodeAnalysis>false</RunCodeAnalysis>
<CodeAnalysisIgnoreGeneratedCode>true</CodeAnalysisIgnoreGeneratedCode>
<CodeContractsEnableRuntimeChecking>True</CodeContractsEnableRuntimeChecking>
<CodeContractsRuntimeOnlyPublicSurface>False</CodeContractsRuntimeOnlyPublicSurface>
<CodeContractsRuntimeThrowOnFailure>True</CodeContractsRuntimeThrowOnFailure>
<CodeContractsRuntimeCallSiteRequires>False</CodeContractsRuntimeCallSiteRequires>
<CodeContractsRunCodeAnalysis>False</CodeContractsRunCodeAnalysis>
<CodeContractsNonNullObligations>False</CodeContractsNonNullObligations>
<CodeContractsBoundsObligations>False</CodeContractsBoundsObligations>
<CodeContractsArithmeticObligations>False</CodeContractsArithmeticObligations>
<CodeContractsRedundantAssumptions>False</CodeContractsRedundantAssumptions>
<CodeContractsRunInBackground>True</CodeContractsRunInBackground>
<CodeContractsShowSquigglies>False</CodeContractsShowSquigglies>
<CodeContractsUseBaseLine>False</CodeContractsUseBaseLine>
<CodeContractsEmitXMLDocs>False</CodeContractsEmitXMLDocs>
<CodeContractsCustomRewriterAssembly />
<CodeContractsCustomRewriterClass />
<CodeContractsLibPaths />
<CodeContractsExtraRewriteOptions />
<CodeContractsExtraAnalysisOptions />
<CodeContractsBaseLineFile />
<CodeContractsCacheAnalysisResults>False</CodeContractsCacheAnalysisResults>
<CodeContractsRuntimeCheckingLevel>Full</CodeContractsRuntimeCheckingLevel>
<CodeContractsReferenceAssembly>%28none%29</CodeContractsReferenceAssembly>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Assembler.cs" />
<Compile Include="BaseAssemblerElement.cs" />
<Compile Include="Comment.cs" />
<Compile Include="DataEndIfDefined.cs" />
<Compile Include="DataIfDefined.cs" />
<Compile Include="DataIfNotDefined.cs" />
<Compile Include="DataMember.cs" />
<Compile Include="Define.cs" />
<Compile Include="ElementReference.cs" />
<Compile Include="Else.cs" />
<Compile Include="EndIfDefined.cs" />
<Compile Include="IDefine.cs" />
<Compile Include="IEndIfDefined.cs" />
<Compile Include="IfDefined.cs" />
<Compile Include="IfNotDefined.cs" />
<Compile Include="IIfDefined.cs" />
<Compile Include="IIfNotDefined.cs" />
<Compile Include="InfraExtensions.cs" />
<Compile Include="Instruction.cs" />
<Compile Include="Label.cs" />
<Compile Include="LiteralAssemblerCode.cs" />
<Compile Include="MethodInfoLabelGenerator.cs" />
<Compile Include="OpCodeAttribute.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="StackContents.cs" />
<Compile Include="TypeComparer.cs" />
<Compile Include="x86\Add.cs" />
<Compile Include="x86\AddWithCarry.cs" />
<Compile Include="x86\And.cs" />
<Compile Include="x86\Call.cs" />
<Compile Include="x86\ClrCarryFlag.cs" />
<Compile Include="x86\ClrDirFlag.cs" />
<Compile Include="x86\ClrInterruptFlag.cs" />
<Compile Include="x86\Cmps.cs" />
<Compile Include="x86\CmpXchg.cs" />
<Compile Include="x86\Compare.cs" />
<Compile Include="x86\ConditionalJump.cs" />
<Compile Include="x86\ConditionalMove.cs" />
<Compile Include="x86\ConvByteToWord.cs" />
<Compile Include="x86\CpuId.cs" />
<Compile Include="x86\Dec.cs" />
<Compile Include="x86\Divide.cs" />
<Compile Include="x86\Enums.cs" />
<Compile Include="x86\ExternalLabel.cs" />
<Compile Include="x86\Halt.cs" />
<Compile Include="x86\IDivide.cs" />
<Compile Include="x86\IN.cs" />
<Compile Include="x86\INC.cs" />
<Compile Include="x86\INT.cs" />
<Compile Include="x86\INT1.cs" />
<Compile Include="x86\INT3.cs" />
<Compile Include="x86\IRET.cs" />
<Compile Include="x86\JumpAlways.cs" />
<Compile Include="x86\JumpBase.cs" />
<Compile Include="x86\JumpToSegment.cs" />
<Compile Include="x86\Lgdt.cs" />
<Compile Include="x86\Lidt.cs" />
<Compile Include="x86\LoadStatusFlags.cs" />
<Compile Include="x86\Mov.cs" />
<Compile Include="x86\MoveCR.cs" />
<Compile Include="x86\MoveD.cs" />
<Compile Include="x86\MoveSignExtend.cs" />
<Compile Include="x86\MoveToDR6.cs" />
<Compile Include="x86\MoveZeroExtend.cs" />
<Compile Include="x86\Movs.cs" />
<Compile Include="x86\Multiply.cs" />
<Compile Include="x86\Neg.cs" />
<Compile Include="x86\Noop.cs" />
<Compile Include="x86\Not.cs" />
<Compile Include="x86\Or.cs" />
<Compile Include="x86\Out.cs" />
<Compile Include="x86\Pop.cs" />
<Compile Include="x86\Popad.cs" />
<Compile Include="x86\Popfd.cs" />
<Compile Include="x86\Push.cs" />
<Compile Include="x86\Pushad.cs" />
<Compile Include="x86\Pushfd.cs" />
<Compile Include="x86\Registers.cs" />
<Compile Include="x86\Return.cs" />
<Compile Include="x86\RotateLeft.cs" />
<Compile Include="x86\RotateRight.cs" />
<Compile Include="x86\RotateThroughCarryRight.cs" />
<Compile Include="x86\Scas.cs" />
<Compile Include="x86\SetInterruptFlag.cs" />
<Compile Include="x86\ShiftLeft.cs" />
<Compile Include="x86\ShiftRight.cs" />
<Compile Include="x86\Shld.cs" />
<Compile Include="x86\Shrd.cs" />
<Compile Include="x86\SignExtendAX.cs" />
<Compile Include="x86\SSE2\ConvertSD2SI.cs" />
<Compile Include="x86\SSE2\ConvertSD2SS.cs" />
<Compile Include="x86\SSE2\ConvertSI2SD.cs" />
<Compile Include="x86\SSE2\ConvertSS2SD.cs" />
<Compile Include="x86\SSE2\ConvertTruncateSD2SI.cs" />
<Compile Include="x86\SSE2\ConvertTruncateSS2SI.cs" />
<Compile Include="x86\SSE2\MoveSD.cs" />
<Compile Include="x86\SSE2\SqrtSD.cs" />
<Compile Include="x86\SSE2\XorPD.cs" />
<Compile Include="x86\SSE3\IntStoreWithTrunc.cs" />
<Compile Include="x86\SSE3\MoveDoubleAndDupplicate.cs" />
<Compile Include="x86\SSEAndMMX2\AddPS.cs" />
<Compile Include="x86\SSEAndMMX2\AddSS.cs" />
<Compile Include="x86\SSEAndMMX2\AndPS.cs" />
<Compile Include="x86\SSEAndMMX2\ComparePS.cs" />
<Compile Include="x86\SSEAndMMX2\CompareSS.cs" />
<Compile Include="x86\SSEAndMMX2\ConvertSI2SS.cs" />
<Compile Include="x86\SSEAndMMX2\ConvertSS2SI.cs" />
<Compile Include="x86\SSEAndMMX2\DivPS.cs" />
<Compile Include="x86\SSEAndMMX2\DivSS.cs" />
<Compile Include="x86\SSEAndMMX2\Enums.cs" />
<Compile Include="x86\SSEAndMMX2\InstructionWithDestinationAndSourceAndPseudoOpcodes.cs" />
<Compile Include="x86\SSEAndMMX2\MaxSS.cs" />
<Compile Include="x86\SSEAndMMX2\MinSS.cs" />
<Compile Include="x86\SSEAndMMX2\MoveAPS.cs" />
<Compile Include="x86\SSEAndMMX2\MoveHLPS.cs" />
<Compile Include="x86\SSEAndMMX2\MoveHPS.cs" />
<Compile Include="x86\SSEAndMMX2\MoveLHPS.cs" />
<Compile Include="x86\SSEAndMMX2\MoveSS.cs" />
<Compile Include="x86\SSEAndMMX2\MoveUPS.cs" />
<Compile Include="x86\SSEAndMMX2\MulPS.cs" />
<Compile Include="x86\SSEAndMMX2\MulSS.cs" />
<Compile Include="x86\SSEAndMMX2\SubPS.cs" />
<Compile Include="x86\SSEAndMMX2\SubSS.cs" />
<Compile Include="x86\SSEAndMMX2\XorPS.cs" />
<Compile Include="x86\StoreByteInString.cs" />
<Compile Include="x86\StoreSD.cs" />
<Compile Include="x86\StoreWordInString.cs" />
<Compile Include="x86\Stos.cs" />
<Compile Include="x86\Sub.cs" />
<Compile Include="x86\SubWithCarry.cs" />
<Compile Include="x86\Test.cs" />
<Compile Include="x86\x87\Enums.cs" />
<Compile Include="x86\x87\FloatABS.cs" />
<Compile Include="x86\x87\FloatAdd.cs" />
<Compile Include="x86\x87\FloatAddAndPop.cs" />
<Compile Include="x86\x87\FloatClearEx.cs" />
<Compile Include="x86\x87\FloatCompare.cs" />
<Compile Include="x86\x87\FloatCompareAnd2Pop.cs" />
<Compile Include="x86\x87\FloatCompareAndPop.cs" />
<Compile Include="x86\x87\FloatCompareAndSet.cs" />
<Compile Include="x86\x87\FloatCompareAndSetAndPop.cs" />
<Compile Include="x86\x87\FloatCompareOrderAndSet.cs" />
<Compile Include="x86\x87\FloatCompareOrderSetAndPop.cs" />
<Compile Include="x86\x87\FloatConditionalMove.cs" />
<Compile Include="x86\x87\FloatCosine.cs" />
<Compile Include="x86\x87\FloatDecTopPointer.cs" />
<Compile Include="x86\x87\FloatDivide.cs" />
<Compile Include="x86\x87\FloatDivideAndPop.cs" />
<Compile Include="x86\x87\FloatDivideAndPopReverse.cs" />
<Compile Include="x86\x87\FloatDivideReverse.cs" />
<Compile Include="x86\x87\FloatFree.cs" />
<Compile Include="x86\x87\FloatIncTopPointer.cs" />
<Compile Include="x86\x87\FloatInit.cs" />
<Compile Include="x86\x87\FloatLoad.cs" />
<Compile Include="x86\x87\FloatMul.cs" />
<Compile Include="x86\x87\FloatMulAndPop.cs" />
<Compile Include="x86\x87\FloatNegate.cs" />
<Compile Include="x86\x87\FloatPRem.cs" />
<Compile Include="x86\x87\FloatPRem1.cs" />
<Compile Include="x86\x87\FloatPushOne.cs" />
<Compile Include="x86\x87\FloatPushZero.cs" />
<Compile Include="x86\x87\FloatRound.cs" />
<Compile Include="x86\x87\FloatSine.cs" />
<Compile Include="x86\x87\FloatSqrt.cs" />
<Compile Include="x86\x87\FloatStore.cs" />
<Compile Include="x86\x87\FloatStoreAndPop.cs" />
<Compile Include="x86\x87\FloatSub.cs" />
<Compile Include="x86\x87\FloatSubAndPop.cs" />
<Compile Include="x86\x87\FloatSubAndPopReverse.cs" />
<Compile Include="x86\x87\FloatSubReverse.cs" />
<Compile Include="x86\x87\FloatTest.cs" />
<Compile Include="x86\x87\FloatUCompare.cs" />
<Compile Include="x86\x87\FloatUCompareAnd2Pop.cs" />
<Compile Include="x86\x87\FloatUCompareAndPop.cs" />
<Compile Include="x86\x87\FloatXchg.cs" />
<Compile Include="x86\x87\FXSave.cs" />
<Compile Include="x86\x87\FXStore.cs" />
<Compile Include="x86\x87\IntAdd.cs" />
<Compile Include="x86\x87\IntCompare.cs" />
<Compile Include="x86\x87\IntCompareAndPop.cs" />
<Compile Include="x86\x87\IntDivide.cs" />
<Compile Include="x86\x87\IntDivideReverse.cs" />
<Compile Include="x86\x87\IntLoad.cs" />
<Compile Include="x86\x87\IntMul.cs" />
<Compile Include="x86\x87\IntStore.cs" />
<Compile Include="x86\x87\IntStoreAndPop.cs" />
<Compile Include="x86\x87\IntSub.cs" />
<Compile Include="x86\x87\IntSubReverse.cs" />
<Compile Include="x86\Xchg.cs" />
<Compile Include="x86\XchgAndAdd.cs" />
<Compile Include="x86\Xor.cs" />
<Compile Include="x86\_Infra\Extensions.cs" />
<Compile Include="x86\_Infra\IInstructionWithArgument.cs" />
<Compile Include="x86\_Infra\IInstructionWithCondition.cs" />
<Compile Include="x86\_Infra\IInstructionWithDestination.cs" />
<Compile Include="x86\_Infra\IInstructionWithPrefix.cs" />
<Compile Include="x86\_Infra\IInstructionWithSize.cs" />
<Compile Include="x86\_Infra\IInstructionWithSource.cs" />
<Compile Include="x86\_Infra\Instruction.cs" />
<Compile Include="x86\_Infra\InstructionWithDestination.cs" />
<Compile Include="x86\_Infra\InstructionWithDestinationAndSize.cs" />
<Compile Include="x86\_Infra\InstructionWithDestinationAndSource.cs" />
<Compile Include="x86\_Infra\InstructionWithDestinationAndSourceAndArgument.cs" />
<Compile Include="x86\_Infra\InstructionWithDestinationAndSourceAndSize.cs" />
<Compile Include="x86\_Infra\InstructionWithSize.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Cosmos.snk" />
<None Include="x86\Cosmos.snk" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\XSharp\source\XSharp.Nasm\XSharp.Nasm.csproj">
<Project>{841A734E-9606-4AAB-9C4A-74E7E303FF5D}</Project>
<Name>XSharp.Nasm</Name>
</ProjectReference>
<ProjectReference Include="..\Build\Cosmos.Build.Common\Cosmos.Build.Common.csproj">
<Project>{0462E82B-8C29-41A9-8265-9C89038ADB29}</Project>
<Name>Cosmos.Build.Common</Name>
</ProjectReference>
<ProjectReference Include="..\Compiler\Cosmos.XSharp\Cosmos.Compiler.XSharp.csproj">
<Project>{A281A1B1-C718-4BCB-A7BE-ED840A70449A}</Project>
<Name>Cosmos.Compiler.XSharp</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>