search for: fei

Displaying 20 results from an estimated 63 matches for "fei".

Did you mean: fe
2011 Sep 22
2
[LLVMdev] question on difference of bitcode between C and C++
Could anybody provide me some links or pages or infos of the difference of bitcodes of C and C++? We have implemented an optimization pass on bitcode generated from C, and we are trying to find out whether it will work on bitcode from C++. Thanks! -- Best Regards, Fei Jia -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110921/9305a3cc/attachment.html>
2011 Oct 10
2
[LLVMdev] There are compiling errors when converting bytecode to c by LLC
...s that _OC_str, and _OC_str1 are structure variables, but I have never seen such way of declarations, definitions, and initialization of structure in C code. I guess it may be supported in some standards of C. Could anyone please give me some information about the problem? Thanks! -- Best Regards, Fei Jia -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111010/d326447e/attachment.html>
2011 Oct 29
0
[LLVMdev] There are compiling errors when converting bytecode to c by LLC
Hi Fei Jia, What revision are you using? I suggest you to try C backend with the most recent LLVM version, if possible. I recall I had some similar C backend breakages in July-August: structs definitions were lost somewhere. To my understanding, the correct result should look like this: /* Typedefs */ t...
2011 Sep 22
0
[LLVMdev] question on difference of bitcode between C and C++
On Sep 21, 2011, at 6:13 PM, Fei Jia wrote: > Could anybody provide me some links or pages or infos of the difference of bitcodes of C and C++? We have implemented an optimization pass on bitcode generated from C, and we are trying to find out whether it will work on bitcode from C++. Thanks! > Hi Fei, There isn't a d...
2006 Jun 26
1
OpenSSH compatibility with Tru64 version 4.0F?
I am just looking for a quick answer as to whether or not OpennSSH is compatible with Digital Unix Tru64 v 4.0F. Hing Fei Wong Systems Engineer Building 100, M1309 Valley Forge, PA Admin # 4-6242 -----Original Message----- From: Darren Tucker [mailto:dtucker at zip.com.au] Sent: Friday, June 23, 2006 3:53 AM To: Wong, Hing Fei Cc: www at openbsd.org Subject: Re: OpenSSH compatibility with Tru64 version 4.0F? On T...
2011 Sep 22
2
[LLVMdev] question on difference of bitcode between C and C++
...bitcode, and then apply our algorithm to the bitcode to find the dependency between statements. But as to C++ code, there are class, vector, reference, I may need to revise my algorithm to analyze bitcode from C++. I am trying to find such difference of bitcode between C and C++. -- Best Regards, Fei Jia On Wed, Sep 21, 2011 at 6:26 PM, Bill Wendling <wendling at apple.com> wrote: > On Sep 21, 2011, at 6:13 PM, Fei Jia wrote: > > > Could anybody provide me some links or pages or infos of the difference > of bitcodes of C and C++? We have implemented an optimization pas...
2011 Nov 20
2
I'm writing this letter to enquire where can I download the package of "lmtest".
Dear editor: I'm writing this letter to enquire where can I download the package of "lmtest". Can you send me this package? THanks a lot. Best regards, Shu-Fei Wu
2005 Jul 11
2
[LLVMdev] Does the gcc frontend do inlining or deadcode elimination ?
...lvm-gcc (without the -disable* flags) 2) getInlineCost() is not called when doing opt does the .bc code emitted by llvm-gcc carry inlining cost info ? otherwise, how does opt do inlining without the cost info ? thanks, --Long Misha Brukman wrote: On Thu, Jul 07, 2005 at 03:52:42PM -0500, Long Fei wrote: >I noticed that the inlining condition (in >Transforms/IPO/InlineSimple.cpp) is tested during llvm-gcc but not >during the opt phase ? Can anybody explain what happens during >llvm-gcc and opt respectively ? > > John answered the llvm-gcc part, so let me address the opt...
2004 May 31
4
Need guides on setting up PDA on asterisk server
Can PDAs be used as softphones/clients on asterisk? what i wanted to do is to set up 2 PDAs as softphone(client) which allows them to communicate each other through asterisk server(desktop) devices i have: pda compaq model 3680 pda sharp sl5500 access point desktop(asterisk) can i apply my idea on the asterisk? any guides? thanks in advance :) --------------------------------- Do
2005 Jul 12
0
[LLVMdev] Does the gcc frontend do inlining or deadcode elimination ?
On Mon, 11 Jul 2005, Long Fei wrote: > > This didn't work as I tried with 197.parser. it works without > "-Wl,-disable-opt" switch though. > > [197.parser]$ llvm-gcc analyze-linkage.c and.c build-disjuncts.c > extract-links.c fast-match.c idiom.c main.c massage.c parse.c post-process.c > p...
2006 Sep 24
2
printing a variable name in a for loop
Hello, How do you print a variable name in a for loop? I'm trying to construct a csv file that looks like this: Hello, variable1, value_of_variable1, World, Hello, variable2, value_of_variable2, World, Hello, variable3, value_of_variable3, World, Using this: for (variable in list(variable1, variable2, variable3)){ cat("Hello,", ???variable???, variable, ",
2013 Aug 27
1
[PATCH] drivers/char: pl011: Enable receive timeout interrupt
...+), 1 deletion(-) diff --git a/xen/drivers/char/pl011.c b/xen/drivers/char/pl011.c index 0e1eb64..e4bd702 100644 --- a/xen/drivers/char/pl011.c +++ b/xen/drivers/char/pl011.c @@ -140,7 +140,7 @@ static void __init pl011_init_postirq(struct serial_port *port) pl011_write(uart, ICR, OEI|BEI|PEI|FEI); /* Unmask interrupts */ - pl011_write(uart, IMSC, OEI|BEI|PEI|FEI|TXI|RXI); + pl011_write(uart, IMSC, RTI|OEI|BEI|PEI|FEI|TXI|RXI); } static void pl011_suspend(struct serial_port *port) -- 1.7.10.4
2011 Sep 22
2
[LLVMdev] question on difference of bitcode between C and C++
...September 2011 03:30, Eli Friedman <eli.friedman at gmail.com> wrote: >> I am trying to find such difference of bitcode between C and C++. > > There isn't any difference in that sense... in IR, a constructor is > just a function call, a reference is just a pointer, etc. Hi Fei, While Clang (like others) lowers C++ into C semantics and lower that into IR, there are some changes that exist in C++ and not in C. The IR has the same features, but some assumptions on the semantics are different. I can give you two examples: 1. Classes in C++ are like C structures in IR, but...
2005 Jul 22
0
[LLVMdev] Need help on SPEC 95 "standard" commandlines
On Thu, 21 Jul 2005, Long Fei wrote: > which suggests the compiling command: > gcc -DSPEC_CPU95 -O2 -o spec_go g2.c g22.c g23.c g25.c g26.c g27a.c g27b.c > g28.c g29.c g2eye.c g2jlib2.c g2jos.c g2list.c g2reas.c g2s2.c g2s3.c g2shp.c > and the running commandline: > ./spec_go 50 9 2stone9.in > < are these...
2005 Jul 22
2
[LLVMdev] Need help on SPEC 95 "standard" commandlines
...ou can tell me what the *default ref* configurations are. In particular, 099.go, 129.compress, 130.li, 132.ijpeg. I agree that they use the same compiling commandline, but the running commandline is still a remaining problem. thanks, --Long Chris Lattner wrote: > On Thu, 21 Jul 2005, Long Fei wrote: > >> Does anyone know the "standard" commandline to compile and run spec95 >> benchmarks ? >> >> I found some scripts in llvm test suite (External/SPEC/CINT95), but I >> am not sure if they are the *default ref* configurations. <Some of >&g...
2005 Jul 07
3
[LLVMdev] Does the gcc frontend do inlining or deadcode elimination ?
I am investigating some inlining issue, so I did llvm-gcc aaa.c bbb.c ... nnn.c -o output opt -inline -inline-threshold=xxx < output.bc | llc -march=c > output_inline.c 1) I noticed that even if I set xxx to 0 or even a very small negative number, many functions are eliminated. I am wondering if these functions are inlined by the frontend, or identified as deadcode. For instance,
2011 Mar 15
6
[PATCH] ept: Fix bug in changeset 22526:7a5ee3800417
...in situations where the p2m entry is changed but the mfn is the same, the VTd tables will be unnecessarily flushed. old_entry is left untouched in the second case, since having a present old_entry will cause the an unnecessary check to be taken at the end of the function. Spotted-by: Zhang, Peng Fei <zpfalpc23@gmail.com> Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com> diff -r 3caed2112c65 -r 56b32e6fd315 xen/arch/x86/mm/hap/p2m-ept.c --- a/xen/arch/x86/mm/hap/p2m-ept.c Tue Mar 15 10:14:27 2011 +0000 +++ b/xen/arch/x86/mm/hap/p2m-ept.c Tue Mar 15 15:41:17 2011 +0000 @@ -...
2011 Sep 22
0
[LLVMdev] question on difference of bitcode between C and C++
...riedman <eli.friedman at gmail.com> wrote: >>> I am trying to find such difference of bitcode between C and C++. >> >> There isn't any difference in that sense... in IR, a constructor is >> just a function call, a reference is just a pointer, etc. > > Hi Fei, > > While Clang (like others) lowers C++ into C semantics and lower that > into IR, there are some changes that exist in C++ and not in C. The IR > has the same features, but some assumptions on the semantics are > different. > > I can give you two examples: > > 1. Cl...
2005 Jul 07
0
[LLVMdev] Does the gcc frontend do inlining or deadcode elimination ?
Long Fei wrote: > > I am investigating some inlining issue, so I did > > llvm-gcc aaa.c bbb.c ... nnn.c -o output > opt -inline -inline-threshold=xxx < output.bc | llc -march=c > > output_inline.c I am unsure of whether the LLVM GCC frontend does any inlining. However, I do know...
2019 Mar 22
0
New package feisr: Fixed effects individual slope models
Dear R users, Are you worried about the parallel trends assumption in your panel regression? Use fixed effects individual slope models, controlling for heterogeneous trends! I am very pleased to announce that the package feisr is now available on CRAN! CRAN: https://cran.r-project.org/package=feisr GitHub: https://github.com/ruettenauer/feisr The packages feisr provides a function to estimate fixed effects individual slope (FEIS) models. FEIS models constitute a more general version of the often used conventional fix...