From 94b31a640e6805645af7558200fbbbabdd29c44b Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Tue, 24 Mar 2020 20:10:39 +0100 Subject: [PATCH] eo: use eina_prefetch we should prefetch the func pointer here. Later on we are accessing the func pointer in a streak, after that, we do not use it anymore. Differential Revision: https://phab.enlightenment.org/D11593 --- src/lib/eo/eo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index 499a4800d1..23a6b35ba0 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -577,6 +577,7 @@ obj_super_back: else { func = _vtable_func_get(vtable, op); + EINA_PREFETCH_NOCACHE(func); // this is not very likely to happen - but may if its an invalid // call or a composite object, but either way, it's not very likely // so make it a goto to save on instruction cache