Displaying 9 results from an estimated 9 matches for "huwei8717".
2010 Nov 30
0
[LLVMdev] the called function equal NULL
On Nov 29, 2010, at 5:22 PM, huwei8717 wrote:
> Hi,
>
> I have a llvm-pass in hand written by other people. There are following statements that I couldn't understand:
>
> -------------------------------program----------------------------------------------------
> ...
> if (isa<CallInst>(inst) || isa&l...
2010 Nov 30
2
[LLVMdev] the called function equal NULL
Hi,
I have a llvm-pass in hand written by other people. There are following statements that I couldn't understand:
-------------------------------program----------------------------------------------------
...
if (isa<CallInst>(inst) || isa<InvokeInst>(inst)) {
const CallSite cs(inst);
if (cs.getCalledFunction() == NULL)
return dealAtIndirectCall(cs);
else
2010 Sep 10
1
[LLVMdev] I have llvm, poolalloc, and llvm-gcc to be installed
If I have llvm, poolalloc, and llvm-gcc to be installed, what's the order of installation?
2010-09-10
Daneill
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100910/568fb887/attachment.html>
2010 Oct 14
1
[LLVMdev] the latency of opcode
Does anyBody know how to know the latency of every opcode in llvm-IR?
Thank you for your time!
2010-10-14
huwei8717
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101014/a9c4b540/attachment.html>
2010 Sep 10
1
[LLVMdev] I have llvm, poolalloc, and llvm-gcc to be installed
If I have llvm, poolalloc, and llvm-gcc to be installed, what's the order of installation?
Could some help me? Thank you very much!
Best Regards
2010-09-10
Daneill
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100910/fd6d3fd6/attachment.html>
2010 Sep 08
0
[LLVMdev] [llvm-testresults] no llvm-gcc and llvm-g++ in the directory of bin
...r questions will get more visibility and a higher likelihood of being answered if you direct them to the llvmdev list rather than the llvm-testresults list. This list is normally used for automated test-suite results emails and responses discussing them.
Regards,
Jim
On Sep 8, 2010, at 4:22 AM, huwei8717 wrote:
> My problem is there is no llvm-gcc and llvm-g++ in the directory of bin when I have installed llvm and llvm-gcc.
> I was following the instruction of http://llvm.org/releases/2.6/docs/GettingStarted.html, however when I finished installing the llvm and llvm-gcc successfully, the bin...
2010 Sep 09
1
[LLVMdev] no llvm-gcc and llvm-g++ in the directory of bin
My problem is there is no llvm-gcc and llvm-g++ in the directory of bin when I have installed llvm and llvm-gcc.
I was following the instruction of http://llvm.org/releases/2.6/docs/GettingStarted.html, however when I finished installing the llvm and llvm-gcc successfully, the bin dir contains no llvm-gcc and llvm-g++, but contain gcc and g++.
The following is files in the directory of bin:
2010 Sep 09
2
[LLVMdev] install llvm-tv on ubuntu
Does anybody install llvm-tv on ubuntu9.04? please share how to do it. Thanks very much!
My problem is as followed:
I follow the instruction of README in source of llvm-tv.
First, I installe wxWidgets and graphviz, and then download the source of llvm from http://llvm.org/svn/llvm-project/llvm/trunk and download poolalloc from http://llvm.org/svn/llvm-project/poolalloc/trunk. Second, I compile
2010 Nov 30
1
[LLVMdev] the definitions of internal functions and external functions
Hi,
I have a llvm pass in hand written by other people. There are following statements that I couldn't understand:
-------------------------------program----------------------------------------------------
...
// Calls to internal functions.
if (!F->isDeclaration()) {
DOUT << " internal call" << opcode << ": " << name <<