Project

General

Profile

Actions

Feature #357

open

Add function pointer dereferencing primitive pointcut

Added by Evgeny Novikov over 13 years ago. Updated about 8 years ago.

Status:
Open
Priority:
High
Category:
Pointcuts matching
Start date:
08/05/2010
Due date:
% Done:

0%

Estimated time:
Published in build:

Description

One of example is:

int f(int a, int b)
{
  return (a + b);
}

int g(void)
{
  typedef int (*f_ptr)(void);
  f_ptr func;
  func = f;
  return func (10, 20);
}

Actions #1

Updated by Evgeny Novikov over 11 years ago

  • Project changed from Linux Driver Verification to C Instrumentation Framework
  • Category deleted (15)
Actions #2

Updated by Evgeny Novikov about 8 years ago

  • Priority changed from Normal to High

As far as I know Ilya Schepetkov has already implement some preliminary support of this. I will consider it and fix if required.

Actions #3

Updated by Evgeny Novikov about 8 years ago

  • Category set to Pointcuts matching
Actions

Also available in: Atom PDF