search for: zillians

Displaying 2 results from an estimated 2 matches for "zillians".

Did you mean: willians
2012 Dec 17
0
[LLVMdev] LLVMdev Digest, Vol 98, Issue 33
...ei-zhi Liao) > 2. Re: Generate data16 assembly instruction for TLS with PIC > (Cameron McInally) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 18 Aug 2012 00:27:22 +0800 > From: Wei-zhi Liao <giggle at zillians.com> > Subject: [LLVMdev] Generate data16 assembly instruction for TLS with > PIC > To: llvmdev at cs.uiuc.edu > Message-ID: > < > CAASwg9gTqU-fDDFKwWvYdCZaEW2pyP2G544vHtguFYyV3D6zdw at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-...
2012 Aug 17
1
[LLVMdev] Generate data16 assembly instruction for TLS with PIC
Hi all, System: x86-64 ubuntu 11.04 LLVM: 3.0 gcc: 4.5.2 I declare a thread_local global variable and access it in a function in llvm IR. for example, @my_value = linkonce thread_local global %dummy* null define void @test1() { entry: %load_my_value = load %dummy** @my_value .... } After that, I use the following command: bash$ llc -relocation-model=pic test.ll And I have test.s