skia2/tests/PathOpsThreadedCommon.h
Brian Osman 50ea3c06b8 Add support for MSVC run-time checks (and control flow guard)
This enables four different options in the compiler, described
below. I also added enough masks to satisfy RTCc when running
all GMs in both 8888 and gl configs.

---

/RTCc - Detects when a value is assigned to a smaller data
type and results in data loss. This happens even when casting.
Masking is required to suppress this.

/RTCs - Various stack-related checks, including uninitialized
data (by initializing locals to a non-zero value), array bounds
checking, and stack pointer corruption that can occur with a
calling convention mismatch.

/RTCu - Reports when a variable is used without having been
initialized. Mostly redundant with compile-time checks.

/guard:cf - This is more of a security option, that computes
all possible targets for indirect calls at compile time, and
verifies that those are the only targets reached at compile
time. Also generates similar logic around switch statements
that turn into jump tables.

Bug: skia:
Change-Id: I7b527af8fd67dec0b6556f38bcd0efc3fd505856
Reviewed-on: https://skia-review.googlesource.com/c/188625
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
2019-02-04 20:55:24 +00:00

95 lines
2.3 KiB
C++

/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef PathOpsThreadedCommon_DEFINED
#define PathOpsThreadedCommon_DEFINED
#include "SkBitmap.h"
#include "SkGraphics.h"
#include "SkPath.h"
#include "SkPathOps.h"
#include "SkTDArray.h"
#include <string>
#define PATH_STR_SIZE 512
class PathOpsThreadedRunnable;
namespace skiatest {
class Reporter;
}
struct PathOpsThreadState {
unsigned char fA;
unsigned char fB;
unsigned char fC;
unsigned char fD;
std::string fPathStr;
const char* fKey;
char fSerialNo[256];
skiatest::Reporter* fReporter;
SkBitmap* fBitmap;
void outputProgress(const char* pathStr, SkPath::FillType);
void outputProgress(const char* pathStr, SkPathOp);
};
class PathOpsThreadedTestRunner {
public:
PathOpsThreadedTestRunner(skiatest::Reporter* reporter) : fReporter(reporter) {}
~PathOpsThreadedTestRunner();
void render();
public:
SkTDArray<PathOpsThreadedRunnable*> fRunnables;
skiatest::Reporter* fReporter;
};
class PathOpsThreadedRunnable {
public:
PathOpsThreadedRunnable(void (*testFun)(PathOpsThreadState*), int a, int b, int c, int d,
PathOpsThreadedTestRunner* runner) {
fState.fA = (a & 0xFF);
fState.fB = (b & 0xFF);
fState.fC = (c & 0xFF);
fState.fD = (d & 0xFF);
fState.fReporter = runner->fReporter;
fTestFun = testFun;
}
PathOpsThreadedRunnable(void (*testFun)(PathOpsThreadState*), const char* str,
PathOpsThreadedTestRunner* runner) {
SkASSERT(strlen(str) < sizeof(fState.fSerialNo) - 1);
strcpy(fState.fSerialNo, str);
fState.fReporter = runner->fReporter;
fTestFun = testFun;
}
PathOpsThreadedRunnable(void (*testFun)(PathOpsThreadState*), int dirNo, const char* str,
PathOpsThreadedTestRunner* runner) {
SkASSERT(strlen(str) < sizeof(fState.fSerialNo) - 1);
fState.fA = dirNo;
strcpy(fState.fSerialNo, str);
fState.fReporter = runner->fReporter;
fTestFun = testFun;
}
void operator()() {
SkBitmap bitmap;
fState.fBitmap = &bitmap;
(*fTestFun)(&fState);
}
private:
PathOpsThreadState fState;
void (*fTestFun)(PathOpsThreadState*);
};
#endif