search for: codegen

Displaying 20 results from an estimated 6906 matches for "codegen".

2018 Jan 24
2
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...ent… (authored by dneilson, > committed by ). > > Repository: > rL LLVM > > https://reviews.llvm.org/D41675 > > Files: > llvm/trunk/docs/LangRef.rst > llvm/trunk/include/llvm/IR/IntrinsicInst.h > llvm/trunk/include/llvm/IR/Intrinsics.td > llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp > llvm/trunk/lib/IR/AutoUpgrade.cpp > llvm/trunk/lib/IR/IRBuilder.cpp > llvm/trunk/lib/IR/Verifier.cpp > llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp > llvm/trunk/lib/Target/ARM/ARMFastISel.cpp > llvm/trunk/lib/Target/Mips/Mips...
2018 Jan 24
0
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...move/memset in favour of alignment… (authored by dneilson, committed by ). Repository: rL LLVM https://reviews.llvm.org/D41675 Files: llvm/trunk/docs/LangRef.rst llvm/trunk/include/llvm/IR/IntrinsicInst.h llvm/trunk/include/llvm/IR/Intrinsics.td<http://rinsics.td/> llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp llvm/trunk/lib/IR/AutoUpgrade.cpp llvm/trunk/lib/IR/IRBuilder.cpp llvm/trunk/lib/IR/Verifier.cpp llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp llvm/trunk/lib/Target/ARM/ARMFastISel.cpp llvm/trunk/lib/Target/Mips/MipsFastISel.cpp llvm/trunk/lib/...
2018 Jan 25
2
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...y ). >> >> Repository: >> rL LLVM >> >> https://reviews.llvm.org/D41675 >> >> Files: >> llvm/trunk/docs/LangRef.rst >> llvm/trunk/include/llvm/IR/IntrinsicInst.h >> llvm/trunk/include/llvm/IR/Intrinsics.td >> llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp >> llvm/trunk/lib/IR/AutoUpgrade.cpp >> llvm/trunk/lib/IR/IRBuilder.cpp >> llvm/trunk/lib/IR/Verifier.cpp >> llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp >> llvm/trunk/lib/Target/ARM/ARMFastISel.cpp >> llvm/tr...
2018 Jan 25
3
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...gt;>> rL LLVM >>> >>> https://reviews.llvm.org/D41675 >>> >>> Files: >>> llvm/trunk/docs/LangRef.rst >>> llvm/trunk/include/llvm/IR/IntrinsicInst.h >>> llvm/trunk/include/llvm/IR/Intrinsics.td >>> llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp >>> llvm/trunk/lib/IR/AutoUpgrade.cpp >>> llvm/trunk/lib/IR/IRBuilder.cpp >>> llvm/trunk/lib/IR/Verifier.cpp >>> llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp >>> llvm/trunk/lib/Target/ARM/ARMFastISel.cp...
2018 Jan 25
0
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...move/memset in favour of alignment… (authored by dneilson, committed by ). Repository: rL LLVM https://reviews.llvm.org/D41675 Files: llvm/trunk/docs/LangRef.rst llvm/trunk/include/llvm/IR/IntrinsicInst.h llvm/trunk/include/llvm/IR/Intrinsics.td<http://rinsics.td/> llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp llvm/trunk/lib/IR/AutoUpgrade.cpp llvm/trunk/lib/IR/IRBuilder.cpp llvm/trunk/lib/IR/Verifier.cpp llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp llvm/trunk/lib/Target/ARM/ARMFastISel.cpp llvm/trunk/lib/Target/Mips/MipsFastISel.cpp llvm/trunk/lib/...
2018 Jan 25
0
[PATCH] D41675: Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1)
...move/memset in favour of alignment… (authored by dneilson, committed by ). Repository: rL LLVM https://reviews.llvm.org/D41675 Files: llvm/trunk/docs/LangRef.rst llvm/trunk/include/llvm/IR/IntrinsicInst.h llvm/trunk/include/llvm/IR/Intrinsics.td<http://rinsics.td/> llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp llvm/trunk/lib/IR/AutoUpgrade.cpp llvm/trunk/lib/IR/IRBuilder.cpp llvm/trunk/lib/IR/Verifier.cpp llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp llvm/trunk/lib/Target/ARM/ARMFastISel.cpp llvm/trunk/lib/Target/Mips/MipsFastISel.cpp llvm/trunk/lib/...
2020 Aug 10
2
Orc JIT v2 breaks OpenMP in 11.x branch?
...g invocation being made? Is it from inside a callback from ORC, or is it before you add your module to the JIT? -- Lang. On Mon, Aug 3, 2020 at 5:41 AM Geoff Levner <glevner at gmail.com> wrote: > Here, by the way, is the stack trace leading to the failed assertion. > Note #9: clang::CodeGen::CGOpenMPRuntime::emitForStaticFinish(). > > #0 0x00007fb70fa44870 in abort () from /usr/lib64/libc.so.6 > #1 0x00007fb70fa3c0e6 in __assert_fail_base () from /usr/lib64/libc.so.6 > #2 0x00007fb70fa3c192 in __assert_fail () from /usr/lib64/libc.so.6 > #3 0x00007fb715ca1a68 in llv...
2020 Aug 03
2
Orc JIT v2 breaks OpenMP in 11.x branch?
Greetings, Lang and other JITters, Last week I moved our Orc v2-based app from top-of-tree to the new 11.x branch, and it no longer handles C++ code containing OpenMP directives correctly. More specifically, if I JIT compile a function containing OpenMP parallel/for pragmas, using a release version of LLVM, the code compiles and seems to work, but if I try to write the module's bitcode to
2020 Aug 10
2
[EXTERNAL] Re: Orc JIT v2 breaks OpenMP in 11.x branch?
...m inside a callback from ORC, or is it before you add your module to the JIT? > > -- Lang. > > On Mon, Aug 3, 2020 at 5:41 AM Geoff Levner <glevner at gmail.com> wrote: >> >> Here, by the way, is the stack trace leading to the failed assertion. >> Note #9: clang::CodeGen::CGOpenMPRuntime::emitForStaticFinish(). >> >> #0 0x00007fb70fa44870 in abort () from /usr/lib64/libc.so.6 >> #1 0x00007fb70fa3c0e6 in __assert_fail_base () from /usr/lib64/libc.so.6 >> #2 0x00007fb70fa3c192 in __assert_fail () from /usr/lib64/libc.so.6 >> #3 0x000...
2011 Mar 14
0
[LLVMdev] LLVM 2.9 RC1 Pre-release Tarballs
...ualcore ARM running Ubuntu Natty gunzip llvm-2.9rc1.src.tar.gz tar zxvf llvm-2.9rc1.src.tar cd llvm-2.9-build ../llvm-2.9rc1/configure --enable-shared time make clean ;time make CXXFLAGS=-marm CFLAGS=-marm xranby at panda:/media/dh0/llvm-2.9-build$ time make check Failing Tests (64): LLVM :: CodeGen/CellSPU/2009-01-01-BrCond.ll LLVM :: CodeGen/CellSPU/call_indirect.ll LLVM :: CodeGen/CellSPU/extract_elt.ll LLVM :: CodeGen/CellSPU/fcmp64.ll LLVM :: CodeGen/CellSPU/fneg-fabs.ll LLVM :: CodeGen/CellSPU/i64ops.ll LLVM :: CodeGen/CellSPU/immed64.ll LLVM :: CodeGen/CellSP...
2020 Aug 10
2
[EXTERNAL] Re: Orc JIT v2 breaks OpenMP in 11.x branch?
...you add your module to the JIT? > >> > >> -- Lang. > >> > >> On Mon, Aug 3, 2020 at 5:41 AM Geoff Levner <glevner at gmail.com> wrote: > >>> Here, by the way, is the stack trace leading to the failed assertion. > >>> Note #9: clang::CodeGen::CGOpenMPRuntime::emitForStaticFinish(). > >>> > >>> #0 0x00007fb70fa44870 in abort () from /usr/lib64/libc.so.6 > >>> #1 0x00007fb70fa3c0e6 in __assert_fail_base () from /usr/lib64/libc.so.6 > >>> #2 0x00007fb70fa3c192 in __assert_fail () from /us...
2011 Dec 13
5
[LLVMdev] make check-all failing 18 tests with --enable-optimized
As part of our automated testing, I'm running make check-all to watch for failures. One of my builds uses the --enable-optimized option to configure. When I build the latest trunk, I'm now seeing 18 failing tests: Clang :: Preprocessor/macro_paste_c_block_comment.c LLVM :: CodeGen/ARM/2011-05-04-MultipleLandingPadSuccs.ll LLVM :: CodeGen/ARM/2011-11-14-EarlyClobber.ll LLVM :: CodeGen/ARM/lsr-unfolded-offset.ll LLVM :: CodeGen/Generic/2003-05-28-ManyArgs.ll LLVM :: CodeGen/Generic/print-arith-fp.ll LLVM :: CodeGen/Thumb/2009-08-20-ISelBug.ll LLVM :: Co...
2020 Aug 10
2
[EXTERNAL] Re: Orc JIT v2 breaks OpenMP in 11.x branch?
...t;> > >>>> -- Lang. > >>>> > >>>> On Mon, Aug 3, 2020 at 5:41 AM Geoff Levner <glevner at gmail.com> wrote: > >>>>> Here, by the way, is the stack trace leading to the failed assertion. > >>>>> Note #9: clang::CodeGen::CGOpenMPRuntime::emitForStaticFinish(). > >>>>> > >>>>> #0 0x00007fb70fa44870 in abort () from /usr/lib64/libc.so.6 > >>>>> #1 0x00007fb70fa3c0e6 in __assert_fail_base () from /usr/lib64/libc.so.6 > >>>>> #2 0x00007fb70fa3c...
2020 Aug 10
2
[EXTERNAL] Re: Orc JIT v2 breaks OpenMP in 11.x branch?
...>>>> -- Lang. >>>>>> >>>>>> On Mon, Aug 3, 2020 at 5:41 AM Geoff Levner <glevner at gmail.com> wrote: >>>>>>> Here, by the way, is the stack trace leading to the failed assertion. >>>>>>> Note #9: clang::CodeGen::CGOpenMPRuntime::emitForStaticFinish(). >>>>>>> >>>>>>> #0 0x00007fb70fa44870 in abort () from /usr/lib64/libc.so.6 >>>>>>> #1 0x00007fb70fa3c0e6 in __assert_fail_base () from /usr/lib64/libc.so.6 >>>>>>> #2 0x0...
2008 Jun 11
0
[LLVMdev] some warning from VS2005 (requested by gabor)
Hi, Some random sample of VS warning: Lot of 64 bits conversions: AsmPrinter.cpp ..\..\lib\CodeGen\AsmPrinter.cpp(277) : warning C4244: 'initializing' : conversion from 'uint64_t' to 'unsigned int', possible loss of data ..\..\lib\CodeGen\AsmPrinter.cpp(614) : warning C4244: 'argument' : conversion from 'uint64_t' to 'int', possible loss of data .....
2010 Feb 07
3
[LLVMdev] Help with Mac OS X 10.6.2 build
...file is not of required architecture ld: warning: in /opt/llvm/lib/libLLVMSystem.a, file is not of required architecture Undefined symbols: "llvm::SymbolTableListTraits<llvm::Instruction, llvm::BasicBlock>::addNodeToList(llvm::Instruction*)", referenced from: BinaryExprAST::Codegen() in ccHkdHVT.o BinaryExprAST::Codegen() in ccHkdHVT.o CallExprAST::Codegen() in ccHkdHVT.o FunctionAST::Codegen() in ccHkdHVT.o llvm::IRBuilder<true, llvm::ConstantFolder>::InsertHelper(llvm::Instruction*, llvm::Twine const&) constin ccHkdHVT.o...
2013 Feb 08
2
[LLVMdev] assert when mixing static and non-static members with an external AST source
...ext::getASTRecordLayout (this=0xd52ce0, D=0xd6a140) at /home/athirumurthi/git/lldb/tools/clang/lib/AST/RecordLayoutBuilder.cpp:2430 #14 0x00007ffff4c46af0 in (anonymous namespace)::CGRecordLayoutBuilder::Layout (this=0x7fffffff66a8, D=0xd6a140) at /home/athirumurthi/git/lldb/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp:208 #15 0x00007ffff4c461ab in clang::CodeGen::CodeGenTypes::ComputeRecordLayout (this=0xd63d90, D=0xd6a140, Ty=0xd65c10) at /home/athirumurthi/git/lldb/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp:969 #16 0x00007ffff4cce43f in clang::CodeGen::CodeGenTypes::Convert...
2011 Mar 09
5
[LLVMdev] LLVM 2.9 RC1 Pre-release Tarballs
There are LLVM 2.9 RC1 pre-release tarballs source available. You can find them here: http://llvm.org/pre-releases/2.9/ Please download them, build them, and compile things to your heart's content. And most importantly file a bunch of bug reports. :-) Share and enjoy! -bw
2011 Dec 15
2
[LLVMdev] llvm/clang test failures on powerpc-darwin8
...res should be addressed first as top priority? Are there any low-hanging fruit that look easy to fix (looking at the full log)? Fang powerpc-darwin8-g++-4.0.1 bootstrap test summary: ******************** Testing Time: 65105.62s ******************** Unexpected Passing Tests (1): Clang :: CodeGenCXX/member-alignment.cpp ******************** Failing Tests (204): Clang : : CXX/expr/expr.unary/expr.unary.noexcept/cg.cpp Clang : : CodeGen/2003-08-17-DeadCodeShortCircuit.c Clang : : CodeGen/2004-06-17-UnorderedBuiltins.c Clang : : CodeGen/bitfield-promote.c Clang :...
2013 Feb 15
0
[LLVMdev] assert when mixing static and non-static members with an external AST source
...ext::getASTRecordLayout (this=0xd52ce0, D=0xd6a140) at /home/athirumurthi/git/lldb/tools/clang/lib/AST/RecordLayoutBuilder.cpp:2430 #14 0x00007ffff4c46af0 in (anonymous namespace)::CGRecordLayoutBuilder::Layout (this=0x7fffffff66a8, D=0xd6a140) at /home/athirumurthi/git/lldb/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp:208 #15 0x00007ffff4c461ab in clang::CodeGen::CodeGenTypes::ComputeRecordLayout (this=0xd63d90, D=0xd6a140, Ty=0xd65c10) at /home/athirumurthi/git/lldb/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp:969 #16 0x00007ffff4cce43f in clang::CodeGen::CodeGenTypes::Convert...