Displaying 4 results from an estimated 4 matches for "find_ispel".
Did you mean:
find_ispell
2007 Jul 12
2
[LLVMdev] BasicCallGraph patch
The current BasicCallGraph will miss call sites like this:
%tmp86 = call i8* (...)* bitcast (i8* ()* @find_ispell to i8* (...)*)( )
; <i8*> [#uses=1]
Here the direct user of @find_ispell is a ConstantExpr.
I added several lines of code to address this case.
Below is the output of command: svn diff lib/Analysis/IPA/CallGraph.cpp
Attached is LLVM asm files with such function calls.
Index: lib/Analys...
2007 Jul 17
0
[LLVMdev] BasicCallGraph patch
On Thu, 12 Jul 2007, Zhongxing Xu wrote:
> The current BasicCallGraph will miss call sites like this:
> %tmp86 = call i8* (...)* bitcast (i8* ()* @find_ispell to i8* (...)*)( )
> ; <i8*> [#uses=1]
>
> Here the direct user of @find_ispell is a ConstantExpr.
> I added several lines of code to address this case.
> Below is the output of command: svn diff lib/Analysis/IPA/CallGraph.cpp
> Attached is LLVM asm files with such funct...
2007 Jul 17
2
[LLVMdev] BasicCallGraph patch
...nks for your information, instcombine really solves the problem.
On 7/17/07, Chris Lattner <sabre at nondot.org> wrote:
>
> On Thu, 12 Jul 2007, Zhongxing Xu wrote:
> > The current BasicCallGraph will miss call sites like this:
> > %tmp86 = call i8* (...)* bitcast (i8* ()* @find_ispell to i8* (...)*)( )
> > ; <i8*> [#uses=1]
> >
> > Here the direct user of @find_ispell is a ConstantExpr.
> > I added several lines of code to address this case.
> > Below is the output of command: svn diff lib/Analysis/IPA/CallGraph.cpp
> > Attached is...
2007 Jul 17
0
[LLVMdev] BasicCallGraph patch
...too far from the source level.
-Chris
> On 7/17/07, Chris Lattner <sabre at nondot.org> wrote:
>>
>> On Thu, 12 Jul 2007, Zhongxing Xu wrote:
>> > The current BasicCallGraph will miss call sites like this:
>> > %tmp86 = call i8* (...)* bitcast (i8* ()* @find_ispell to i8* (...)*)( )
>> > ; <i8*> [#uses=1]
>> >
>> > Here the direct user of @find_ispell is a ConstantExpr.
>> > I added several lines of code to address this case.
>> > Below is the output of command: svn diff lib/Analysis/IPA/CallGraph.c...