Displaying 20 results from an estimated 900 matches similar to: "[LLVMdev] Position-independent stacks"
2014 Jan 23
2
[LLVMdev] Position-independent stacks
Thanks Mark! That'd be a useful starting point.
For the rest of the people here: to be a bit more specific, I am having
doubts about the following:
- Can later optimization passes or code generation still create machine
code that takes and stores (in a register perhaps) an address of something
on the stack, even if not semantically visible to the programmer? Can
this somehow be detected?
2006 Oct 04
2
Suitability of R for Algorithm simulations
Greetings,
Sorry for the basic question, but I am trying to find out if R is a suitable platform for what I want to do...
I am interested in creating simulations of distributed algorithms (i.e. team formation, Byzantine Generals , P2P communication modeling, mobile networks) that would be represented in GUIs. I would like to be able to instantiate an object for each node in my simulated
2005 May 16
0
Asterisk - fax - spandsp <--older threadlet from Jean-Yves about fax corruption, *not* timing
> Actually.. I seem to have jumped to improper conclusion..
One thing you will find abour spandsp is that some fax machines will just
plain have a problem sending to spandsp, period. Mr. Underwood has localized
it to cetain HP fax machines and I can confirm that HP all-in-one SOHO
machines exhibit this problem, but I have also noted it with Canons and
Panasonics. In my context, I have several
2013 Mar 07
4
[Gluster-devel] glusterfs-3.4.0alpha2 released
RPM: http://bits.gluster.org/pub/gluster/glusterfs/3.4.0alpha2/
SRC: http://bits.gluster.org/pub/gluster/glusterfs/src/glusterfs-3.4.0alpha2.tar.gz
This release is made off jenkins-release-19
-- Gluster Build System
_______________________________________________
Gluster-devel mailing list
Gluster-devel at nongnu.org
https://lists.nongnu.org/mailman/listinfo/gluster-devel
2014 Sep 26
3
[LLVMdev] [lldb-dev] RFC: LLVM should require a working C++11 <thread>, <mutex>, and <atomic>
When LLVM's configure finds a usable <pthread.h>, it prefers to use that
rather than the home-grown stuff. However if LLVM is configured with
--disable-pthreads, both mingw flavors produce the same results.
BTW, I've tried to quantify the slowdown: a quick test indicates that LLVM
build that uses pthreads is about 10% slower than the one which doesn't.
This is less that I
2014 Apr 14
3
[LLVMdev] Emit code for 'unreachable'
Hi,
Is it somehow possible to have LLVM emit machine code for the 'unreachable'
IR instruction, which would assert that it indeed never gets reached?
Vadim
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140414/02108a74/attachment.html>
2014 Apr 14
2
[LLVMdev] Emit code for 'unreachable'
I am not seeing this happening, at least not for unreachables that
follow calls to 'noreturn' functions.
On Apr 14, 2014, at 3:48 AM, Anton Korobeynikov <anton at korobeynikov.info> wrote:
> Hello
>
> x86 backend emits ud2 instruction in this case
>
> On Mon, Apr 14, 2014 at 1:46 PM, Vadim Chugunov <vadimcn at gmail.com> wrote:
>> Hi,
>> Is it
2012 Dec 07
3
Advanced Persistent Threats; Why aren't we confining Firefox and Evolution?
Moat of the advanced persistent threats (APT) are initiated via e-mail.
Opening an attachment or clicking on a web link starts the process.
Why isn't Firefox and Evolution confined with SELinux policy in a way
that APT can't damage the rest of the system? Why are we not sandboxing
these two apps with SELinux?
I've discovered some guidance for sandboxing Firefox using the
2014 Jan 23
17
[Bug 74002] New: [un]docking Lenovo W530 results in interrupt storm
https://bugs.freedesktop.org/show_bug.cgi?id=74002
Priority: medium
Bug ID: 74002
Assignee: nouveau at lists.freedesktop.org
Summary: [un]docking Lenovo W530 results in interrupt storm
QA Contact: xorg-team at lists.x.org
Severity: major
Classification: Unclassified
OS: Linux (All)
Reporter: jcollins at
2014 Aug 04
6
[LLVMdev] Argument Lowering Redux
Hi,
Having just found an ABI conformance bug in a compiler front-end, I am
curious: is the state of target-independent argument lowering in LLVM still
the same as when this thread was taking place?:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2013-February/thread.html#59387
Vadim
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2014 Sep 26
2
[LLVMdev] [lldb-dev] RFC: LLVM should require a working C++11 <thread>, <mutex>, and <atomic>
Hi Yaron,
Not sure I understand your question. Wasn't <mutex> one of the more
important C++11 features that LLVM would like to use?
On Thu, Sep 25, 2014 at 1:24 AM, Yaron Keren <yaron.keren at gmail.com> wrote:
> Vadim,
>
> Thanks for the feedback on the -win32. A dependency on a small DLL with
> BSD license does not sound too bad, but performance regression is
2014 Jan 23
2
[LLVMdev] Recent buildbot failures on arxan_raphael and osu8
Hi,
I received a small flurry of buildbot emails yesterday. Most of them seem to be repeats of previous failures and buildbot only mailed them to me because the previous build raised an exception instead of failing. However I noticed a couple configuration/system issues amongst them:
* arxan_raphael is consistently hitting the 20 minute no-output timeout when running the link command
2014 Jul 26
2
[LLVMdev] Finding previous emitted instruction
Hi All,
For various obscure reasons I'd like to detect the condition when X86 CALL
instruction immediately precedes a function epilogue in the final emitted
code, and insert a NOP between them if that happens.
My initial attempt at it looked like this:
MachineBasicBlock& MBB;
MachineBasicBlock::iterator MBBI; <-- points to where the epilogue would
be inserted
if (MBBI != MBB.begin()
2014 Dec 03
2
[LLVMdev] RFC: How to represent SEH (__try / __except) in LLVM IR
On Wed, Dec 3, 2014 at 1:41 PM, Reid Kleckner <rnk at google.com> wrote:
> On Wed, Dec 3, 2014 at 1:27 PM, Vadim Chugunov <vadimcn at gmail.com> wrote:
>
>> If we added unwind target to every potentially throwing instruction
>> (loads, stores, all binary operations), wouldn't all such instructions have
>> to become BB terminators? I'd expect that CFG
2015 Jan 02
2
[LLVMdev] Evaluation of offsetof() macro
Hi!
LLVM has a class, ConstantExpr, that is very handy for compile-time
evaluation of const expressions. Unfortunately I cannot find any methods
in it that would be helpful in evaluation of expressions similar to this:
(uintptr_t)(&(*(TYPE*)0).FIELD), which is basically the implementation of
the offsetof(TYPE, FIELD) macro. Specifically, there seem to be no
provisions for dereferencing a
2014 Jul 26
3
[LLVMdev] Machine basic blocks
Hi,
I have a couple of questions about MachineBasicBlocks:
- If I have a pointer to an MBB, is there an easy way to find which block
that precedes it in the MachineFunction blocks list? (without iterating
through all of the MF's basic blocks)
- Does LLVM make any effort to ensure that MBB's predecessors and
successors lists are semantically correct? For example, what happens if
an MBB
2013 Oct 07
9
[Bug 70213] New: [git-v3.12-rc3 + nouveau HEAD] Vmalloc failure -> pci_pm_freeze(): nouveau_pmops_freeze+0x0/0x50 returns -12
https://bugs.freedesktop.org/show_bug.cgi?id=70213
Priority: medium
Bug ID: 70213
Assignee: nouveau at lists.freedesktop.org
Summary: [git-v3.12-rc3 + nouveau HEAD] Vmalloc failure ->
pci_pm_freeze(): nouveau_pmops_freeze+0x0/0x50 returns
-12
QA Contact: xorg-team at lists.x.org
Severity:
2007 Jan 01
1
Platform independent solution to watch "Streaming Service of the Council of the European Union.
"The Council of the EU has a streaming service so that we can watch its
meetings ? but the service can only be accessed by Mac or MS Windows
users. This is because they employ WMV format for the videos. In the FAQ
they express a really strange opinion about this: 'The live streaming
media service of the Council of the European Union can be viewed on
Microsoft Windows and Macintosh
2006 Jun 03
1
Multiple Paginators with Independent Paging
Hi,
Is it possible to have multiple paginators on one screen with
independent paging? I have two paginators but they both track the same
page, which isn''t what I want.
Thanks,
John
--
Posted via http://www.ruby-forum.com/.
2006 Jan 12
0
Independent SQL connections...race condition?
I would like to be able to manage different db connections per request. I''ve
gotten this working by using establish_connection in a before_filter on all
controllers. My concern is whether or not there could be a race condition
where two or more overlapping requests might reset the SQL connection. Is
there any serialization logic which will prevent this? Must I introduce this
logic