search for: tll

Displaying 3 results from an estimated 3 matches for "tll".

Did you mean: all
2004 Nov 30
5
Problem with 2.4.28 kernel config
...rewall: Multi-port Match: Available Nov 30 12:05:34 fw shorewall: Connection Tracking Match: Not available ..... Clearly it thinks "Connection Tracking Match: Not available", yet I have set the kernel compile options as follows. The only missing "match" module is "TLL Match Support", but that is also missing from the example config on shorewall.net. Before I recompile, is this error caused by some other issue that I''m not seeing? I did not get this on previous kernels, which I *thought* I had configured the same. # IP: Netfilter Configuration...
2010 Apr 06
0
[LLVMdev] Get the loop trip count variable
...cout << " has " << LI.end() - LI.begin() << " loops" << endl; int ii = 0; for (LoopInfo::iterator i = LI.begin(), e = LI.end(); i != e; ++i) { Loop *TLL = *i; cout << "loop_trip_count is " << TLL->getSmallConstantTripCount(); Value* v = TLL->getTripCount(); if (v != 0) {...
2010 Apr 06
2
[LLVMdev] Get the loop trip count variable
Thanks a lot for your guys' help!!! I guess once I am able to get *V* (which probably is a pointer to a Value object), then, I can instrument some code at the IR level to dump V. As long as I maintain V at this pass stage, I should be able to dump the loop trip count. This is true, isn't it? Basically, what I am going to do is to add a function call before the loop body, such as: