Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Sse1_handwritten_r.csproj « Sse1 « X86 « HardwareIntrinsics « JIT « tests « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1fcf89622365d9f4949b4cea3d7dae3e8b31da25 (plain)
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
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <AssemblyName>X86_Sse1_handwritten_r</AssemblyName>
    <BuildAsStandalone>false</BuildAsStandalone>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>
  <PropertyGroup>
    <DebugType>Embedded</DebugType>
    <Optimize />
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="HandwrittenProgram.cs" />

    <Compile Include="ConvertToInt32WithTruncation.cs" />
    <Compile Include="ConvertToInt32.cs" />
    <Compile Include="LoadAlignedVector128.cs" />
    <Compile Include="LoadHigh.cs" />
    <Compile Include="LoadLow.cs" />
    <Compile Include="MoveHighToLow.cs" />
    <Compile Include="MoveLowToHigh.cs" />
    <Compile Include="MoveMask.cs" />
    <Compile Include="MoveScalar.cs" />
    <Compile Include="Prefetch.cs" />
    <Compile Include="ReciprocalScalar.cs" />
    <Compile Include="ReciprocalSqrtScalar.cs" />
    <Compile Include="ReciprocalSqrt.cs" />
    <Compile Include="Reciprocal.cs" />
    <Compile Include="Shuffle.cs" />
    <Compile Include="SqrtScalar.cs" />
    <Compile Include="Sqrt.cs" />
    <Compile Include="StoreAlignedNonTemporal.cs" />
    <Compile Include="StoreAligned.cs" />
    <Compile Include="StoreFence.cs" />
    <Compile Include="StoreHigh.cs" />
    <Compile Include="StoreLow.cs" />
    <Compile Include="StoreScalar.cs" />
    <Compile Include="Store.cs" />
    <Compile Include="UnpackHigh.cs" />
    <Compile Include="UnpackLow.cs" />
  </ItemGroup>
</Project>