Agree that it would be a performance boost to skip cache-resets when the Civi hooks aren't involved. (As an aside, there are a few hooks that pose the same issue with cache-resets and extension-lifecycle – h_c_triggerInfo, h_c_xmlMenu, h_c_managed off the top of my head.)
The great thing about these hooks is that they're relatively simple and robust – e.g. the underlying DB records are managed correctly when installing, when editing code, when mucking about (as a zealous newbie DBA), when upgrading, when uninstalling. And it works the same with all CMS's. (Note, for example, that one can use Drupal's module_implements() to "identify CiviCRM-related modules" but Joomla has no analog.) We would want to preserve these properties.
I suggest approaching this optimization in a slightly different way:
a) In the case of triggers, the work involves a few things: (1) calling h_c_triggerInfo to build a list of triggers and (2) updating the DB to use the triggers. Part #2 is much more expensive than #1. My suggestion would be keep part #1 as-is but skip part #2 when it's appears unneeded. For example, you might change CRM_Core_DAO::triggerRebuild to something like https://gist.github.com/totten/9fc4ebfc2c8bce3b031d (which is rough - note the FIXME's).
b) Similarly, for h_c_managed, CRM_Core_ManagedEntities::reconcile() could compute a signature for $this->declarations and use that to decide if it needs to run the full reconciliation logic.
This might happen on Drupal cache clear as well?