similar to: Compiling a benchmark to IR (either from test-suite, or other benchmarks)

Displaying 20 results from an estimated 3000 matches similar to: "Compiling a benchmark to IR (either from test-suite, or other benchmarks)"

2018 Feb 26
0
Compiling a benchmark to IR (either from test-suite, or other benchmarks)
There is no immediate support for this in the test-suite cmake buildsystem. There is something in the Makefile system indeed, but it lacks documentation and I'm not aware of any examples of how to use it. I would recommend to use `CMAKE_C_FLAGS=--save-temps=obj cmake ...` in the test-suite. The --save-temps=obj flag will make clang place a bitcode file next to each .o file. - Matthias >
2018 Feb 21
1
Finding and replacing instruction patterns
Hi all -- first time poster, hoping that this is going to the right list. Also a complete LLVM newbie, so please correct any glaring errors in my understanding. I am an architecture researcher at Penn State working on Processing in Memory (PIM) architectures. Currently, I plan to use LLVM to detect and replace groups of instructions which can be accelerated in memory. Once a group of
2018 Mar 19
0
Generating a custom opcode from an LLVM intrinsic
ASM is the text output you want printed in a textual listing of the assembly. The curly braces you see in some text strings like "adcx{l}\t{$src, $dst|$dst, $src}" are there to provide different operand orders for at&t syntax vs intel syntax. Anything after $ matches the name in the outs/in part of the instruction. IIC_SSE_PREFETCH is part of the scheduler system to provide
2018 Mar 19
4
Generating a custom opcode from an LLVM intrinsic
Craig, thanks for the quick response. That helps a lot. I had no clue they were buried in there, though I guess I should have looked harder -- the hex should have given me a clue, perhaps! For the sake of my own edification (and not taking up too much of your time) I will try to generate it myself. I've found the definition of the "I" class at line 358 of
2019 Aug 29
3
404s within LLVM documentation
Hi all, I'm currently in the process of updating the Kaleidoscope tutorials (first and foremost, the ORC/BuildingAJIT ones), and I've noticed a fair few 404s which are lingering within the current visible documentation. Some of these don't seem to have linked to existing pages for a while. I was wondering if there was a way to set up a check in the buildbot to ensure that
2012 Nov 14
4
[LLVMdev] Kill TestSuiteMakefileGuide.html?
Sorry for the bother Jim, but I'm calling on you again for guidance about llvm-gcc mentions. What should be done about the mention of llvm-gcc on <http://llvm.org/docs/TestSuiteMakefileGuide.html>? Can we just roughly s/llvm-gcc/clang/ ? Daniel, feel free to provide guidance as well. -- Sean Silva On Wed, Nov 14, 2012 at 4:36 PM, Daniel Dunbar <daniel.dunbar at gmail.com> wrote:
2016 Nov 24
2
Running "different tests" on cmake based test-suite build
Hello Friends, With configure based build deprecated on llvm, how can I run different tests/pass on the suite (http://llvm.org/docs/TestSuiteMakefileGuide.html#running-different-tests)? Right now I am having a hacky solution, which includes running the "still present" configure file of test-suite to generate the MAKE.<MYPASS>.Makefile; > cd external-testsuite-build-loc
2015 Jan 27
2
[LLVMdev] CMake: Gold linker detection
Hi Rafael, I looked at the code which you pushed a while ago to check for the gold linker. Code below: execute_process( COMMAND ${CMAKE_C_COMPILER} -Wl,--version OUTPUT_VARIABLE stdout ERROR_QUIET) if("${stdout}" MATCHES "GNU gold") set(LLVM_LINKER_IS_GOLD ON) endif() I was trying to build runtime libraries (compiler-rt)
2012 Nov 14
0
[LLVMdev] Kill TestSuiteMakefileGuide.html?
Unfortunately, LNT still uses the Makefiles underneath, and the Makefiles support a few users who use the more advanced hackery they support. We should keep it for the time being. - Daniel On Nov 14, 2012, at 13:30, Sean Silva <silvas at purdue.edu> wrote: > The top of the file says that it is deprecated in favor of LNT. Is > this document still needed? It makes mention of
2012 Nov 15
0
[LLVMdev] Kill TestSuiteMakefileGuide.html?
Hi Sean, On 14/11/12 23:53, Sean Silva wrote: > Sorry for the bother Jim, but I'm calling on you again for guidance > about llvm-gcc mentions. What should be done about the mention of > llvm-gcc on <http://llvm.org/docs/TestSuiteMakefileGuide.html>? Can we > just roughly s/llvm-gcc/clang/ ? Daniel, feel free to provide guidance > as well. to some extent llvm-gcc lives on
2019 Aug 29
2
404s within LLVM documentation
Patrick, how long does the crawl take? I suspect if we fixed internal documentation links so that they point to local copies of documentation when building locally it would be quite quick (no actual idea though). That in turn would probably make it feasible to add to the existing documentation build bots, I think. James On Thu, 29 Aug 2019 at 03:47, Neil Nelson via llvm-dev < llvm-dev at
2003 Oct 24
8
SS7 signaling/Softswitch
I'm confused a bit about the following and was hoping to get some answers on this group - What is exactly implied when we say asterisk can connect to a PSTN. Does it mean connecting to the PSTN via PRI/T1/E1? If yes, then I assume asterisk does not need to do any SS7 signaling and all it does (playing the role of a PBX) is to connect to a Class 5 Switch at the CO. Is this a correct statement?
2003 Dec 02
7
Meetme Recording
Hi, Can anybody explain me in configuring Asterisk to record a conference? Regards... Girish _________________________________________________________________ Add zing to Hotmail. Get FREE newsletters. http://server1.msn.co.in/features/general/Newsletters/index.asp Subscribe now!
2003 Oct 16
3
Starting * with G729 licences
Hi all: I've just purchase some licences of G.729 codecs, and I like to bring up * using /etc/rc.d/init.d script. Does anyone knows how to start in the "old" way? Thanks in advance, Gus -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20031016/6dd07c4b/attachment.htm
2018 Mar 20
2
Encoding an X86 format with long operands
Whoops - sorry for the confusion. n would be set in stone beforehand. I basically meant to indicate that we'd either be looking at a 32 bit or 64 bit system, ie 4 byte or 8 byte addresses. On Tue, Mar 20, 2018, 1:07 PM Craig Topper <craig.topper at gmail.com> wrote: > Hi Gus, > > When you say "n byte destination" you mean you want to encode an n byte > address as
2012 Nov 14
2
[LLVMdev] Kill TestSuiteMakefileGuide.html?
The top of the file says that it is deprecated in favor of LNT. Is this document still needed? It makes mention of llvm-gcc as well... -- Sean Silva
2018 Mar 20
2
Encoding an X86 format with long operands
Hi all. tl;dr: I would like to add a long x86 instruction which doesn't conform to any existing format that I know; I'm not sure where to start. I am attempting to add an instruction into X86, to be simulated in gem5. I've already added a simple, opcode-only instruction which I can successfully decode and run in gem5, so I am roughly familiar with .td files and how backends are built
2003 Aug 18
3
Call transfer ATA186
Hi all: I'm testing a new installation of *, bringing up some ATA186. In * environment, all stuff works greats. The only thing that don't work is a Call Transfer, but the 3Party works ok. Some time ago I read that somebody had proven this functionality successfully. If somebody knows what I missing, please let me know. Thanks in advance, Gus -------------- next part -------------- An
2005 Aug 08
1
ansi2sys and patch for ansieditor
I send to the list the perl script to make the inverse of sys2ansi.pl and convert any ansi file to syslinux format. I recommend jave editor to deal with ascii arts and ascii fonts www.jave.de and for painting colours over the ascii file, the ansieditor from http://www.win.ua.ac.be/~wschrep/ansied/ with the patch attached for import and export to syslinux directly and for colour paint mode to
2010 Feb 19
5
autoconf error with Wine 1.1.39
I have got this error when trying to build Wine 1.1.39 in Fedora 12 Code: + autoreconf configure:4993: error: possibly undefined macro: AS_VAR_APPEND If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. autoreconf: /usr/bin/autoconf failed with exit status: 1 In Fedora 12 installed autoconf-2.63.