Displaying 4 results from an estimated 4 matches for "lclangcodegen".
Did you mean:
clangcodegen
2012 Jul 09
0
[LLVMdev] ExecutionEngine fails to use MCJIT, non-unique static member variables
...put.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 -lLLVMJIT
-lLLVMExecutionEngine -lLLVMDebugInfo -
lLL...
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
2008 Dec 18
0
[LLVMdev] Troubles with clang and llvm libraries and simple Xcode project
...AV/oct08/mergathon/llvmAV/
build/Release -L/usr/local/lib -F/code/luaAV/oct08/mergathon/llvmAV/
build/Release -filelist /code/luaAV/oct08/mergathon/llvmAV/build/
llvmAV.build/Release/weirdbug_nolib.build/Objects-normal/i386/
weirdbug_nolib.LinkFileList -lclangAnalysis -lclangAST -lclangBasic -
lclangCodeGen -lclangDriver -lclangLex -lclangParse -lclangRewrite -
lclangSema -lLLVMAnalysis -lLLVMArchive -lLLVMAsmParser -
lLLVMAsmPrinter -lLLVMBitReader -lLLVMBitWriter -lLLVMCodeGen -
lLLVMCore -lLLVMDebugger -lLLVMInstrumentation -lLLVMipa -lLLVMipo -
lLLVMLinker -lLLVMScalarOpts -lLLVMSelectionDAG -...
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,