2016-11-01 20:44:33 +00:00
|
|
|
/*
|
|
|
|
** DrawSpan code generation
|
|
|
|
** Copyright (c) 2016 Magnus Norddahl
|
|
|
|
**
|
|
|
|
** This software is provided 'as-is', without any express or implied
|
|
|
|
** warranty. In no event will the authors be held liable for any damages
|
|
|
|
** arising from the use of this software.
|
|
|
|
**
|
|
|
|
** Permission is granted to anyone to use this software for any purpose,
|
|
|
|
** including commercial applications, and to alter it and redistribute it
|
|
|
|
** freely, subject to the following restrictions:
|
|
|
|
**
|
|
|
|
** 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
** claim that you wrote the original software. If you use this software
|
|
|
|
** in a product, an acknowledgment in the product documentation would be
|
|
|
|
** appreciated but is not required.
|
|
|
|
** 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
** misrepresented as being the original software.
|
|
|
|
** 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
**
|
|
|
|
*/
|
2016-09-26 07:00:19 +00:00
|
|
|
|
|
|
|
#include "i_system.h"
|
2016-10-01 09:47:21 +00:00
|
|
|
#include "r_compiler/llvm_include.h"
|
2016-09-29 03:21:43 +00:00
|
|
|
#include "r_compiler/fixedfunction/drawspancodegen.h"
|
2016-09-26 07:00:19 +00:00
|
|
|
#include "r_compiler/ssa/ssa_function.h"
|
|
|
|
#include "r_compiler/ssa/ssa_scope.h"
|
|
|
|
#include "r_compiler/ssa/ssa_for_block.h"
|
|
|
|
#include "r_compiler/ssa/ssa_if_block.h"
|
|
|
|
#include "r_compiler/ssa/ssa_stack.h"
|
|
|
|
#include "r_compiler/ssa/ssa_function.h"
|
|
|
|
#include "r_compiler/ssa/ssa_struct_type.h"
|
|
|
|
#include "r_compiler/ssa/ssa_value.h"
|
|
|
|
|
2016-09-29 02:01:42 +00:00
|
|
|
void DrawSpanCodegen::Generate(DrawSpanVariant variant, SSAValue args)
|
2016-09-28 16:49:39 +00:00
|
|
|
{
|
2016-10-08 07:29:26 +00:00
|
|
|
destorg = args[0][0].load(true);
|
|
|
|
source = args[0][1].load(true);
|
|
|
|
destpitch = args[0][2].load(true);
|
|
|
|
stack_xfrac.store(args[0][3].load(true));
|
|
|
|
stack_yfrac.store(args[0][4].load(true));
|
|
|
|
xstep = args[0][5].load(true);
|
|
|
|
ystep = args[0][6].load(true);
|
|
|
|
x1 = args[0][7].load(true);
|
|
|
|
x2 = args[0][8].load(true);
|
|
|
|
y = args[0][9].load(true);
|
|
|
|
xbits = args[0][10].load(true);
|
|
|
|
ybits = args[0][11].load(true);
|
|
|
|
light = args[0][12].load(true);
|
|
|
|
srcalpha = args[0][13].load(true);
|
|
|
|
destalpha = args[0][14].load(true);
|
|
|
|
SSAShort light_alpha = args[0][15].load(true);
|
|
|
|
SSAShort light_red = args[0][16].load(true);
|
|
|
|
SSAShort light_green = args[0][17].load(true);
|
|
|
|
SSAShort light_blue = args[0][18].load(true);
|
|
|
|
SSAShort fade_alpha = args[0][19].load(true);
|
|
|
|
SSAShort fade_red = args[0][20].load(true);
|
|
|
|
SSAShort fade_green = args[0][21].load(true);
|
|
|
|
SSAShort fade_blue = args[0][22].load(true);
|
|
|
|
SSAShort desaturate = args[0][23].load(true);
|
|
|
|
SSAInt flags = args[0][24].load(true);
|
2016-09-28 16:49:39 +00:00
|
|
|
shade_constants.light = SSAVec4i(light_blue.zext_int(), light_green.zext_int(), light_red.zext_int(), light_alpha.zext_int());
|
|
|
|
shade_constants.fade = SSAVec4i(fade_blue.zext_int(), fade_green.zext_int(), fade_red.zext_int(), fade_alpha.zext_int());
|
|
|
|
shade_constants.desaturate = desaturate.zext_int();
|
|
|
|
|
|
|
|
count = x2 - x1 + 1;
|
|
|
|
data = destorg[(x1 + y * destpitch) * 4];
|
|
|
|
|
|
|
|
yshift = 32 - ybits;
|
|
|
|
xshift = yshift - xbits;
|
|
|
|
xmask = ((SSAInt(1) << xbits) - 1) << ybits;
|
|
|
|
|
|
|
|
// 64x64 is the most common case by far, so special case it.
|
2016-10-01 09:47:21 +00:00
|
|
|
is_64x64 = xbits == SSAInt(6) && ybits == SSAInt(6);
|
|
|
|
is_simple_shade = (flags & DrawSpanArgs::simple_shade) == SSAInt(DrawSpanArgs::simple_shade);
|
|
|
|
is_nearest_filter = (flags & DrawSpanArgs::nearest_filter) == SSAInt(DrawSpanArgs::nearest_filter);
|
2016-09-28 16:49:39 +00:00
|
|
|
|
|
|
|
SSAIfBlock branch;
|
|
|
|
branch.if_block(is_simple_shade);
|
2016-09-29 02:01:42 +00:00
|
|
|
LoopShade(variant, true);
|
2016-09-28 16:49:39 +00:00
|
|
|
branch.else_block();
|
2016-09-29 02:01:42 +00:00
|
|
|
LoopShade(variant, false);
|
2016-09-28 16:49:39 +00:00
|
|
|
branch.end_block();
|
|
|
|
}
|
2016-09-27 20:54:37 +00:00
|
|
|
|
2016-09-29 02:01:42 +00:00
|
|
|
void DrawSpanCodegen::LoopShade(DrawSpanVariant variant, bool isSimpleShade)
|
2016-09-28 16:49:39 +00:00
|
|
|
{
|
|
|
|
SSAIfBlock branch;
|
|
|
|
branch.if_block(is_nearest_filter);
|
2016-09-29 02:01:42 +00:00
|
|
|
LoopFilter(variant, isSimpleShade, true);
|
2016-09-28 16:49:39 +00:00
|
|
|
branch.else_block();
|
2016-11-05 10:29:50 +00:00
|
|
|
stack_xfrac.store(stack_xfrac.load() - (SSAInt(1) << (31 - xbits)));
|
|
|
|
stack_yfrac.store(stack_yfrac.load() - (SSAInt(1) << (31 - ybits)));
|
2016-09-29 02:01:42 +00:00
|
|
|
LoopFilter(variant, isSimpleShade, false);
|
2016-09-28 16:49:39 +00:00
|
|
|
branch.end_block();
|
|
|
|
}
|
|
|
|
|
2016-09-29 02:01:42 +00:00
|
|
|
void DrawSpanCodegen::LoopFilter(DrawSpanVariant variant, bool isSimpleShade, bool isNearestFilter)
|
2016-09-28 16:49:39 +00:00
|
|
|
{
|
|
|
|
SSAIfBlock branch;
|
|
|
|
branch.if_block(is_64x64);
|
|
|
|
{
|
2016-09-29 02:01:42 +00:00
|
|
|
SSAInt sseLength = Loop4x(variant, isSimpleShade, isNearestFilter, true);
|
|
|
|
Loop(sseLength * 4, variant, isSimpleShade, isNearestFilter, true);
|
2016-09-28 16:49:39 +00:00
|
|
|
}
|
|
|
|
branch.else_block();
|
|
|
|
{
|
2016-09-29 02:01:42 +00:00
|
|
|
SSAInt sseLength = Loop4x(variant, isSimpleShade, isNearestFilter, false);
|
|
|
|
Loop(sseLength * 4, variant, isSimpleShade, isNearestFilter, false);
|
2016-09-28 16:49:39 +00:00
|
|
|
}
|
|
|
|
branch.end_block();
|
|
|
|
}
|
|
|
|
|
2016-09-29 02:01:42 +00:00
|
|
|
SSAInt DrawSpanCodegen::Loop4x(DrawSpanVariant variant, bool isSimpleShade, bool isNearestFilter, bool is64x64)
|
2016-09-28 16:49:39 +00:00
|
|
|
{
|
2016-09-27 20:54:37 +00:00
|
|
|
SSAInt sseLength = count / 4;
|
2016-10-01 09:47:21 +00:00
|
|
|
stack_index.store(SSAInt(0));
|
2016-09-26 07:00:19 +00:00
|
|
|
{
|
2016-09-27 20:54:37 +00:00
|
|
|
SSAForBlock loop;
|
|
|
|
SSAInt index = stack_index.load();
|
|
|
|
loop.loop_block(index < sseLength);
|
|
|
|
|
2016-10-08 07:29:26 +00:00
|
|
|
SSAVec16ub bg = data[index * 16].load_unaligned_vec16ub(false);
|
2016-09-29 02:01:42 +00:00
|
|
|
SSAVec8s bg0 = SSAVec8s::extendlo(bg);
|
|
|
|
SSAVec8s bg1 = SSAVec8s::extendhi(bg);
|
|
|
|
SSAVec4i bgcolors[4] =
|
|
|
|
{
|
|
|
|
SSAVec4i::extendlo(bg0),
|
|
|
|
SSAVec4i::extendhi(bg0),
|
|
|
|
SSAVec4i::extendlo(bg1),
|
|
|
|
SSAVec4i::extendhi(bg1)
|
|
|
|
};
|
|
|
|
|
2016-09-27 20:54:37 +00:00
|
|
|
SSAVec4i colors[4];
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
SSAInt xfrac = stack_xfrac.load();
|
|
|
|
SSAInt yfrac = stack_yfrac.load();
|
|
|
|
|
2016-09-29 02:01:42 +00:00
|
|
|
colors[i] = Blend(Shade(Sample(xfrac, yfrac, isNearestFilter, is64x64), isSimpleShade), bgcolors[i], variant);
|
2016-09-27 20:54:37 +00:00
|
|
|
|
|
|
|
stack_xfrac.store(xfrac + xstep);
|
|
|
|
stack_yfrac.store(yfrac + ystep);
|
|
|
|
}
|
|
|
|
|
2016-09-29 02:01:42 +00:00
|
|
|
SSAVec16ub color(SSAVec8s(colors[0], colors[1]), SSAVec8s(colors[2], colors[3]));
|
|
|
|
data[index * 16].store_unaligned_vec16ub(color);
|
2016-09-27 20:54:37 +00:00
|
|
|
|
2016-10-08 07:29:26 +00:00
|
|
|
stack_index.store(index.add(SSAInt(1), true, true));
|
2016-09-27 20:54:37 +00:00
|
|
|
loop.end_block();
|
|
|
|
}
|
2016-09-28 16:49:39 +00:00
|
|
|
return sseLength;
|
|
|
|
}
|
2016-09-27 20:54:37 +00:00
|
|
|
|
2016-09-29 02:01:42 +00:00
|
|
|
void DrawSpanCodegen::Loop(SSAInt start, DrawSpanVariant variant, bool isSimpleShade, bool isNearestFilter, bool is64x64)
|
2016-09-28 16:49:39 +00:00
|
|
|
{
|
|
|
|
stack_index.store(start);
|
2016-09-27 20:54:37 +00:00
|
|
|
{
|
|
|
|
SSAForBlock loop;
|
2016-09-26 07:00:19 +00:00
|
|
|
SSAInt index = stack_index.load();
|
|
|
|
loop.loop_block(index < count);
|
|
|
|
|
2016-09-27 20:54:37 +00:00
|
|
|
SSAInt xfrac = stack_xfrac.load();
|
|
|
|
SSAInt yfrac = stack_yfrac.load();
|
|
|
|
|
2016-10-08 07:29:26 +00:00
|
|
|
SSAVec4i bgcolor = data[index * 4].load_vec4ub(false);
|
2016-09-29 02:01:42 +00:00
|
|
|
SSAVec4i color = Blend(Shade(Sample(xfrac, yfrac, isNearestFilter, is64x64), isSimpleShade), bgcolor, variant);
|
2016-09-27 01:07:03 +00:00
|
|
|
data[index * 4].store_vec4ub(color);
|
2016-09-27 20:54:37 +00:00
|
|
|
|
2016-10-08 07:29:26 +00:00
|
|
|
stack_index.store(index.add(SSAInt(1), true, true));
|
2016-09-27 20:54:37 +00:00
|
|
|
stack_xfrac.store(xfrac + xstep);
|
|
|
|
stack_yfrac.store(yfrac + ystep);
|
|
|
|
loop.end_block();
|
2016-09-26 07:00:19 +00:00
|
|
|
}
|
2016-09-28 16:49:39 +00:00
|
|
|
}
|
2016-09-26 07:00:19 +00:00
|
|
|
|
2016-09-28 16:49:39 +00:00
|
|
|
SSAVec4i DrawSpanCodegen::Sample(SSAInt xfrac, SSAInt yfrac, bool isNearestFilter, bool is64x64)
|
|
|
|
{
|
|
|
|
if (isNearestFilter)
|
|
|
|
{
|
|
|
|
SSAInt spot;
|
|
|
|
if (is64x64)
|
|
|
|
spot = ((xfrac >> (32 - 6 - 6))&(63 * 64)) + (yfrac >> (32 - 6));
|
|
|
|
else
|
|
|
|
spot = ((xfrac >> xshift) & xmask) + (yfrac >> yshift);
|
2016-10-08 07:29:26 +00:00
|
|
|
return source[spot * 4].load_vec4ub(true);
|
2016-09-28 16:49:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (is64x64)
|
|
|
|
{
|
2016-11-05 10:29:50 +00:00
|
|
|
return SampleLinear(source, xfrac, yfrac, SSAInt(26), SSAInt(26));
|
2016-09-28 16:49:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-11-05 10:29:50 +00:00
|
|
|
return SampleLinear(source, xfrac, yfrac, 32 - xbits, 32 - ybits);
|
2016-09-28 16:49:39 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-26 07:00:19 +00:00
|
|
|
}
|
|
|
|
|
2016-11-05 10:29:50 +00:00
|
|
|
SSAVec4i DrawSpanCodegen::SampleLinear(SSAUBytePtr texture, SSAInt xfrac, SSAInt yfrac, SSAInt xbits, SSAInt ybits)
|
|
|
|
{
|
|
|
|
SSAInt xshift = (32 - xbits);
|
|
|
|
SSAInt yshift = (32 - ybits);
|
|
|
|
SSAInt xmask = (SSAInt(1) << xshift) - 1;
|
|
|
|
SSAInt ymask = (SSAInt(1) << yshift) - 1;
|
|
|
|
SSAInt x = xfrac >> xbits;
|
|
|
|
SSAInt y = yfrac >> ybits;
|
|
|
|
|
|
|
|
SSAVec4i p00 = texture[((y & ymask) + ((x & xmask) << yshift)) * 4].load_vec4ub(true);
|
|
|
|
SSAVec4i p01 = texture[(((y + 1) & ymask) + ((x & xmask) << yshift)) * 4].load_vec4ub(true);
|
|
|
|
SSAVec4i p10 = texture[((y & ymask) + (((x + 1) & xmask) << yshift)) * 4].load_vec4ub(true);
|
|
|
|
SSAVec4i p11 = texture[(((y + 1) & ymask) + (((x + 1) & xmask) << yshift)) * 4].load_vec4ub(true);
|
|
|
|
|
|
|
|
SSAInt inv_b = (xfrac >> (xbits - 4)) & 15;
|
|
|
|
SSAInt inv_a = (yfrac >> (ybits - 4)) & 15;
|
|
|
|
SSAInt a = 16 - inv_a;
|
|
|
|
SSAInt b = 16 - inv_b;
|
|
|
|
|
|
|
|
return (p00 * (a * b) + p01 * (inv_a * b) + p10 * (a * inv_b) + p11 * (inv_a * inv_b) + 127) >> 8;
|
|
|
|
}
|
|
|
|
|
2016-09-29 02:01:42 +00:00
|
|
|
SSAVec4i DrawSpanCodegen::Shade(SSAVec4i fg, bool isSimpleShade)
|
|
|
|
{
|
|
|
|
if (isSimpleShade)
|
|
|
|
return shade_bgra_simple(fg, light);
|
|
|
|
else
|
|
|
|
return shade_bgra_advanced(fg, light, shade_constants);
|
|
|
|
}
|
|
|
|
|
|
|
|
SSAVec4i DrawSpanCodegen::Blend(SSAVec4i fg, SSAVec4i bg, DrawSpanVariant variant)
|
|
|
|
{
|
|
|
|
switch (variant)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case DrawSpanVariant::Opaque:
|
|
|
|
return blend_copy(fg);
|
|
|
|
case DrawSpanVariant::Masked:
|
|
|
|
return blend_alpha_blend(fg, bg);
|
|
|
|
case DrawSpanVariant::Translucent:
|
|
|
|
case DrawSpanVariant::AddClamp:
|
|
|
|
return blend_add(fg, bg, srcalpha, destalpha);
|
|
|
|
case DrawSpanVariant::MaskedTranslucent:
|
|
|
|
case DrawSpanVariant::MaskedAddClamp:
|
|
|
|
return blend_add(fg, bg, srcalpha, calc_blend_bgalpha(fg, destalpha));
|
|
|
|
}
|
|
|
|
}
|