search for: jae

Displaying 20 results from an estimated 267 matches for "jae".

2007 Dec 20
3
difficulty setting up Samba PDC.. please help... out of ideas
...d to work as the PDC, and not a file share. The Windows client I'm testing on is a virtual machine, "virtualx-ray", on the network. Please, does anyone have any ideas??: I have successfully joined the domain, and I can log into the domain with the first user I set up on //haze. (jae) jae is able to log in, successfully loads the custom profile (changing the network neighborhood to use a customized list of network resources), but does not currently update the profile. (one thing at a time) bryan, on the other hand, gets the following messages (and does not log in): >...
2006 Nov 09
3
[LLVMdev] Is this bug in LLVM?
Hello. My name is Seung Jae Lee. I'd like to ask you onething about converting to ARM assembly code. I saved the simplest C code shown in your LLVM webpage as 'hello.c' And I made 'hello.bc' by "$ llvm-gcc hello.c -o hello". In order to make ARM assembly code, I typed "llc -march=arm hello.b...
2007 Apr 30
0
[LLVMdev] Boostrap Failure -- Expected Differences?
...ggc_mx_varray_head_tag > 3a0: R_386_32 gt_pch_nx_varray_head_tag > > -000003b8 <__FUNCTION__.20147>: > +000003b8 <__FUNCTION__.20062>: > 3b8: 66 69 6e 64 5f 62 imul $0x625f,0x64(%esi),%bp > 3be: 61 popa > - 3bf: 73 65 jae 426 <__FUNCTION__.20952+0xa> > + 3bf: 73 65 jae 426 <__FUNCTION__.20866+0xa> > 3c1: 5f pop %edi > 3c2: 64 65 63 6c 00 2f arpl %bp,%fs:%gs:0x2f(%eax,%eax,1) > > 000003c7 <.str>: > 3c7: 2f...
2008 Oct 21
3
[Question] power management related with cgroup based resource management
...area for low power OS So, I have a question about it. Is there any good idea or comments about power management related with cgroup based resource management? I have no idea about that, but it seems to be possible to find a good concept. And I hope so Is it some strange question? ^^ Regards, Dong-Jae Kang
2007 Apr 27
2
[LLVMdev] Boostrap Failure -- Expected Differences?
The saga continues. I've been tracking the interface changes and merging them with the refactoring work I'm doing. I got as far as building stage3 of llvm-gcc but the object files from stage2 and stage3 differ: warning: ./cc1-checksum.o differs warning: ./cc1plus-checksum.o differs (Are the above two ok?) The list below is clearly bad. I think it's every object file in the
2006 Oct 28
2
[LLVMdev] Question about uninstalling LLVM
Hello. Nice to meet you. My name is Seung Jae Lee, a graduate student in UIUC CEE, who is working in NCSA for the present. Nowadays I am trying to develop LLVM backend to spit out CHiMPS assembly code. In the process, I installed LLVM codes on my home directory in the host computer. But I don't think it was installed properly. While boots...
2015 Feb 20
3
[LLVMdev] clang .code16 with -Os producing larger code that it needs to
...b 1d 5c 7c 00 addr32 mov 0x7c5c,%ebx 7cc3: 00 7cc4: 66 89 5c 08 mov %ebx,0x8(%si) gas: 7cbc: 66 8b 1e 5c 7c mov 0x7c5c,%ebx 7cc1: 66 89 5c 08 mov %ebx,0x8(%si) 32-bit jump. source: jnb LOCAL(floppy_probe) clang: + 7cb5: 66 0f 83 07 01 00 00 jae 7dc3 <L_floppy_probe> gas: - 7cb5: 0f 83 0a 01 jae 7dc3 <L_floppy_probe> The last one is particularly problematic as it never makes sense to issue 32-bit jump if %ip is only 16 bits and it eats 3 extra bytes per jump. Is it possible to force clang to generate 16-bit j...
2007 Feb 21
2
[LLVMdev] bugpoint usage
Thank you for this information. If so, is there any way to grasp which kinda data throw in and out in LLVM as shown in such a way in gdb? Thanks, Seung Jae Lee ---- Original message ---- >Date: Tue, 20 Feb 2007 23:54:04 -0600 >From: "John T. Criswell" <criswell at cs.uiuc.edu> >Subject: Re: [LLVMdev] bugpoint usage >To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> > >Seung Jae Lee wrote: >> H...
2006 Nov 30
2
[LLVMdev] Could not find include file 'llvm/Intrinsics.td'
...ne of Target.td includes "llvm/Intrinsics.td". But this cannot find Intrinsics.td, I think. Of course, I indeed checked out that everything is in their positions including Intrinsics.td. Would you mind telling me reasons I might miss to run this successfully? Thank you very much. Seung Jae Lee
2007 Apr 06
1
[LLVMdev] LLVM command options in Visual Studio
...'InputFilename'(llc.cpp:176) is shown like {???}. Therefore it didn't proceed further, spitting out 'bytecode didn't read correctly.' (Of course, my bytecode was trasferred to my computer as binary.) Would you mind telling me what seems my problem? Thank you so much. Seung Jae Lee ---- Original message ---- >Date: Thu, 05 Apr 2007 23:01:42 -0700 >From: Jeff Cohen <jeffc at jolt-lang.org> >Subject: Re: [LLVMdev] LLVM command options in Visual Studio >To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> > >Seung Jae Lee wrote: >&g...
2007 Mar 28
3
[LLVMdev] "deserialize primitive type 16 (vers=0, pos=15)" with Visual Studio
...LVM and compiled with VS before this.) But my command prompt can't run this with the following statement. llc: bytecode didn't read correctly Reason: Don't know how to deserialize primitive type 16 (vers=0, pos=15) Hmmmm... Is there any body having been exposed to this? Thanks, Seung Jae Lee
2015 Feb 23
2
[LLVMdev] clang .code16 with -Os producing larger code that it needs to
...e it cope with other > > forms of relaxation where necessary. > > And if not, please open a bug :-) http://llvm.org/bugs/show_bug.cgi?id=22662 FWIW I could reproduce the 'movl foo, %ebx' one but a relative jump *was* using 16 bits (although gas uses 8): $ cat foo.S .code16 jae foo movl (foo), %ebx foo: $ gcc -c -oa.out foo.S ; llvm-objdump -d -triple=i686-pc-linux-code16 a.out: file format ELF64-x86-64 Disassembly of section .text: .text: 0: 73 05 jae 5 2: 66 8b 1e 00 00 movl 0,...
2007 May 28
1
[LLVMdev] Usage of llvmc
...Thanks, Seung J. Lee ---- Original message ---- >Date: Mon, 28 May 2007 00:08:47 -0700 (PDT) >From: Chris Lattner <sabre at nondot.org> >Subject: Re: [LLVMdev] Usage of llvmc >To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> > >On Mon, 28 May 2007, Seung Jae Lee wrote: >> Hello, guys. >> I've tried to use llvmc to test optimization options but wasn't successful. >> Would you mind telling me what's wrong with this? > >Hi, llvmc is experimental and isn't really supported. I'd suggest using >llvm-gcc instea...
2003 Feb 24
1
hsv producing a color intensity not in [0,1] (PR#2576)
Full_Name: Jae Choi Version: 1.6.1 OS: linux (x86) Submission from: (NULL) (142.176.61.245) Hello, Any attempts to access the "hsv" function returns the following type of error: Error in hsv(h = seq(start, ifelse(start > end, 1, 0) + end, length = n)%%1, : color intensity 1.25, not in [...
2006 Dec 14
1
[LLVMdev] Instructions having variable names as operands
Hello. I am Seung Jae Lee making a LLVM backend for a new architecture XCC. I found that the instructions use variable names which actually used in the source coding for operands unlike most architectures which use usually register names or addresses as operands. LLVM backend examples such as ARM, SPARC seem to use regi...
2008 Jul 03
4
[LLVMdev] simply wonder pronunciation of Clang
Hello, LLVMers. I just wonder How I can pronounce Clang. [see-laeng], [see-lang], [k-laeng], [k-lang]?? Thanks, Seung
2007 Mar 28
0
[LLVMdev] "deserialize primitive type 16 (vers=0, pos=15)" with Visual Studio
Seung Jae Lee wrote: > I followed the steps in "Getting Started with the LLVM System using Microsoft Visual Studio" in the document in LLVM page. > > I made hello.c file exactly same shown in the page. > I made hello.bc on UNIX and transferred it to my Windows computer. > And I typed...
2006 Jun 29
3
Using physical disk in HVM
...'' modifier if I use ''ioemu''. So, I changed it to disk = [ ''phy:sda5,hda,w'' ]. But HVM window doesn''t pop up. Did you guys solve this problem? Can''t I use physical disk partitions for virtual disks? Thank you in advance. -- 장재완 드림 Jae-Wan Jang jwjang@camars.kaist.ac.kr +82-42-869-3559 http://camars.kaist.ac.kr/~jwjang _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
1999 Jun 29
0
Help. Unable to print from NT
...and postscript. My NT 4.0 server(SP3) running PDC saw the printer fine. I was able to install the printer as a network printer with no problem. But I just cannot print to it. When I turned on the debug level to 10. I got the following. Would anyone able to explain what is going on with it? Thanks Jae === Jae Chi jae.chi@usa.net jchi@yahoo.com Without Fear There is not Courage. _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -------------- next part -------------- [1999/06/29 15:26:28, 5] lib/util.c:s...
2006 Dec 14
1
[LLVMdev] Instruction sets requiring more than 3 operands
...to the examples in the LLVM backends already offered by you guys. But, I am not sure about those kind of instructions needs many number of operands that is not fixed. That is, it can be 4, 5, 6 ... which changes according to the program. Would you mind letting me know about this? Thank you. Seung Jae Lee