Re: [Qemu-devel] Questions on "hidden" functions in QEMU source code

2007-10-20 Thread Rob Landley
On Tuesday 16 October 2007 9:19:36 am Johannes Schindelin wrote: > If you wonder why it is included four times, this might help: > > http://libvncserver.sourceforge.net/qemu/qemu-templates-ala-Fabrice.txt Is that linked from qemu.org/user-doc.html somewhere? Rob -- "One of my most productive day

Re: [Qemu-devel] Questions on "hidden" functions in QEMU source code

2007-10-17 Thread Jun Koi
On 10/16/07, Johannes Schindelin <[EMAIL PROTECTED]> wrote: > Hi, > > On Tue, 16 Oct 2007, Stuart Brady wrote: > > > On Tue, Oct 16, 2007 at 05:28:24PM +0900, Jun Koi wrote: > > > For example, functions like compute_all_incb() and compute_c_incl() in > > > target-i386/op.c are never defined anywher

Re: [Qemu-devel] Questions on "hidden" functions in QEMU source code

2007-10-16 Thread Johannes Schindelin
Hi, On Tue, 16 Oct 2007, Stuart Brady wrote: > On Tue, Oct 16, 2007 at 05:28:24PM +0900, Jun Koi wrote: > > For example, functions like compute_all_incb() and compute_c_incl() in > > target-i386/op.c are never defined anywhere. > > compute_all_inc* are defined in ops_template.h:~171. You'll not

Re: [Qemu-devel] Questions on "hidden" functions in QEMU source code

2007-10-16 Thread Stuart Brady
On Tue, Oct 16, 2007 at 05:28:24PM +0900, Jun Koi wrote: > For example, functions like compute_all_incb() and compute_c_incl() in > target-i386/op.c are never defined anywhere. compute_all_inc* are defined in ops_template.h:~171. You'll notice that ops_template.h is included four times from op.c

[Qemu-devel] Questions on "hidden" functions in QEMU source code

2007-10-16 Thread Jun Koi
Hi, I am looking at the source code of QEMU, and there are some mystery to me: some functions are not defined anywhere. For example, functions like compute_all_incb() and compute_c_incl() in target-i386/op.c are never defined anywhere. So how the compilation process generates these functions? A