Displaying 4 results from an estimated 4 matches for "stuttard".
2009 Jul 23
2
[LLVMdev] viewCFGOnly() function
...unction(Function &F) {
llvm::cerr << "Hello: " << F.getName() << "\n";
F->viewCFGOnly();
return false;
}
};
char Hello::ID = 0;
RegisterPass<Hello> X("hello", "Hello World Pass");
}
Thanks.
David Stuttard wrote:
>
> You can call the function from your program OR the debugger. The
> comments simply inform you that it is quite handy to be able to call the
> function from a debugger (such as gdb).
>
> To call the function in you code simply add a line such as:
> F->viewCFGOn...
2009 Jul 23
0
[LLVMdev] viewCFGOnly() function
...t; << F.getName() << "\n";
> F->viewCFGOnly();
> return false;
> }
> };
>
> char Hello::ID = 0;
> RegisterPass<Hello> X("hello", "Hello World Pass");
> }
>
>
> Thanks.
>
>
> David Stuttard wrote:
>> You can call the function from your program OR the debugger. The
>> comments simply inform you that it is quite handy to be able to call the
>> function from a debugger (such as gdb).
>>
>> To call the function in you code simply add a line such as:
>>...
2009 Jul 22
0
[LLVMdev] viewCFGOnly() function
You can call the function from your program OR the debugger. The
comments simply inform you that it is quite handy to be able to call the
function from a debugger (such as gdb).
To call the function in you code simply add a line such as:
F->viewCFGOnly();
Where F is an appropriate variable eg. a MachineFunction pointer
If you are using gdb then you can do the following:
call
2009 Jul 21
2
[LLVMdev] viewCFGOnly() function
Hello All,
I am trying to get basic CFG display to work. I have read the programmer's
manual and it mentions that we can simply call the viewCFGOnly() (part of
Function.h) from our sample program. When i read the comments for that
method in Function.h, it mentions that i need to call it from the gdb
debugger instead. I am confused as to how to get this working. Do we need to
call it from a