similar to: [LLVMdev] My documentation work

Displaying 20 results from an estimated 3000 matches similar to: "[LLVMdev] My documentation work"

2012 Nov 19
0
[LLVMdev] My documentation work
On Mon, Nov 19, 2012 at 03:50:46PM +0800, Jonathan wrote: > Sean, > > I refresh my book "Write a llvm backend tutorial for cpu0 version 3" in https://www.dropbox.com/sh/2pkh1fewlq2zag9/r9n4gnqPm7 Do you also update this link? http://ccckmit.wdfiles.com/local--files/book/LLVMBackendBook.pdf Regards, chenwj -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of
2012 Nov 19
1
[LLVMdev] My documentation work
Mr. Chen, The link is out of date, please go to http://ccckmit.wikidot.com/ and select LLVM row in the table. My first version book is put on my brother's web site. Now, I create my Dropbox link. Best regards Jonathan --- 12/11/19 (一),陳韋任 (Wei-Ren Chen) <chenwj at iis.sinica.edu.tw> 寫道: 寄件者: 陳韋任 (Wei-Ren Chen) <chenwj at iis.sinica.edu.tw> 主旨: Re: [LLVMdev] My documentation
2012 Nov 04
3
[LLVMdev] I can debug llvm source code by lldb on iMac
Ten days ago, I asked "Can I debug llvm source code by iMac Xcode?". I still cannot do it now, but I can debug llvm source code by iMac lldb. I write it down on section  "1.4  Create LLVM.xcodeproj of supporting cpu0 by terminal cmake command" of GammaLLVMBackendBook.pdf in https://www.dropbox.com/sh/2pkh1fewlq2zag9/r9n4gnqPm7  Best regards Jonathan
2012 Nov 19
0
[LLVMdev] My documentation work
> I refresh my book "Write a llvm backend tutorial for cpu0 version 3" in https://www.dropbox.com/sh/2pkh1fewlq2zag9/r9n4gnqPm7 Great! I'm glad to see it coming along. Could you maybe explain a couple changes and improvements since the previous version? Just a few days ago somebody in IRC was looking for documentation on how to write a backend. Your book was one of the first
2012 Nov 05
0
[LLVMdev] I can debug llvm source code by lldb on iMac
You should be able to create an xcode project using cmake and then use that to build and debug llvm (as you've discovered how to create an xcode project). Doug may know more. -eric On Sun, Nov 4, 2012 at 4:36 AM, gamma_chen <gamma_chen at yahoo.com.tw> wrote: > Ten days ago, I asked "Can I debug llvm source code by iMac Xcode?". I > still cannot do it now, but I can
2012 Dec 04
5
[LLVMdev] LLVM documentation work help
Sean, I can create html, pdf and epub, then put them on <https://github.com/Jonathan2251/lbd/tree/gh-pages>. The uvbook example as below can click the pdf link and pop up a download window while I cannot. The uvbook link is put on http://username.github.com/... while the "make gh-pages" put them on https://github.com/username/...  How can I have the download link like uvbook
2012 Dec 04
1
[LLVMdev] LLVM documentation work help
Wei-Ren, Sorry, currently, I have an English helper in documentation. The cpu0 is my brother teaching material for college, and I did llvm backend compiler tutorial  for cpu0 since I didn't find a good tutorial in llvm backend design. As I know, there are many way to contribute back to open source or llvm. For example, write qemu for cpu0 is a extended work in cpu0 llvm backend design. Or
2012 Dec 04
0
[LLVMdev] LLVM documentation work help
Hi Jonathan, sorry for the hijack. Can I help you writing the document? Regards, chenwj On Tue, Dec 04, 2012 at 10:15:33AM +0800, gamma_chen wrote: > Sean, > > I can create html, pdf and epub, then put them on > <https://github.com/Jonathan2251/lbd/tree/gh-pages>. > The uvbook example as below can click the pdf link and pop up a download window > while I cannot. The
2012 Nov 20
1
[LLVMdev] My documentation work
Sean, Thank your valuable opinion. I am doing the revision history now. I also review my book and find I made a mistake in LDI instruction. According cpu0, this instruction is move immediate value (for example, 5) to register, not add immediate value to register. I need to fix this for reader's feeling. I am an experienced programmer and I am less-experienced book writer. Please correct me if
2012 Dec 04
0
[LLVMdev] LLVM documentation work help
You may need a ".nojekyll" file. uvbook has one < https://github.com/nikhilm/uvbook/blob/gh-pages/.nojekyll>. Also see < https://help.github.com/articles/files-that-start-with-an-underscore-are-missing >. Let me know if that doesn't work. -- Sean Silva On Mon, Dec 3, 2012 at 9:15 PM, gamma_chen <gamma_chen at yahoo.com.tw> wrote: > Sean, > > I can
2012 Dec 03
0
[LLVMdev] LLVM documentation work help
Let me explain how uvbook does it. They use a feature of github called "github pages", which provides small static website hosting. The way that github pages works is that you make a git branch `gh-pages` which contains the generated HTML. They explain it better here <https://help.github.com/articles/creating-project-pages-manually>. You can see how uvbook does it by looking at
2012 Dec 03
3
[LLVMdev] LLVM documentation work help
Sean, The `.. code-block:: bash` is work. Thank your information. Currently, I can put reStructuredText files on github. But, your example uvbook seems put the html and pdf on different github directory. Do you put html and pdf on github with version control? Jonathan On 2012/12/3, at 上午7:43, Sean Silva <silvas at purdue.edu> wrote: > It looks like things are going well. > >
2012 Dec 04
2
[LLVMdev] LLVM documentation work help
Sean, I add the empty file .nojekyll to https://github.com/Jonathan2251/lbd/tree/gh-pages and do "make gh-pages" again. It's the same. I check the uvbook has the gh-pages as mine as follows, https://github.com/nikhilm/uvbook/tree/gh-pages https://github.com/Jonathan2251/lbd/tree/gh-pages In addition to gh-pages, uvbook has the the other web site on
2013 Dec 06
0
[LLVMdev] llvm backend tutorial
I was wondering if this shouldn't somehow find its way into the official LLVM documentation? It certainly seems to qualify to become official documentation in my eyes. Nearly any LLVM backend writer out there should be able to benefit from reading about your experiences, I'd think. I know it is not as generic and abstract as what the LLVM dev list seems to prefer, but I personally find
2013 Dec 05
6
[LLVMdev] llvm backend tutorial
Hi, I am writing an llvm backend tutorial through my learning process of llvm backend study and implementation. Web as follows, http://jonathan2251.github.com/lbd/index.html It include 10,000 lines of sources code for 1. Step by step, create an llvm backend for the Cpu0 which beginning from a CPU design for school teaching purpose in system programming. 2. ELF linker for Cpu0 which extended
2012 Nov 05
1
Grupo de Usuarios de R de Madrid - "PCA con matrices sparse para clasificación automática de contenidos (p.ej. películas)."
Hola, Ya está disponible igualmente la presentación de Pedro Concejero sobre el "PCA con matrices sparse para clasificación automática de contenidos (p.ej. películas).<http://concejero.wdfiles.com/local--files/home/PCA_movies_matrices_sparse.ppt> " Está en la página del grupo dentro de la de la Asociación (reunión del 31-octubre) http://r-es.org/tiki-index.php?page_ref_id=43 El
2013 Aug 08
2
[LLVMdev] lld build
Hi, Currently, I can build lld/llvm on Fedora 17 but fail to build it on iMac. The commands I use as follows. Anyone can help me? Or is there the lld mail list I can post the question? Linux/Fedora can be built by the following command cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_FLAGS=-std=c++11 -DCMAKE_BUILD_TYPE=Debug -G "Unix Makefiles" ../src/ make iMac
2013 Apr 23
3
[LLVMdev] Is the llvm ARM support big endian elf/obj output?
The llvm ARM backend is little endian elf output as my examination as below. Is it support bid endian by other llc options as below? llc  -filetype=obj -march=arm // little endian llc  -filetype=obj -march=? or -otheroption=? // to output big endian Jonathan -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Dec 04
0
[LLVMdev] LLVM documentation work help
On Mon, Dec 3, 2012 at 11:09 PM, gamma_chen <gamma_chen at yahoo.com.tw> wrote: > I add the empty file .nojekyll to https://github.com/Jonathan2251/lbd/tree/gh-pages and do "make gh-pages" again. It's the same. I check the uvbook has the gh-pages as mine as follows, The book looks really good at <http://jonathan2251.github.com/lbd/>! I think if you change the PDF
2013 Aug 08
0
[LLVMdev] lld build
Le 8 août 2013 à 07:22, gamma_chen <gamma_chen at yahoo.com.tw> a écrit : > Hi, > > Currently, I can build lld/llvm on Fedora 17 but fail to build it on iMac. The commands I use as follows. Anyone can help me? Or is there the lld mail list I can post the question? > > Linux/Fedora can be built by the following command > cmake -DCMAKE_CXX_COMPILER=clang++