rm unused fields
Change-Id: I70c7c4769e0a8d95b590a85fab34529041f8af8a
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/220841
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
diff --git a/src/core/SkVM.cpp b/src/core/SkVM.cpp
index 54ee046..7aed21c 100644
--- a/src/core/SkVM.cpp
+++ b/src/core/SkVM.cpp
@@ -399,10 +399,6 @@
#if defined(SKVM_JIT)
struct Program::JIT : Xbyak::CodeGenerator {
- size_t head_ends = 0,
- body_ends = 0,
- tail_ends = 0;
-
// 8 float values in a ymm register.
static constexpr int K = 8;
@@ -432,7 +428,6 @@
for (int i = 0; i < (int)instructions.size(); i++) {
if (i == loop) {
L("loop");
- this->head_ends = this->getSize();
}
const Instruction& inst = instructions[i];
Op op = inst.op;
@@ -510,14 +505,12 @@
}
}
- this->body_ends = this->getSize();
for (int i = 0; i < nargs; i++) {
add(arg[i], K*(int)strides[i]);
}
sub(N, K);
jne("loop");
- this->tail_ends = this->getSize();
vzeroupper();
ret();