-
Notifications
You must be signed in to change notification settings - Fork 10
/
SimpleLanguage.csproj
144 lines (144 loc) · 7.7 KB
/
SimpleLanguage.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="packages\NUnit.3.12.0\build\NUnit.props" Condition="Exists('packages\NUnit.3.12.0\build\NUnit.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{12B9D996-7B4A-4EE4-9AD8-2E24EAF3F574}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SimpleLang</RootNamespace>
<AssemblyName>SimpleLang</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x64</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="nunit.framework, Version=3.12.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
<HintPath>packages\NUnit.3.12.0\lib\net45\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ASTOptimizer.cs" />
<Compile Include="DataFlowAnalysis\AvailableExpressions.cs" />
<Compile Include="DataFlowAnalysis\ConstantPropagation.cs" />
<Compile Include="DataFlowAnalysis\ReachingDefinitionsOptimization.cs" />
<Compile Include="DataFlowAnalysis\LiveVariablesOptimization.cs" />
<Compile Include="DataFlowAnalysis\AvailableExpressionsOptimization.cs" />
<Compile Include="LoopsInCFG\BackEdges.cs" />
<Compile Include="LoopsInCFG\CFGRegions.cs" />
<Compile Include="LoopsInCFG\NaturalLoop.cs" />
<Compile Include="DataFlowAnalysis\BitUtils.cs" />
<Compile Include="DataFlowAnalysis\DefinitionInfo.cs" />
<Compile Include="LoopsInCFG\DominatorTree.cs" />
<Compile Include="DataFlowAnalysis\LiveVariables.cs" />
<Compile Include="DataFlowAnalysis\GenericIterativeAlgorithm.cs" />
<Compile Include="DataFlowAnalysis\ReachingDefinitionsBinary.cs" />
<Compile Include="DataFlowAnalysis\ReachingDefinitions.cs" />
<Compile Include="DataFlowAnalysis\ReachingTransferFunc.cs" />
<Compile Include="Main.cs" />
<Compile Include="ParserHelper.cs" />
<Compile Include="ProgramTree.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ShiftReduceParserCode.cs" />
<Compile Include="SimpleLex.cs" />
<Compile Include="SimpleYacc.cs" />
<Compile Include="TACOptimizations\BasicBlock.cs" />
<Compile Include="TACOptimizations\BasicBlockLeader.cs" />
<Compile Include="TACOptimizations\ControlFlowGraph.cs" />
<Compile Include="TACOptimizations\DeleteDeadCodeWithDeadVars.cs" />
<Compile Include="TACOptimizations\Instruction.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeCommonExprElimination.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeDefUse.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeFoldConstants.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeConstantPropagation.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeCopyPropagation.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeRemoveNoop.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeTmp.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeGotoToGoto.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeOptimizer.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeRemoveAlgebraicIdentities.cs" />
<Compile Include="TACOptimizations\ThreeAddressCodeRemoveGotoThroughGoto.cs" />
<Compile Include="Visitors\AutoVisitor.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprAlgebraic.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprEqualBoolNum.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprFoldUnary.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprMultDivByOne.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprMultZero.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprSubEqualVar.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprSumZero.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprTransformUnaryToValue.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprWithOperationsBetweenConsts.cs" />
<Compile Include="Visitors\FillParentsVisitor.cs" />
<Compile Include="Visitors\ChangeVisitor.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprVarEqualToItself.cs" />
<Compile Include="Visitors\ExprOptimizations\OptExprSimilarNotEqual.cs" />
<Compile Include="Visitors\StatOptimizations\IfNullElseNull.cs" />
<Compile Include="Visitors\StatOptimizations\OptAssignEquality.cs" />
<Compile Include="Visitors\StatOptimizations\OptStatIfFalse.cs" />
<Compile Include="Visitors\StatOptimizations\OptStatIfTrue.cs" />
<Compile Include="Visitors\PrettyPrintVisitor.cs" />
<Compile Include="Visitors\StatOptimizations\OptWhileFalse.cs" />
<Compile Include="Visitors\ThreeAddrGenVisitor.cs" />
<Compile Include="Visitors\Visitor.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config">
<SubType>Designer</SubType>
</None>
<None Include="packages.config" />
<None Include="SimpleLex.lex" />
<None Include="SimpleYacc.y" />
</ItemGroup>
<ItemGroup>
<Content Include="a.txt" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>Данный проект ссылается на пакеты NuGet, отсутствующие на этом компьютере. Используйте восстановление пакетов NuGet, чтобы скачать их. Дополнительную информацию см. по адресу: http://go.microsoft.com/fwlink/?LinkID=322105. Отсутствует следующий файл: {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('packages\NUnit.3.12.0\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\NUnit.3.12.0\build\NUnit.props'))" />
</Target>
<!-- 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>