Displaying 17 results from an estimated 17 matches for "thecap".
2004 Oct 10
1
cvs build broken in auth/db-mysql.c?
...ysql.c
82c82
< if (!mysql_conn_open(conn))
---
> if (!db_mysql_connect(conn))
This little error snuck in between -r1.10 and -r1.11 of src/auth/db-mysql.c .
Tom
--
28 70 20 71 2C 65 29 61 9C B1 36 3D D4 69 CE 62 4A 22 8B 0E DC 3E
mailto:mail at thecap.org
http://thecap.org/
2004 Oct 27
2
[LLVMdev] Getting started with GC
...ted since llvm_gc_collect in
llvm/runtime/GC/SemiSpace/semispace.c ends with abort();
I believe we have our work cut out for us. Hopefully you'll have a
working GC by Christmas time.
Tom
--
28 70 20 71 2C 65 29 61 9C B1 36 3D D4 69 CE 62 4A 22 8B 0E DC 3E
mailto:tdbrown at uiuc.edu
http://thecap.org/
2004 Oct 26
2
[LLVMdev] Getting started with GC
...Where is llvm-java? Google didn't find it in top 10, there is no
llvm-java module in cvs, find -iname java offered no hope.
Do you recommend we stick to llvm assembly for testing GC?
Tom
--
28 70 20 71 2C 65 29 61 9C B1 36 3D D4 69 CE 62 4A 22 8B 0E DC 3E
mailto:tdbrown at uiuc.edu
http://thecap.org/
2004 Nov 08
1
[LLVMdev] LLVM for JIT only use
On Sun, 7 Nov 2004, Misha Brukman wrote:
> > How do I plug my copying GC into LLVM? It has to know about the stack
> > frames, etc... (I mostly need the location inside the stack frames of
> > GC-ed pointers)
>
> I'm not the person to ask about GC, I'll let Chris Lattner chime in on
> this. You can read a previous discussion about scheme GC and LLVM:
This is
2004 Oct 27
0
[LLVMdev] Getting started with GC
On Wed, 27 Oct 2004, Tom Brown wrote:
> On Tue, Oct 26, 2004 at 11:17:00PM -0500, Chris Lattner wrote:
> > On Tue, 26 Oct 2004, Tom Brown wrote:
> > > $ llvm-as alloc_loop.ll
> > > $ lli alloc_loop.bc
> > > lli: Globals.cpp:81: llvm::GlobalVariable::GlobalVariable(const llvm::Type*, bool, llvm::GlobalValue::LinkageTypes, llvm::Constant*, const std::string&,
2004 Dec 12
1
[LLVMdev] Problem linking llvm_gc_collect
...18llvm_gc_initializeE19__PRETTY_FUNCTION__ is in the data section
of generational.bc but there is no corresponding munged version of
llvm_gc_collect. Any hints on making this work?
Thanks,
Tom
--
28 70 20 71 2C 65 29 61 9C B1 36 3D D4 69 CE 62 4A 22 8B 0E DC 3E
mailto:tdbrown at uiuc.edu
http://thecap.org/
2004 Oct 27
0
[LLVMdev] Getting started with GC
On Tue, 26 Oct 2004, Tom Brown wrote:
> I'm in a group tasked with improving the GC of LLVM for a 421 project.
> We are having trouble getting started with the given SemiSpace
> collector.
>
> We found the string llvm_gc_initialize called from a single source file
> ./test/Regression/CodeGen/Generic/GC/alloc_loop.ll
> which we tried with the following... (showing LLVM
2004 Oct 28
2
[LLVMdev] Getting started with GC
...he use of Meta in SemiSpace?
We could trample around and make something work but it seems as
though you have built most of the support structure for GC. We are
trying to follow that plan.
Tom
--
28 70 20 71 2C 65 29 61 9C B1 36 3D D4 69 CE 62 4A 22 8B 0E DC 3E
mailto:tdbrown at uiuc.edu
http://thecap.org/
2019 Oct 23
2
[PATCH V5 4/6] mdev: introduce virtio device and its device ops
...@mdev: mediated device
> + * @offset: offset from the beginning of
> + * configuration space
> + * @buf: buffer used to write from
> + * @len: the length to write to
> + * configration space
> + * @get_mdev_features: Get a set of bits that demonstrate
> + * thecapability of the mdev device. New
> + * features bits must be added when
> + * introducing new device ops.
> + * @mdev: mediated device
> + * Returns the mdev features (API) support by
> + * the device.
> + * @get_generation: Get device config generaton (optionally)
&...
2019 Oct 23
2
[PATCH V5 4/6] mdev: introduce virtio device and its device ops
...@mdev: mediated device
> + * @offset: offset from the beginning of
> + * configuration space
> + * @buf: buffer used to write from
> + * @len: the length to write to
> + * configration space
> + * @get_mdev_features: Get a set of bits that demonstrate
> + * thecapability of the mdev device. New
> + * features bits must be added when
> + * introducing new device ops.
> + * @mdev: mediated device
> + * Returns the mdev features (API) support by
> + * the device.
> + * @get_generation: Get device config generaton (optionally)
&...
2019 Oct 23
0
[PATCH V5 4/6] mdev: introduce virtio device and its device ops
...specific configuration space
+ * @mdev: mediated device
+ * @offset: offset from the beginning of
+ * configuration space
+ * @buf: buffer used to write from
+ * @len: the length to write to
+ * configration space
+ * @get_mdev_features: Get a set of bits that demonstrate
+ * thecapability of the mdev device. New
+ * features bits must be added when
+ * introducing new device ops.
+ * @mdev: mediated device
+ * Returns the mdev features (API) support by
+ * the device.
+ * @get_generation: Get device config generaton (optionally)
+ * @mdev: mediated device
+...
2019 Oct 24
0
[PATCH V5 4/6] mdev: introduce virtio device and its device ops
...;> + * @offset: offset from the beginning of
>> + * configuration space
>> + * @buf: buffer used to write from
>> + * @len: the length to write to
>> + * configration space
>> + * @get_mdev_features: Get a set of bits that demonstrate
>> + * thecapability of the mdev device. New
>> + * features bits must be added when
>> + * introducing new device ops.
>> + * @mdev: mediated device
>> + * Returns the mdev features (API) support by
>> + * the device.
>> + * @get_generation: Get device config...
2004 Oct 29
0
[LLVMdev] Getting started with GC
On Thu, 28 Oct 2004, Tom Brown wrote:
> We have a few questions about the current state of GC.
Ok. :)
> We decided to start (and finish?) our work by finishing SemiSpace.
Sounds good.
> process_pointer is meant to move objects from CurSpace to OtherSpace.
> How can it find pointers to a moved object?
This is entirely up to you, as you're basically implementing the semispace
2019 Oct 24
1
[PATCH V5 4/6] mdev: introduce virtio device and its device ops
...rom the beginning of
> >> + * configuration space
> >> + * @buf: buffer used to write from
> >> + * @len: the length to write to
> >> + * configration space
> >> + * @get_mdev_features: Get a set of bits that demonstrate
> >> + * thecapability of the mdev device. New
> >> + * features bits must be added when
> >> + * introducing new device ops.
> >> + * @mdev: mediated device
> >> + * Returns the mdev features (API) support by
> >> + * the device.
> >> + * @get_g...
2019 Oct 23
10
[PATCH V5 0/6] mdev based hardware virtio offloading support
Hi all:
There are hardwares that can do virtio datapath offloading while
having its own control path. This path tries to implement a mdev based
unified API to support using kernel virtio driver to drive those
devices. This is done by introducing a new mdev transport for virtio
(virtio_mdev) and register itself as a new kind of mdev driver. Then
it provides a unified way for kernel virtio driver
2019 Oct 23
10
[PATCH V5 0/6] mdev based hardware virtio offloading support
Hi all:
There are hardwares that can do virtio datapath offloading while
having its own control path. This path tries to implement a mdev based
unified API to support using kernel virtio driver to drive those
devices. This is done by introducing a new mdev transport for virtio
(virtio_mdev) and register itself as a new kind of mdev driver. Then
it provides a unified way for kernel virtio driver
2019 Oct 30
8
[PATCH V6 0/6] mdev based hardware virtio offloading support
Hi all:
There are hardwares that can do virtio datapath offloading while
having its own control path. This path tries to implement a mdev based
unified API to support using kernel virtio driver to drive those
devices. This is done by introducing a new mdev transport for virtio
(virtio_mdev) and register itself as a new kind of mdev driver. Then
it provides a unified way for kernel virtio driver