you can't. no such field. but this will tell you f it's been called since last restartselect query_plan
from sys.dm_exec_cached_plans cp
cross apply
sys.dm_exec_query_plan(cp.plan_handle) xp
where convert(varchar(max), query_plan) like '% search object here %'
and objtype = 'Proc'