search for: edtokenvisitor_t

Displaying 4 results from an estimated 4 matches for "edtokenvisitor_t".

2010 Jul 22
1
[LLVMdev] llvmv build failure
Building llvm is failing for me today. I am using clang++ to build (which has not changed). llvm[2]: Compiling EDMain.cpp for Debug+Asserts build (PIC) EDMain.cpp:267:39: error: C-style cast from '::EDTokenVisitor_t' (aka 'int (^)(EDTokenRef)') to 'llvm::EDTokenVisitor_t' (aka 'int (^) (llvm::EDToken *)') is not allowed return ((EDInst*)inst)->visitTokens((llvm::EDTokenVisitor_t)visitor); ^~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated. mak...
2010 Jul 22
0
[LLVMdev] llvmv build failure
On Jul 22, 2010, at 8:57 AM, Fariborz Jahanian wrote: > > Building llvm is failing for me today. I am using clang++ to build > (which has not changed). > > llvm[2]: Compiling EDMain.cpp for Debug+Asserts build (PIC) > EDMain.cpp:267:39: error: C-style cast from '::EDTokenVisitor_t' (aka > 'int (^)(EDTokenRef)') to 'llvm::EDTokenVisitor_t' (aka 'int (^) > (llvm::EDToken *)') is not allowed > return ((EDInst*)inst)->visitTokens((llvm::EDTokenVisitor_t)visitor); > ^~~~~~~~~~~~~~~~~~~~~~~~ >...
2010 Jul 22
1
[LLVMdev] llvmv build failure
...at 8:57 AM, Fariborz Jahanian wrote: > >> >> Building llvm is failing for me today. I am using clang++ to build >> (which has not changed). >> >> llvm[2]: Compiling EDMain.cpp for Debug+Asserts build (PIC) >> EDMain.cpp:267:39: error: C-style cast from '::EDTokenVisitor_t' (aka >> 'int (^)(EDTokenRef)') to 'llvm::EDTokenVisitor_t' (aka 'int (^) >> (llvm::EDToken *)') is not allowed >> return ((EDInst*)inst)->visitTokens((llvm::EDTokenVisitor_t)visitor); >> ^~~~~~~~~~~~~~~~~~~~...
2010 Jul 22
3
[LLVMdev] Scheduling and alias analysis
Hello, I have recently been working on scheduling for register pressure and ran into the issue of alias analysis when trying to integrate it with LLVM. Looking at the code it seems that the pre register allocation scheduling doesn't use alias analysis information. On the contrary, post-RA uses it. I'm wondering if there is a good reason for this fact. Indeed, it seems to me that alias