Displaying 20 results from an estimated 3000 matches similar to: "Hacking source: un-forward local port?"
2007 Mar 26
5
Japanese Puppet users
Hi all,
I''ve been trying to monitor the traffic on the web site recently, and
it seems like we''ve got a couple of Japanese Puppet users I didn''t
know about. I''ve seen articles about Puppet on both madoro.org[1]
and mizzy.org[2] recently.
I haven''t looked into translations of Puppet''s documentation much,
but this might be a good place
2016 Sep 13
2
what is official way to determine if we are running lto 2nd stage?
Hi,
Imagine that your backend has valid asm instruction written like this:
"%x mnem %y, %z"
And user puts it as inline assembler:
__asm__ ("%x mnem %y, %z");
It can not be parsed with current llvm asm parser, because it starts
with % (moreover it has mnemonic in second place)
Say you written pass, that makes it "mnem %x, %y, %z".
Now this guy can be parsed, but
2016 Sep 12
3
what is official way to determine if we are running lto 2nd stage?
Hi,
This is really basic block level pass. It is no difference what is
level, problem is the same.
After fixing for asm parser, assembler syntax is no more valid for
backend, without processing with asm parser.
May be it will be solution to process inline asm on insn printer level
to remove syntax fixes. But just switch it off without lto will make
compiler do less job
P.S. sorry for dup,
2013 Feb 17
13
zfs raid1 error resilvering and mount
hi, i have raid1 on zfs with 2 device on pool
first device died and boot from second not working...
i try to get http://mfsbsd.vx.sk/ flash and load from it with zpool import
http://puu.sh/2402E
when i load zfs.ko and opensolaris.ko i see this message:
Solaris: WARNING: Can''t open objset for zroot/var/crash
Solaris: WARNING: Can''t open objset for zroot/var/crash
zpool status:
2013 Jul 24
2
IceCast Android MediaPlayer support
Thanks.
In http://developer.android.com/about/versions/android-2.2-highlights.html-
there is a support for HTTP progressive streaming. Does this mean that
IceCast is only Android-ready from 2.2?
I've tried some hours ago on Android 2.1 tablet and the app crashes at
start (couldn't find the reason yet). The same app works in 2.3.5.
Thanks, I can extract tags by IcyStreamMeta class.
Is there
2016 Aug 17
3
Memory scope proposal
> On Aug 17, 2016, at 2:08 PM, Zhuravlyov, Konstantin <Konstantin.Zhuravlyov at amd.com> wrote:
>
> >Why not going with a metadata attachment directly and kill the "singlethread" keyword? Something like:
> >Something like:
> > cmpxchg i32* %addr, i32 42, i32 0 monotonic monotonic, 3, !memory.scope{!42}
> > cmpxchg i32* %addr, i32 42, i32 0 monotonic
2016 May 10
3
[llvm dev] do we have allocator hook to use maximum different registers?
Hi,
Default register allocator tries to reuse the same registers over and
over again even if register file have a plenty of registers to use.
This creates parasite false dependencies and makes scheduling less
effective.
How to instruct allocator (may be override some virtual function in
mine backend?) that it is profitable to use maximum number of
available registers with minimal dependencies?
2016 Sep 12
2
what is official way to determine if we are running lto 2nd stage?
Hi,
In LTO we have AsmParser that process inline assembler instructions to
MCInst and I want to fix some inline assembler in order to conform its
rules (do not start with non-identifier and so on) because asm syntax
of our backend allows some incompatible patterns. In order to do this
I am adding IR-level target-specific pass. But those fixes shall not
be applied when there is no AsmParser later
2007 Oct 31
3
ssh with proxy?
What is the recommended way to ssh through a proxy? I've been using
putty, compiled from source, as it has a proxy option, but a native option
would be very nice.
Thanks.
Scott
2020 Apr 06
4
[GlobalISel] Extended inline assembler support
Hi!
So far, GlobalISel only supports very basic inline assembler constructs
(no input/output operands, only simple memory clobbers).
In [0], I'm adding support for generic register, immediate, memory and
clobber constraints.
The code is more or less a direct port from the handling in
SelectionDAGBuilder.
Before moving on with target specific constraints, I'd like to discuss
the
2016 Aug 17
2
Memory scope proposal
Hi,
I have updated the review here:
https://reviews.llvm.org/D21723
As Sameer pointed out, the motivation is:
In OpenCL 2.x, two atomic operations on the same atomic object need to have the same scope to prevent a data race. This derives from the definition of "inclusive scope" in OpenCL 2.x. Encoding OpenCL 2.x scope as metadata in LLVM IR would be a problem because there cannot be a
2013 Jul 24
2
IceCast Android MediaPlayer support
Hello.
What is the official info about IceCast Android MediaPlayer support?
2016 Jun 25
2
Memory scope proposal
We believe that it would be best that this is added to the LLVM IR atomic memory instruction as fields on atomic instructions rather than using meta data.
The reasoning is that this information is similar to other information that is represented as instruction fields. For example, the indication that memory operations are atomic rather than non-atomic, the memory ordering of atomics, and whether
2012 Dec 08
3
nullfs changes MFC
Hi,
I am going to merge latest batch of the nullfs improvements into
stable/9. This will bring up significant performance enchancements due
to use of the shared locks for lookups if the lower layer supports it,
much better caching on the nullfs layer, and proper handling of the text
segments on the nullfs. Also, it should improve the error recovery and
some corner cases with locking.
2012 Aug 01
3
[LLVMdev] Reading the AST from the bitcode generated by clang
> Hi all,
> After reading the documentation on clang I still have the following
> question:
> How do I read the bitcode generated by clang from a C++ file? I need to
> have all the AST information in memory.
AST has nothing to do with LLVM bitcode.
--
Regards,
Konstantin
2013 Sep 22
2
[LLVMdev] Bad permissions for mapped region
Hi List,
I'm trying to upgrade our llvm-c based compiler from JIT to MCJIT.
While trying to do so I encountered several problems. Looks like C
API does not have proper functions to intialize LLVM with MCJIT.
I ended up wrapping the following functions in my own init routine.
LLVMInitializeX86TargetInfo();
LLVMInitializeX86Target();
LLVMInitializeX86TargetMC();
LLVMInitializeX86AsmPrinter();
2012 Jul 13
2
[LLVMdev] Compiling llvm and Clang on Linux
Hi Sitvanit,
On 12/07/12 22:18, Sitvanit Ruah wrote:
> I ran "configure -help " and it says
>
> usage: configure [OPTION]..... [VAR=VALUE]
>
> So I assume configure CC=... is the right syntax. Isn't it?
while you might think so, try it the other way round. Also, by doing
make VERBOSE=1
you can see which compiler is really being used.
Ciao, Duncan.
>
>
2018 Sep 05
3
Authenticating against Samba 4 AD LDAP service
Hello,
One of Samba 3 -> Samba 4 migration task I am solving is changing
authentication against new Samba 4 AD domain.
Existing services use LDAP directory of Samba 3 to authenticate. The
simplest way to go would be just to replace LDAP credentials; however, I
don't quite understand which LDAP credentials to use/how to create them
for Samba 4 AD.
Sample command against Samba 4 LDAP
2007 May 22
3
lc shaping in- and outbound traffic on same box
I''m looking for a way to shape all traffic on a virtual vlan interface,
say eth1.100 to a max of 100mbit. The box is a quagga router with eth0
on the inside and vlan interfaces on the eth1 card to our upstream
partners. Each partner has his own vlan on eth1.
I tried shaping but was only able to shape outbound traffic on the
eth1.100 interface. Inbound shaping was also possible, but
2013 Sep 19
2
[LLVMdev] LLVM virtual machine
Hi Konstantin,
good point.
but I my intention is to have something like the llva project.
Basically I would like to define a machine that looks as if it has processors running natively llvm code.
And when that runs enhance the llvm byte code with some specific instructions.
Besides this if I make my measurements on the running of llvm bytecode I can test several platforms simultaneously because I