2016-07-12 22:01:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Benchmark.h"
|
2016-09-29 13:04:15 +00:00
|
|
|
#include "SkOpts.h"
|
2016-07-12 22:01:26 +00:00
|
|
|
#include "SkRasterPipeline.h"
|
|
|
|
|
2017-02-27 14:39:38 +00:00
|
|
|
static const int N = 15;
|
2016-07-12 22:01:26 +00:00
|
|
|
|
2016-10-03 19:14:04 +00:00
|
|
|
static uint64_t dst[N]; // sRGB or F16
|
|
|
|
static uint32_t src[N]; // sRGB
|
|
|
|
static uint8_t mask[N]; // 8-bit linear
|
2016-07-12 22:01:26 +00:00
|
|
|
|
|
|
|
// We'll build up a somewhat realistic useful pipeline:
|
|
|
|
// - load srgb src
|
|
|
|
// - scale src by 8-bit mask
|
2016-10-03 19:14:04 +00:00
|
|
|
// - load srgb/f16 dst
|
2016-07-12 22:01:26 +00:00
|
|
|
// - src = srcover(dst, src)
|
2016-10-03 19:14:04 +00:00
|
|
|
// - store src back as srgb/f16
|
2016-07-12 22:01:26 +00:00
|
|
|
|
2017-02-16 11:51:48 +00:00
|
|
|
template <bool kF16>
|
2016-07-12 22:01:26 +00:00
|
|
|
class SkRasterPipelineBench : public Benchmark {
|
|
|
|
public:
|
|
|
|
bool isSuitableFor(Backend backend) override { return backend == kNonRendering_Backend; }
|
2016-10-03 19:14:04 +00:00
|
|
|
const char* onGetName() override {
|
2017-02-16 11:51:48 +00:00
|
|
|
switch ((int)kF16) {
|
|
|
|
case 0: return "SkRasterPipeline_srgb";
|
|
|
|
case 1: return "SkRasterPipeline_f16";
|
2017-01-05 20:03:53 +00:00
|
|
|
}
|
|
|
|
return "whoops";
|
2016-10-03 19:14:04 +00:00
|
|
|
}
|
2016-07-12 22:01:26 +00:00
|
|
|
|
|
|
|
void onDraw(int loops, SkCanvas*) override {
|
2016-10-25 19:43:46 +00:00
|
|
|
void* mask_ctx = mask;
|
|
|
|
void* src_ctx = src;
|
|
|
|
void* dst_ctx = dst;
|
|
|
|
|
2016-10-25 17:31:21 +00:00
|
|
|
SkRasterPipeline p;
|
Consistent naming.
For stages that have {r,g,b,a} and {dr,dg,db,da} versions, name the {r,g,b,a} one "foo" and the {dr,dg,db,da} on "foo_d". The {r,g,b,a} registers are the ones most commonly used and fastest, so they get short ordinary names, and the d-registers are less commonly used and sometimes slower, so they get a suffix.
Some stages naturally opearate on all 8 registers (the xfermodes, accumulate). These names for those look fine and aren't ambiguous.
Also, a bit more re-arrangement in _opts.h.
CQ_INCLUDE_TRYBOTS=skia.primary:Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD
Change-Id: Ia20029247642798a60a2566e8a26b84ed101dbd0
Reviewed-on: https://skia-review.googlesource.com/5291
Reviewed-by: Mike Klein <mtklein@chromium.org>
Commit-Queue: Mike Klein <mtklein@chromium.org>
2016-11-28 23:23:23 +00:00
|
|
|
p.append(SkRasterPipeline::load_8888, &src_ctx);
|
2016-12-14 13:38:24 +00:00
|
|
|
p.append_from_srgb(kUnpremul_SkAlphaType);
|
2016-10-25 19:43:46 +00:00
|
|
|
p.append(SkRasterPipeline::scale_u8, &mask_ctx);
|
2017-01-06 15:21:56 +00:00
|
|
|
p.append(SkRasterPipeline::move_src_dst);
|
2016-11-28 18:24:27 +00:00
|
|
|
if (kF16) {
|
2017-01-06 15:21:56 +00:00
|
|
|
p.append(SkRasterPipeline::load_f16, &dst_ctx);
|
2016-11-28 18:24:27 +00:00
|
|
|
} else {
|
2017-01-06 15:21:56 +00:00
|
|
|
p.append(SkRasterPipeline::load_8888, &dst_ctx);
|
|
|
|
p.append_from_srgb(kPremul_SkAlphaType);
|
2016-11-28 18:24:27 +00:00
|
|
|
}
|
2017-01-06 15:21:56 +00:00
|
|
|
p.append(SkRasterPipeline::dstover);
|
2016-11-28 18:24:27 +00:00
|
|
|
if (kF16) {
|
|
|
|
p.append(SkRasterPipeline::store_f16, &dst_ctx);
|
|
|
|
} else {
|
|
|
|
p.append(SkRasterPipeline::to_srgb);
|
|
|
|
p.append(SkRasterPipeline::store_8888, &dst_ctx);
|
|
|
|
}
|
2016-10-25 17:31:21 +00:00
|
|
|
|
2017-02-16 11:51:48 +00:00
|
|
|
while (loops --> 0) {
|
|
|
|
p.run(0,N);
|
2016-07-12 22:01:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-02-16 11:51:48 +00:00
|
|
|
DEF_BENCH( return (new SkRasterPipelineBench< true>); )
|
|
|
|
DEF_BENCH( return (new SkRasterPipelineBench<false>); )
|
2017-01-17 15:24:15 +00:00
|
|
|
|
|
|
|
class SkRasterPipelineLegacyBench : public Benchmark {
|
|
|
|
public:
|
|
|
|
bool isSuitableFor(Backend backend) override { return backend == kNonRendering_Backend; }
|
|
|
|
const char* onGetName() override {
|
2017-02-16 11:51:48 +00:00
|
|
|
return "SkRasterPipeline_legacy";
|
2017-01-17 15:24:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void onDraw(int loops, SkCanvas*) override {
|
|
|
|
void* src_ctx = src;
|
|
|
|
void* dst_ctx = dst;
|
|
|
|
|
|
|
|
SkRasterPipeline p;
|
|
|
|
p.append(SkRasterPipeline::load_8888, &dst_ctx);
|
|
|
|
p.append(SkRasterPipeline::move_src_dst);
|
|
|
|
p.append(SkRasterPipeline::load_8888, &src_ctx);
|
|
|
|
p.append(SkRasterPipeline::srcover);
|
|
|
|
p.append(SkRasterPipeline::store_8888, &dst_ctx);
|
|
|
|
|
2017-02-16 11:51:48 +00:00
|
|
|
while (loops --> 0) {
|
|
|
|
p.run(0,N);
|
2017-01-17 15:24:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-02-16 11:51:48 +00:00
|
|
|
DEF_BENCH( return (new SkRasterPipelineLegacyBench); )
|