search for: pengcheng

Displaying 16 results from an estimated 16 matches for "pengcheng".

2013 Nov 05
2
[LLVMdev] Compiling issues: undefined reference to `.Lline_table_start1'
...to compile mcf program can reproduce such issue all the time. Probably it is my version's problem. Because I checked out 3.3version from SVN before published. Could you tell me where Manman modified ? I cannot port to new version very quickly after changing it a lot already. Thanks, - Pengcheng On Nov 5, 2013, at 1:57 PM, Eric Christopher <echristo at gmail.com> wrote: > This is from work that Manman did. I thought she'd fixed this particular issue though. Can you file a bug with a test case please? > > On Nov 5, 2013 10:10 AM, "lipengcheng" <pli at cs.r...
2013 Nov 06
2
[LLVMdev] "-relocation-model=static" does not work in llc compiler ?
> If you also give "-code-model=large" then LLVM won't assume that > "addr" is nearby so it'll use a movabsq with a static relocation. Actually, it seems our own Eli has written rather a good description of these code models: http://eli.thegreenplace.net/2012/01/03/understanding-the-x64-code-models/. Well worth the read (the default models he talks about at the
2013 Nov 06
0
[LLVMdev] "-relocation-model=static" does not work in llc compiler ?
Yep. I tried it. It used a movabsq instruction instead and a static allocation. Thanks a lot. I will read it immediately. Again thanks. - Pengcheng On Nov 6, 2013, at 1:45 PM, Tim Northover <t.p.northover at gmail.com> wrote: >> If you also give "-code-model=large" then LLVM won't assume that >> "addr" is nearby so it'll use a movabsq with a static relocation. > > Actually, it seems our ow...
2011 Apr 05
1
how to label customized y axis when using lattice parallel parameter common.scale=TRUE
...on in lattice package, I want to label the y-axis with customized numbers. Like this: parallel(~iris[1:4] | Species, iris,horiz=FALSE,common.scale=TRUE, scales=list(y=list(at=c(0,2,3)))) But only "Min" label in the y-axis, nothing happened. Could anyone help me? Thanks. Regards, Pengcheng Yang
2013 Nov 05
0
[LLVMdev] Compiling issues: undefined reference to `.Lline_table_start1'
Hi, What version of clang are you using? I think r174785 is the fix. Manman On Tue, Nov 5, 2013 at 11:04 AM, lipengcheng <pli at cs.rochester.edu> wrote: > What do you mean by test case please ? Using the following commands to > compile mcf program > can reproduce such issue all the time. > > Probably it is my version's problem. Because I checked out 3.3version from > SVN before published...
2013 Nov 05
2
[LLVMdev] Compiling issues: undefined reference to `.Lline_table_start1'
...to `.Lline_table_start8' /tmp/mcf-CvkpnA.o:(.debug_info+0x2b39): undefined reference to `.Lline_table_start9' /tmp/mcf-CvkpnA.o:(.debug_info+0x2f9f): undefined reference to `.Lline_table_start10' clang: error: linker command failed with exit code 1 (use -v to see invocation) Thanks, - Pengcheng
2013 Nov 05
1
[LLVMdev] Compiling issues: undefined reference to `.Lline_table_start1'
Also r174479. Manman On Tue, Nov 5, 2013 at 11:11 AM, Manman Ren <manman.ren at gmail.com> wrote: > Hi, > > What version of clang are you using? I think r174785 is the fix. > > Manman > > > On Tue, Nov 5, 2013 at 11:04 AM, lipengcheng <pli at cs.rochester.edu> wrote: > >> What do you mean by test case please ? Using the following commands to >> compile mcf program >> can reproduce such issue all the time. >> >> Probably it is my version's problem. Because I checked out 3.3version >&g...
2006 Oct 20
2
the worst scenario of ext3 after abnormal powerdown
...blame ext3 for it? or should I just turn off the disk write cache? it seems Windows NTFS has less such problem than ext3, and no matter it's the problem of ext3 or mis-configured hardware, this behavior is really causes lots of people to doubt the stability of Linux file system. thanks, -- Pengcheng
2013 Nov 05
0
[LLVMdev] Compiling issues: undefined reference to `.Lline_table_start1'
This is from work that Manman did. I thought she'd fixed this particular issue though. Can you file a bug with a test case please? On Nov 5, 2013 10:10 AM, "lipengcheng" <pli at cs.rochester.edu> wrote: > Hello LLVM, > > I encountered the following bugs when I compiled my program in debug > version. > Could someone help me with that ? Really appreciate that. Thanks, > > Take the mcf program in SPEC2K6 as example. The compiling opti...
2013 Nov 06
2
[LLVMdev] "-relocation-model=static" does not work in llc compiler ?
...c" doesn't work ? One more thing, When I compile with O0, O1, the generated code is absolute addressing. like, callq *addr. but when compiling with O2, O3, the generated code is relative addressing, callq *addr(%rip). How could I make it always absolute addressing ? Thanks, - Pengcheng
2013 Nov 06
1
[LLVMdev] "-relocation-model=static" does not work in llc compiler ?
Another finding is when I use both -code-model=large and -relocation-model=pic (!!!!!note changed), it still generate the static relocation. So does it mean -relocation-model=pic does not like to work with -code-model=large ? Thanks, -Pengcheng On Nov 6, 2013, at 1:52 PM, lipengcheng <pli at cs.rochester.edu> wrote: > Yep. I tried it. It used a movabsq instruction instead and a static allocation. > Thanks a lot. > > I will read it immediately. Again thanks. > > - Pengcheng > > On Nov 6, 2013, at 1:45...
2013 Jun 24
0
[LLVMdev] Addresses about Label or baiscblock
...ted into assembly codes, it will be a jump instruction with a relative address, like jmp 01. My question is can I do some modification to let the jump instruction be with the absolute address ? Are there any compiler options to control this ? Really appreciate that if you can help! Thanks, Pengcheng
2013 Jul 30
0
[LLVMdev] Questions about BB number changes
...xample, when I traverse all BBs during the instrumentation phase, there are 30000. But after code generation, there are 30100 BBs. For small scale of programs, there is no such issue. Can you tell me which of the succeeding phases changes the BB number ? How can I deal with this ? Thanks, Best, Pengcheng
2013 Aug 09
0
[LLVMdev] Array Region analysis for multithread
Hi, All, Are there any supports about array region analysis both for serial program and multi-thread programs in LLVM ? I couldn't find them. Thanks, Pengcheng
2013 Nov 06
0
[LLVMdev] "-relocation-model=static" does not work in llc compiler ?
Hi Pengcheng, > When I compile code using llc with options " -relocation-model=static", the generated code still has > relative addressing using *rip* frame pointer. May I know how to get rid of frame pointer and totally > using absolute addressing ? > > E.g. > callq *addr(%ri...
2006 Nov 28
4
how to prevent filesystem check
Hi all, I want to setup a RAID storage system, where i have two systems connected to it. the filesystems are mapped out to both connectors. I want the master host mount them read write, and the slave read only. in my fstab on the slave I have a line like the following: /dev/sdb1 /mount ext3 acl,noauto,user_xattr,nosuid,ro 0 0 so in man 5 fstab, it is written, that when the 6. field