search for: jamshidi

Displaying 11 results from an estimated 11 matches for "jamshidi".

2012 Dec 04
2
[LLVMdev] LLVM documentation work help
...an   --- 12/12/4 (二),Sean Silva <silvas at purdue.edu> 寫道: 寄件者: Sean Silva <silvas at purdue.edu> 主旨: Re: LLVM documentation work help 收件者: "gamma_chen" <gamma_chen at yahoo.com.tw> 副本: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>, "Anoushe Jamshidi" <ajamshidi at gmail.com> 日期: 2012年12月4日,二,上午10:47 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...
2012 Dec 04
5
[LLVMdev] LLVM documentation work help
...Jonathan --- 12/12/3 (一),Sean Silva <silvas at purdue.edu> 寫道: 寄件者: Sean Silva <silvas at purdue.edu> 主旨: Re: LLVM documentation work help 收件者: "Jonathan" <gamma_chen at yahoo.com.tw> 副本: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>, "Anoushe Jamshidi" <ajamshidi at gmail.com> 日期: 2012年12月3日,一,下午2:48 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 gen...
2012 Dec 04
0
[LLVMdev] LLVM documentation work help
...n Silva <silvas at purdue.edu>* 寫道: > > > 寄件者: Sean Silva <silvas at purdue.edu> > 主旨: Re: LLVM documentation work help > 收件者: "Jonathan" <gamma_chen at yahoo.com.tw> > 副本: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>, "Anoushe Jamshidi" < > ajamshidi at gmail.com> > 日期: 2012年12月3日,一,下午2:48 > > > 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 branc...
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 Nov 21
1
[LLVMdev] Modelling M68k registers?
Hi. I am searching for hints, documents, or a discussion for how to properly model registers. As an experiment to learn llvm I am trying to do a M68k backend by following and modifying the Cpu0 tutorial by Chem Chung-Shu and Anoushe Jamshidi. The M68k registers are 32bit and comes in two classes data (d0-d7) and address (a0-a7). Similar to X86 target a subset of the registers can be accessed for most ops, lower 8 and 16bit for data regs, and lower 16bit for address regs. Unlike X86 regs these "subsets" are not named but den...
2012 Dec 04
2
[LLVMdev] LLVM documentation work help
...onathan --- 12/12/4 (二),Sean Silva <silvas at purdue.edu> 寫道: 寄件者: Sean Silva <silvas at purdue.edu> 主旨: Re: LLVM documentation work help 收件者: "gamma_chen" <gamma_chen at yahoo.com.tw> 副本: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>, "Anoushe Jamshidi" <ajamshidi at gmail.com> 日期: 2012年12月4日,二,下午12:45 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...
2012 Dec 04
0
[LLVMdev] LLVM documentation work help
...s at purdue.edu> 寫道: > > > 寄件者: Sean Silva <silvas at purdue.edu> > 主旨: Re: LLVM documentation work help > 收件者: "Jonathan" <gamma_chen at yahoo.com.tw> > 副本: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>, "Anoushe Jamshidi" > <ajamshidi at gmail.com> > 日期: 2012年12月3日,一,下午2:48 > > 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 m...
2012 Dec 04
1
[LLVMdev] LLVM documentation work help
...s at purdue.edu> 寫道: > > >     寄件者: Sean Silva <silvas at purdue.edu> >     主旨: Re: LLVM documentation work help >     收件者: "Jonathan" <gamma_chen at yahoo.com.tw> >     副本: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>, "Anoushe Jamshidi" >     <ajamshidi at gmail.com> >     日期: 2012年12月3日,一,下午2:48 > >     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 m...
2012 Nov 16
1
[LLVMdev] Handling segmented instruction space in backend for custom target
Hi all, I'm building a backend for a custom target, and I'm trying to figure out how to handle global and external target address with my architecture's call instructions. This arch. has 16-bit addresses into a segmented address space, and to do a direct call I need to set both an instruction counter (IC, 10 bits wide) and an instruction segment register (ISR, 6 bits wide). My CALL
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. > >