summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qproperty_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2020-07-07 16:44:07 +0200
committerLars Knoll <lars.knoll@qt.io>2020-07-08 11:02:03 +0200
commitb038575a8995378b07e7c82cedc219c1ae40b167 (patch)
tree0a4785b6739dde2ddd8710708202148630042d25 /src/corelib/kernel/qproperty_p.h
parent1718948ed493cd5306e681c21a1c2f8e22b096f4 (diff)
Get rid of one call into the TLS when evaluating bindings
Store a pointer to the TLS in the BingingEvaluationState. Like this, we can save us one TLS lookup in the destructor. Shaves off a couple of percent during binding evaluation. Change-Id: Idc9dc5b0ea202aaeb68cdc063700b8e4968753dc Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/corelib/kernel/qproperty_p.h')
-rw-r--r--src/corelib/kernel/qproperty_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/kernel/qproperty_p.h b/src/corelib/kernel/qproperty_p.h
index e5365f36fc..f15181a0ae 100644
--- a/src/corelib/kernel/qproperty_p.h
+++ b/src/corelib/kernel/qproperty_p.h
@@ -112,6 +112,7 @@ struct BindingEvaluationState
~BindingEvaluationState();
QPropertyBindingPrivate *binding;
BindingEvaluationState *previousState = nullptr;
+ BindingEvaluationState **currentState = nullptr;
};
QT_END_NAMESPACE