search for: hong

Displaying 20 results from an estimated 610 matches for "hong".

Did you mean: dong
2011 Jun 06
2
[PATCH] Document the method for building the Unicorn gem
>From dcd47a609f4489bb37ce33ea1ce975bb2b3ab160 Mon Sep 17 00:00:00 2001 From: Hongli Lai (Phusion) <hongli at phusion.nl> Date: Mon, 6 Jun 2011 13:36:57 +0200 Subject: [PATCH] Document the method for building the Unicorn gem. Signed-off-by: Hongli Lai (Phusion) <hongli at phusion.nl> --- HACKING | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-)...
2008 Nov 22
0
Where is Hong Kong in maps?
It seems that there is no Hong Kong in maps' world cities. >world.cities[substr(world.cities$name,1,3)=="Hon",] name country.etc pop lat long capital 14623 Honami Japan 26040 33.61 130.68 0 14624 Honaz Turkey 8073 37.75 29.27 0 14...
2004 Aug 29
0
Your Hong Kong Call Centre
If you are setting up a Call Centre in Hong Kong, our company can provide: 1. Dedicated Hong Kong Fax Line (US$20.00 per month) Unlimited fax receiving and every incoming fax will be converted into TIFF file and forwarded to your email address. 2. Dedicated Hong Kong Phone Line (US$20.00 per month + IDD Charges) Eve...
2004 Jan 20
1
T400P / T100P with Hong Kong IDA-P Lines
2003 Aug 19
7
[Fwd: Re: Shorewall 1.4.6: common chain rules are applied before policyrules?]
...question: Is there a kind of common chain applied before ACCEPT policy? I want to DROP or REJECT Netbios traffic on most interfaces but do not want to repeat those rules in the rules file. Thanks, Boi -----Th?ng ?i?p chuy?n ti?p----- > From: Tom Eastep <tmeastep@hotmail.com> > To: Le.Hong.Boi@sg.netnam.vn > Subject: Re: Shorewall 1.4.6: common chain rules are applied before policyrules? > Date: 19 Aug 2003 15:35:19 -0700 > > In the future, please post your Shorewall questions on the Shorewall Users > Mailing list. See http://shorewall.net/support.htm. > > The...
2016 Dec 29
1
Structure Padding and GetElementPtr
Yes. LLVM types != C++ types. There is no mapping except that produced if you add debug info. On Wed, Dec 28, 2016 at 6:51 PM, Hong Hu via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Here is an example: > > I can define two classes: A and Apad: > > class A { > bool b1, b2; > double d1; > int i1; > }; > > class Apad { > bool b1, b2; > bool pad1[6]; > do...
2011 May 12
2
[OT] Co-location center in Singapore or Hong Kong
Apparently my company will potentially need to put in some servers for Asia and is hoping to find a highly reliable data center in either Singapore or Hong Kong if anyone has recommendations. Thanks -- Craig White ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ craig.white at ttiltd.com 1.800.869.6908 ~~~~~~~~~~~~~~~~~~~~~~~~~~~ www.ttiassessments.com Need help communicating between generations at work to achieve your desired success? Let us help!
2017 Jan 21
3
Spare Register at one Machine Instruction
...register is live-in to a block and not killed before your instruction or it has a def and no kill within the block, it is live. Otherwise it is dead and available. Isn't it? Or are you interested in whether a physical register is unused in the entire function? On Sat, Jan 21, 2017 at 10:21 AM, Hong Hu <huhong789 at gmail.com> wrote: > Hi Nemanja and Matthias, > > Thanks for the reply. > > I checked both Register Scavenger and LivePhysReg. It seems that both work > on the BasicBlock level, right? > > Is it possible to perform such analysis in a whole function? Fo...
2007 May 31
5
What makes excel file opening so slow??
...cement soon), I still have one more question on Excel files. I found that Excel file opening is extremely slow (especially on slow connections, i.e. VPN). The case is really bad, it takes around 2 mins to open a excel file of around 400k. Actually we got both side having 4M/4M DSL line. One side is Hong Kong, and the other side is China. However if we build a VPN inside Hong Kong, it takes 10~20 seconds to open a 400k excel file. However if I just copy a 400k file, neither of them take such a long time. Both situation can finish the transmission within some seconds. So what is so special about ope...
2016 Dec 29
1
Structure Padding and GetElementPtr
...yout. Now my question is to build a map between the original layout and the new layout. I show one example below. When LLVM IR access the 4th (starting from 0th) member (i32) of the class A, the map will tell that in fact it is accessing the originally 3rd member (i1). Any suggestion? Regards, Hu Hong On 29 December 2016 at 10:50, Reid Kleckner <rnk at google.com> wrote: > Only Clang really knows the original structure layout. You can pass > '-Xclang -fdump-record-layouts', though, to see the layout during > compilation. The DICompositeType metadata produced when compili...
2016 Oct 17
4
LLVM backend -- Avoid base+index address mode for X86
...ter only or index-register only address mode. For example, "mov (%rsi), %rbx" is allowed, but "mov (%rsi, %rax), %rbx" is not allowed. I understand LLVM backend is a complex system. Can any one help point out which subsystem I should look into to solve my question? Regards, Hu Hong -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20161017/842a12f8/attachment.html>
2016 Oct 17
2
LLVM backend -- Avoid base+index address mode for X86
...under the lib/Target/X86 folder, but have not got interesting findings. It requires some knowledge of LLVM backend to fully understand the *.td files. I will get some background and keep searching. Of course I appreciate if anyone with such experience can point the concrete locations. Regards, Hu Hong On 17 October 2016 at 22:20, Bruce Hoult <bruce at hoult.org> wrote: > For experimental purposes, you should be able to just go > into lib/Target/X86 and remove the patterns in .td files (or maybe some > .cpp .. I'm not familiar with the X86 mechanisms) that map to base+index &...
2016 Dec 29
0
Structure Padding and GetElementPtr
...s Apad { bool b1, b2; bool pad1[6]; double d1; int i1; bool pad2[4]; }; A and Apad will have the same layout, from the LLVM IR level: %class.A = type <{ i8, i8, [6 x i8], double, i32, [4 x i8] }> %class.Apad = type { i8, i8, [6 x i8], double, i32, [4 x i8] } Regards, Hu Hong On 29 December 2016 at 10:44, Hong Hu <huhong789 at gmail.com> wrote: > Thanks, Eli. > > Next question is how to get the layout of the original C++ class from LLVM > IR? > > Regards, > Hu Hong > > On 29 December 2016 at 01:57, Friedman, Eli <efriedma at codeaur...
2005 Mar 16
1
Hong Kong DID
Hi there, Anybody on this list knows where I can obtain Hong Kong DID's from ? Cheers, Sahil
2016 Dec 29
4
Structure Padding and GetElementPtr
Thanks, Eli. Next question is how to get the layout of the original C++ class from LLVM IR? Regards, Hu Hong On 29 December 2016 at 01:57, Friedman, Eli <efriedma at codeaurora.org> wrote: > On 12/28/2016 5:41 AM, Hong Hu via llvm-dev wrote: > > Hi all, > > I'm writing a pass to understand the memory access to C++ class members. > For each GetElementPtr instruction, I check t...
2010 Jun 04
8
unicorn_rails cleanup (possible fix for Rails3) pushed
Hi all, I''ve pushed the following patch out go git://git.bogomips.org/unicorn along with a few other Rails-related test updates. This is more of a shotgun fix (but less code is better :) since I haven''t been able to reproduce the brokeness people have been seeing with "unicorn_rails" and Rails 3 betas. Even though "unicorn" works perfectly well for Rails3,
2005 Nov 28
3
Looking for constrained optimisation code
...allow box constraints on the parameters, but ideally I'd like to be able to specify more general constraints on the solution space. Even if code isn't readily available, any tips on how to persuade optim/nlminb to cope with general constraints would also be much appreciated. Thanks! -- Hong Ooi Senior Research Analyst, IAG Limited 388 George St, Sydney NSW 2000 (02) 9292 1566 _______________________________________________________________________________________ The information transmitted in this message and its attachme...{{dropped}}
2017 Jan 19
2
Spare Register at one Machine Instruction
...manja Ivanovic via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > I believe what you're after is the register scavenger. > It's in: include/llvm/CodeGen/RegisterScavenging.h > Implementation: lib/CodeGen/RegisterScavenging.cpp > > On Thu, Jan 19, 2017 at 1:36 PM, Hong Hu via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > Hi All, > > Given a machine instruction, is it possible to tell which register(s) is still not in use? > > For example, given one instruction A, if the one follows it (say B) defi...
2004 Aug 26
2
VoIP Telephony with Asterisk book
Does anyone know if there are any reseller for the book "VoIP Telephony with Asterisk" in Hong Kong/Asia region? I'm interested in purchasing the book but the shipping charge to Hong Kong is expensive. Thanks. Joseph -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040826/7a3048c1/attachment.h...
2016 Dec 29
0
Structure Padding and GetElementPtr
...the original structure layout. You can pass '-Xclang -fdump-record-layouts', though, to see the layout during compilation. The DICompositeType metadata produced when compiling with debug info might contain enough information to describe the original layout. On Wed, Dec 28, 2016 at 6:44 PM, Hong Hu via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Thanks, Eli. > > Next question is how to get the layout of the original C++ class from LLVM > IR? > > Regards, > Hu Hong > > On 29 December 2016 at 01:57, Friedman, Eli <efriedma at codeaurora.org> > w...