Displaying 7 results from an estimated 7 matches for "reusue".
Did you mean:
reuse
2010 Mar 23
2
[LLVMdev] Questions on llvm and jit
...hat the reg-allocator and alias analysis (assuming this exists in libjit) is not the best. I wonder if llvm will have a problem. If I make the appropriate llvm calls to redundandly load an integer of a pointer several times (e.g. (goo == *a) .... .... (foo == *a)), will llvm make every effort to reusue the temp created to store *a initially in the second reference? I tried this out with the llvm demo, and the C code generated automatically created a temp for the first load, and then reused that temp in the secondary reference. I however would not be making such calls - I instead would probably...
2014 Jul 23
3
[PATCH v3 net-next 0/2] rx busy polling support for virtio-net
Hi all:
This series introduces the support for rx busy polling support. This
was useful for reduing the latency for a kvm guest. Instead of
introducing new states and spinlocks, this series re-uses NAPI state
to synchonrize between NAPI and busy polling. This grealy simplified
the codes and reduce the overheads of spinlocks for normal NAPI fast
path.
Test was done between a kvm guest and an
2014 Jul 23
3
[PATCH v3 net-next 0/2] rx busy polling support for virtio-net
Hi all:
This series introduces the support for rx busy polling support. This
was useful for reduing the latency for a kvm guest. Instead of
introducing new states and spinlocks, this series re-uses NAPI state
to synchonrize between NAPI and busy polling. This grealy simplified
the codes and reduce the overheads of spinlocks for normal NAPI fast
path.
Test was done between a kvm guest and an
2010 Mar 26
0
[LLVMdev] Questions on llvm and jit
...r and alias analysis (assuming
> this exists in libjit) is not the best. I wonder if llvm will have a
> problem. If I make the appropriate llvm calls to redundandly load an
> integer of a pointer several times (e.g. (goo == *a) .... .... (foo ==
> *a)), will llvm make every effort to reusue the temp created to store *a
> initially in the second reference? I tried this out with the llvm demo, and
> the C code generated automatically created a temp for the first load, and
> then reused that temp in the secondary reference. I however would not be
> making such calls - I ins...
2010 Mar 26
3
[LLVMdev] Questions on llvm and jit
...(assuming
> > this exists in libjit) is not the best. I wonder if llvm will have a
> > problem. If I make the appropriate llvm calls to redundandly load an
> > integer of a pointer several times (e.g. (goo == *a) .... .... (foo ==
> > *a)), will llvm make every effort to reusue the temp created to store *a
> > initially in the second reference? I tried this out with the llvm demo, and
> > the C code generated automatically created a temp for the first load, and
> > then reused that temp in the secondary reference. I however would not be
> > makin...
2010 Mar 26
0
[LLVMdev] Questions on llvm and jit
...(assuming
> > this exists in libjit) is not the best. I wonder if llvm will have a
> > problem. If I make the appropriate llvm calls to redundandly load an
> > integer of a pointer several times (e.g. (goo == *a) .... .... (foo ==
> > *a)), will llvm make every effort to reusue the temp created to store *a
> > initially in the second reference? I tried this out with the llvm demo, and
> > the C code generated automatically created a temp for the first load, and
> > then reused that temp in the secondary reference. I however would not be
> > makin...
2010 Mar 26
1
[LLVMdev] Questions on llvm and jit
...gt; > this exists in libjit) is not the best. I wonder if llvm will have a
>> > problem. If I make the appropriate llvm calls to redundandly load an
>> > integer of a pointer several times (e.g. (goo == *a) .... .... (foo ==
>> > *a)), will llvm make every effort to reusue the temp created to store *a
>> > initially in the second reference? I tried this out with the llvm demo,
>> > and
>> > the C code generated automatically created a temp for the first load,
>> > and
>> > then reused that temp in the secondary reference....