Frama-C-discuss mailing list archives

This page gathers the archives of the old Frama-C-discuss archives, that was hosted by Inria's gforge before its demise at the end of 2020. To search for mails newer than September 2020, please visit the page of the new mailing list on Renater.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Frama-c-discuss] kinstr to kernel_function


  • Subject: [Frama-c-discuss] kinstr to kernel_function
  • From: jcdemay at rennes.supelec.fr (Jonathan-Christofer Demay)
  • Date: Wed, 18 Feb 2009 17:20:50 +0100

Well, before posting here, my current solution was somewhat between 1)
and 2). I had the fundec of the function I'm currently visiting and I
was iterating over functions to get the corresponding kf.

Since there is a self#current_stmt method in the visitor, I thought that
maybe a stmt_to_kf method might exist (or maybe fundec_to_kf). It's a
shame I didn't thought of greping for more self#current_* methods :/

> CUOQ Pascal wrote:
>> In fact, either 1) is a lazy solution that I shouldn't even be
>> telling you about because 2) is possible, or there is a big flaw in 
>> our architecture because you were able to paint yourself into a
>> corner where 2) is not possible, in which case we should fix it.

So obvious that it didn't even crossed my mind... thanks a lot for the
tip!
> Virgile Prevosto wrote:
>> the kernel function currently visited is available through the 
>> current_kf method of generic_frama_c_visitor

Well, all the Kernel_function.find_* functions are pretty handy, thanks
for pointing this out.
> SIGNOLES Julien wrote:
>> Using the function Kernel_function.find_from_sid, it should be quite 
>> easy to do what you want.