search for: 213c

Displaying 11 results from an estimated 11 matches for "213c".

Did you mean: 213
2015 Feb 18
2
[LLVMdev] How to specify displacement range of a target instruction to llc
Hi, I'm working on a project that use llvm openrisc beckend (currently not part of the upstream). Right now I'm looking at a bug where llc generates memory instructions that has out-of-range displacement, for example l.sb 37668(r1), r2 in which 37668 is a 17 bit signed integer, but the instruction only allows 16 bit signed displacement. As a result, after running through the
2014 Oct 13
4
[LLVMdev] Passing llc options to Clang
Hi, Is there a way to passing llc options to clang, for example -march -mcpu, etc. ? Some threads suggested using -mllvm flag, I tried ./clang -mllvm -march=X86-64 -mcpu=core2 -o hello hello.c, but got "Unknown command line argument" Thanks, Ziqiang -------------- next part -------------- An HTML attachment was scrubbed... URL:
2015 Feb 28
2
[LLVMdev] Getting basic block address offset from its parent function
...t information. > > Hope this helps, > > John Criswell > > -- > John Criswell > Assistant Professor > Department of Computer Science, University of Rochesterhttp://www.cs.rochester.edu/u/criswell > > -- *Ziqiang Huang* *Electrical and Computer Engineering* *Hudson 213c, Duke University* *Tel: 919-491-3677* *Email: ziqiang.huang at duke.edu <ziqiang.huang at duke.edu>* -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150228/91add591/attachment.html>
2015 Mar 01
1
[LLVMdev] Getting basic block address offset from its parent function
...n Criswell >> >> -- >> John Criswell >> Assistant Professor >> Department of Computer Science, University of Rochesterhttp://www.cs.rochester.edu/u/criswell >> >> > > > -- > *Ziqiang Huang* > *Electrical and Computer Engineering* > *Hudson 213c, Duke University* > *Tel: 919-491-3677 <919-491-3677>* > *Email: ziqiang.huang at duke.edu <ziqiang.huang at duke.edu>* > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http...
2004 Aug 06
0
Extensive definitions with reserved identifiers
...__. static functions could be named icecastDoSomething() rather than _doSomething(). If you are interested, I could generate a patch. Kind regards Ingolf -- Ingolf Steinbach Jena-Optronik GmbH ingolf.steinbach@jena-optronik.de ++49 3641 200-147 PGP: 0x7B3B5661 213C 828E 0C92 16B5 05D0 4D5B A324 EC04 --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No...
2004 Aug 06
1
ultra-preliminary C++ wrapper for ogg & vorbis
Hi. I'm working on a very simple C++ wrapper for parts of libogg and libvorbis; I thought I would expose it for initial comments and the generally curious. No conveniences, no frills. No helpful higher-level abstractions. Just a translation from ogg_method_foo(ogg_method* data) to classes that hold the ogg_stream_state etc., so you may type mypage.bos() instead of
2015 Apr 07
2
[LLVMdev] How to see what's going on behind llc through clang/clang++
Hi, Is there a way to see what the default argument llc takes from clang/clang++ ? I'm debugging my backend with a very simple c++ program. Running through *clang++ -target myTarget -S simple.cpp -o simple.s * (bug does no show up) gives me different results from *clang++ -target myTarget -S -emit-llvm -o simple.cpp -o simple.ll* *llc simple.ll -o simple.s *(bug shows up) Just trying to
2004 Aug 06
3
Beta 2 Available...
Beta 2 has now been released...We are getting very very close to the 2.0 release. This could quite possibly be the last beta before 2.0.. Please help us by testing and submitting any bug reports to the icecast-dev mailing list! Here is the new stuff since beta1 * fixed a stability issue with the win32 build of icecast that would cause unexplained exits of the UI. * added new configuration
2004 Aug 06
3
Beta 2 Available...
Beta 2 has now been released...We are getting very very close to the 2.0 release. This could quite possibly be the last beta before 2.0.. Please help us by testing and submitting any bug reports to the icecast-dev mailing list! Here is the new stuff since beta1 * fixed a stability issue with the win32 build of icecast that would cause unexplained exits of the UI. * added new configuration
2015 Feb 28
0
[LLVMdev] Getting basic block address offset from its parent function
On 2/27/15 6:30 PM, Ziqiang Patrick Huang wrote: > Hi, all > > Is there a way of getting the basic block offset from its parent > function ? At the LLVM IR level, no. At the code generator layer (MachineFunctionPass layer or the MC layer), probably yes. > > What I'm trying to do is to get an execution count of each basic > blocks, so I need to know the starting
2015 Feb 27
2
[LLVMdev] Getting basic block address offset from its parent function
Hi, all Is there a way of getting the basic block offset from its parent function ? What I'm trying to do is to get an execution count of each basic blocks, so I need to know the starting address of each basic blocks. Obviously we can't get the absolute address before linking the program, but the offset relative to parent function should be available so I can take it and get the function