search for: lclangfrontendtool

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

Did you mean: clangfrontendtool
2012 Jul 09
0
[LLVMdev] ExecutionEngine fails to use MCJIT, non-unique static member variables
...1 -o qling main.o widget.o util.o consoleoutput.o codeinput.o codewidget.o moc_widget.o moc_consoleoutput.o moc_codeinput.o moc_codewidget.o -L/usr/lib64/qt4 - L/home/thomas/opt/llvm-debug/lib -lm -ldl -fPIC -rdynamic qt-hack/qatomic_sun.o -lcling -lclingInterpreter -lclingUtils -lclangFrontend -lclangFrontendTool -lclangSerialization - lclangDriver -lclangCodeGen -lclangParse -lclangSema -lclangEdit -lclangAnalysis -lclangRewrite -lclangAST -lclangLex -lclangBasic -lLLVMTableGen -lLLVMMCJIT - lLLVMRuntimeDyld -lLLVMObject -lLLVMMCDisassembler -lLLVMLinker -lLLVMipo -lLLVMInterpreter -lLLVMInstrumentation -l...
2012 Oct 10
0
[LLVMdev] Solicit code review (change to CodeGen)
LGTM. I will commit. On Oct 10, 2012, at 1:20 PM, Shuxin Yang <shuxin.llvm at gmail.com> wrote: > Hi, > > The attached is the fix to radar://11663049. The optimization can be outlined by following rules: > > (select (x != c), e, c) -> select (x != c), e, x), > (select (x == c), c, e) -> select (x == c), x, e) > where the <c> is an integer
2012 Oct 10
2
[LLVMdev] Solicit code review (change to CodeGen)
Hi, The attached is the fix to radar://11663049. The optimization can be outlined by following rules: (select (x != c), e, c) -> select (x != c), e, x), (select (x == c), c, e) -> select (x == c), x, e) where the <c> is an integer constant. The reason for this change is that : on x86, conditional-move-from-constant needs two instructions; however,