search for: noasserts

Displaying 19 results from an estimated 19 matches for "noasserts".

2015 Sep 01
3
RFC: LTO should use -disable-llvm-verifier
...ng :) Glad I found consensus, but I want to double-check that this makes sense to add to the driver. I didn't quite think through the implications myself. Since the driver doesn't know if there's any bitcode, or if LTO is going to be invoked, it seems like I'll have to change the noasserts driver to *always* pass the option to the linker just in case we are doing LTO. Is this reasonable? Also, I realized that passing `-mllvm -disable-llvm-verifier` to ld64 is redundant... so I'm thinking `-mllvm -disable-verify`. Make sense?
2015 Sep 16
5
RFC: LTO should use -disable-llvm-verifier
...quite think through the >>>>>>> implications myself. >>>>>>> >>>>>>> Since the driver doesn't know if there's any bitcode, or if LTO is >>>>>>> going to be invoked, it seems like I'll have to change the noasserts >>>>>>> driver to *always* pass the option to the linker just in case we are >>>>>>> doing LTO. Is this reasonable? >>>>>>> >>>>>>> Also, I realized that passing `-mllvm -disable-llvm-verifier` to ld64 >>&gt...
2009 Jun 23
2
[LLVMdev] How to add a trivial LLVM intrinsic
Hello, As an experiment, I'm simply trying to add a trivial intrinsic to LLVM, but I'm having trouble, which suggests that I'm overlooking the obvious ;) Platform is GCC-4.2.4/LLVM from SVN/x86. First, I've read the page here about 10 times, so I'll speculate that my reading comprehension is lacking: http://www.llvm.org/docs/ExtendingLLVM.html Code I've added to the
2015 Sep 01
2
RFC: LTO should use -disable-llvm-verifier
...nsus, but I want to double-check that this makes > sense to add to the driver. I didn't quite think through the > implications myself. > > Since the driver doesn't know if there's any bitcode, or if LTO is > going to be invoked, it seems like I'll have to change the noasserts > driver to *always* pass the option to the linker just in case we are > doing LTO. Is this reasonable? > > Also, I realized that passing `-mllvm -disable-llvm-verifier` to ld64 > is redundant... so I'm thinking `-mllvm -disable-verify`. Make > sense? > > *sigh* Reas...
2015 Sep 03
4
RFC: LTO should use -disable-llvm-verifier
...> > > sense to add to the driver. I didn't quite think through the > > > implications myself. > > > > > > Since the driver doesn't know if there's any bitcode, or if LTO is > > > going to be invoked, it seems like I'll have to change the noasserts > > > driver to *always* pass the option to the linker just in case we are > > > doing LTO. Is this reasonable? > > > > > > Also, I realized that passing `-mllvm -disable-llvm-verifier` to ld64 > > > is redundant... so I'm thinking `-mllvm -disable-...
2009 Jun 24
0
[LLVMdev] How to add a trivial LLVM intrinsic
Hi, > After invoking: > llvm-gcc -g test.c -o test.native > ----------------- > The compiler returns: > cc1: Function.cpp:323: unsigned int llvm::Function::getIntrinsicID(bool) > const: Assertion `noAssert && "Invalid LLVM intrinsic name"' failed. > test.c:24: internal compiler error: Aborted did you rebuild llvm-gcc after building llvm with your new
2015 Sep 16
3
RFC: LTO should use -disable-llvm-verifier
...add to the driver. I didn't quite think through the >>>>> implications myself. >>>>> >>>>> Since the driver doesn't know if there's any bitcode, or if LTO is >>>>> going to be invoked, it seems like I'll have to change the noasserts >>>>> driver to *always* pass the option to the linker just in case we are >>>>> doing LTO. Is this reasonable? >>>>> >>>>> Also, I realized that passing `-mllvm -disable-llvm-verifier` to ld64 >>>>> is redundant... so I...
2008 Feb 20
1
[LLVMdev] Invalid intrinsic name error
Hi, Thank You for the advice and we were able to solve that problem by the following modifications to the Instrinsics.td file. But I now have an "Invalid Intrinsic name" error This error occurs presumably because the created intrinsic is named: llvm.migrate_begin.i32 Intrinsics.gen checks for a string length of 18 (i.e. the length without the .i32). Kindly help me through it.
2012 Sep 17
0
[LLVMdev] Fail to compile LLVM on Gentoo Linux
Hi Duncan. Probably it depends on exact gcc version and possibly assert/noassert build option. I've got this problem with gcc 4.5.2 on 64-bit Suse (I don't remember whether assertions were enabled). On 17 September 2012 21:12, Duncan Sands <baldrick at free.fr> wrote: > Hi Sergey, > > >> This is a known gcc bug >>
2012 Sep 17
2
[LLVMdev] Fail to compile LLVM on Gentoo Linux
Hi Sergey, > This is a known gcc bug > (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53670). GCC 4.5 can't > compile clang 3.1 are you sure? I built the LLVM/clang-3.1 release binaries for ubuntu 64 bits using gcc-4.5. Ciao, Duncan. > > On 13 September 2012 06:53, 陳韋任 (Wei-Ren Chen) <chenwj at iis.sinica.edu.tw> wrote: >> Hi all, >> >> I think
2015 Sep 04
2
RFC: LTO should use -disable-llvm-verifier
...to the driver. I didn't quite think through the > >>>> implications myself. > >>>> > >>>> Since the driver doesn't know if there's any bitcode, or if LTO is > >>>> going to be invoked, it seems like I'll have to change the noasserts > >>>> driver to *always* pass the option to the linker just in case we are > >>>> doing LTO. Is this reasonable? > >>>> > >>>> Also, I realized that passing `-mllvm -disable-llvm-verifier` to ld64 > >>>> is redundant... so...
2015 Sep 04
2
RFC: LTO should use -disable-llvm-verifier
...I didn't quite think through the >> >>>> implications myself. >> >>>> >> >>>> Since the driver doesn't know if there's any bitcode, or if LTO is >> >>>> going to be invoked, it seems like I'll have to change the noasserts >> >>>> driver to *always* pass the option to the linker just in case we are >> >>>> doing LTO. Is this reasonable? >> >>>> >> >>>> Also, I realized that passing `-mllvm -disable-llvm-verifier` to ld64 >> >>>&gt...
2015 Sep 04
2
RFC: LTO should use -disable-llvm-verifier
...hink through the > >> >>>> implications myself. > >> >>>> > >> >>>> Since the driver doesn't know if there's any bitcode, or if LTO is > >> >>>> going to be invoked, it seems like I'll have to change the noasserts > >> >>>> driver to *always* pass the option to the linker just in case we are > >> >>>> doing LTO. Is this reasonable? > >> >>>> > >> >>>> Also, I realized that passing `-mllvm -disable-llvm-verifier` to ld64 >...
2009 Feb 07
0
[LLVMdev] 2.5 prerelease: configure script doesn't have an option to disable GoogleTest
I haven't scheduled time to investigate this yet. My guess is that GoogleTest config is getting confused on Microsoft vs POSIX mkdir when going through autoconf: llvm[3]: Compiling gtest-filepath.cc for Release-Asserts build g:\mingw32\bin\../lib/gcc/mingw32/4.2.1-dw2/../../../../include/io.h: In member function 'bool testing::internal::FilePath::CreateFolder() const':
2015 Sep 04
5
RFC: LTO should use -disable-llvm-verifier
...;>>>>>> implications myself. > >>>>>>>> > >>>>>>>> Since the driver doesn't know if there's any bitcode, or if LTO is > >>>>>>>> going to be invoked, it seems like I'll have to change the noasserts > >>>>>>>> driver to *always* pass the option to the linker just in case we are > >>>>>>>> doing LTO. Is this reasonable? > >>>>>>>> > >>>>>>>> Also, I realized that passing `-mllvm -disabl...
2009 Jun 24
2
[LLVMdev] How to add a trivial LLVM intrinsic
Thank you for your reply--I've now done that. Unfortunately, there's a new error now: ------------ Cannot yet select: intrinsic %llvm.test_intrinsic test.c:25: internal compiler error: Aborted Please submit a full bug report, with preprocessed source if appropriate. See <URL:http://developer.apple.com/bugreporter> for instructions. ------------ I've switched to using LLVM-2.5
2008 Feb 19
0
[LLVMdev] Problem with variable argument intrinsics
On Feb 19, 2008, at 1:11 AM, aditya vishnubhotla wrote: > Hi, > I tried creating variable argument intrinsics which > are to be placeholders for some instructions which > should not be executed by the backend. > > Kindly help me with the errors in my "migrate_begin" > intrinsic creation > > //Additions made to Intrinsics.td file: > > def
2008 Feb 19
2
[LLVMdev] Problem with variable argument intrinsics
Hi, I tried creating variable argument intrinsics which are to be placeholders for some instructions which should not be executed by the backend. Kindly help me with the errors in my "migrate_begin" intrinsic creation //Additions made to Intrinsics.td file: def llvm_migrate_begin : LLVMType<iAny>; def int_migrate_begin :
2015 Aug 31
2
RFC: LTO should use -disable-llvm-verifier
On Mon, Aug 31, 2015 at 11:44 AM, Duncan P. N. Exon Smith via llvm-dev < llvm-dev at lists.llvm.org> wrote: > > > On 2015-Aug-31, at 11:41, Eric Christopher <echristo at gmail.com> wrote: > > > > > > > > On Mon, Aug 31, 2015 at 11:40 AM Duncan P. N. Exon Smith via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > > > > On