11f082af82
Implemented VCOMISS/VCOMISD/VUCOMISS/VUCOMISD AVX512 instructions Fix vector length values for AVX-512 (512-bit vector should have length 4) support mis-alignment #GP exception for VMOVAPS/PD/DQA32/DQ64 AVX512 instructions move AVX512 load/store and register move operations into dedicated file avx512_move.cc
808 lines
47 KiB
Makefile
808 lines
47 KiB
Makefile
# Copyright (C) 2001-2011 The Bochs Project
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA B 02110-1301 USA
|
|
|
|
|
|
@SUFFIX_LINE@
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_builddir = ..
|
|
top_srcdir = @top_srcdir@
|
|
|
|
SHELL = @SHELL@
|
|
|
|
@SET_MAKE@
|
|
|
|
CXX = @CXX@
|
|
CXXFLAGS = @CXXFLAGS@ @GUI_CXXFLAGS@
|
|
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBS = @LIBS@
|
|
X_LIBS = @X_LIBS@
|
|
X_PRE_LIBS = @X_PRE_LIBS@
|
|
RANLIB = @RANLIB@
|
|
|
|
BX_INCDIRS = -I.. -I$(srcdir)/.. -I../@INSTRUMENT_DIR@ -I$(srcdir)/../@INSTRUMENT_DIR@
|
|
|
|
# Objects which are synced between the cpu and cpu64 code and
|
|
# are used for either compile.
|
|
OBJS = \
|
|
init.o \
|
|
cpu.o \
|
|
event.o \
|
|
icache.o \
|
|
resolver.o \
|
|
fetchdecode.o \
|
|
access.o \
|
|
access32.o \
|
|
shift16.o \
|
|
logical16.o \
|
|
ctrl_xfer32.o \
|
|
ctrl_xfer16.o \
|
|
mmx.o \
|
|
3dnow.o \
|
|
fpu_emu.o \
|
|
sse.o \
|
|
sse_move.o \
|
|
sse_pfp.o \
|
|
sse_rcp.o \
|
|
sse_string.o \
|
|
xsave.o \
|
|
aes.o \
|
|
sha.o \
|
|
svm.o \
|
|
vmx.o \
|
|
vmcs.o \
|
|
vmexit.o \
|
|
vmfunc.o \
|
|
soft_int.o \
|
|
apic.o \
|
|
bcd.o \
|
|
mult16.o \
|
|
tasking.o \
|
|
shift32.o \
|
|
shift8.o \
|
|
arith8.o \
|
|
stack.o \
|
|
stack16.o \
|
|
protect_ctrl.o \
|
|
mult8.o \
|
|
load.o \
|
|
data_xfer8.o \
|
|
vm8086.o \
|
|
logical8.o \
|
|
logical32.o \
|
|
arith16.o \
|
|
segment_ctrl.o \
|
|
data_xfer16.o \
|
|
data_xfer32.o \
|
|
exception.o \
|
|
generic_cpuid.o \
|
|
proc_ctrl.o \
|
|
crregs.o \
|
|
msr.o \
|
|
smm.o \
|
|
flag_ctrl_pro.o \
|
|
stack32.o \
|
|
debugstuff.o \
|
|
flag_ctrl.o \
|
|
mult32.o \
|
|
arith32.o \
|
|
jmp_far.o \
|
|
call_far.o \
|
|
ret_far.o \
|
|
iret.o \
|
|
ctrl_xfer_pro.o \
|
|
segment_ctrl_pro.o \
|
|
io.o \
|
|
crc32.o \
|
|
bit.o \
|
|
bit16.o \
|
|
bit32.o \
|
|
bmi32.o \
|
|
string.o \
|
|
paging.o \
|
|
rdrand.o \
|
|
disasm.o
|
|
|
|
# Objects which are only used for x86-64 code
|
|
OBJS64 = \
|
|
access64.o \
|
|
arith64.o \
|
|
ctrl_xfer64.o \
|
|
data_xfer64.o \
|
|
fetchdecode64.o \
|
|
logical64.o \
|
|
mult64.o \
|
|
shift64.o \
|
|
bit64.o \
|
|
stack64.o \
|
|
avx.o \
|
|
avx_pfp.o \
|
|
avx_fma.o \
|
|
avx2.o \
|
|
gather.o \
|
|
bmi64.o \
|
|
tbm32.o \
|
|
tbm64.o \
|
|
xop.o \
|
|
avx512.o \
|
|
avx512_move.o \
|
|
avx512_pfp.o \
|
|
avx512_fma.o \
|
|
avx512_mask16.o \
|
|
vapic.o
|
|
|
|
BX_INCLUDES = ../bochs.h ../config.h
|
|
|
|
|
|
all: libcpu.a
|
|
|
|
.@CPP_SUFFIX@.o:
|
|
$(CXX) @DASH@c $(BX_INCDIRS) $(CXXFLAGS) @CXXFP@$< @OFP@$@
|
|
|
|
|
|
libcpu.a: $(OBJS) @OBJS64@
|
|
@RMCOMMAND@ libcpu.a
|
|
@MAKELIB@ $(OBJS) @OBJS64@
|
|
$(RANLIB) libcpu.a
|
|
|
|
$(OBJS): $(BX_INCLUDES)
|
|
|
|
$(OBJS64): $(BX_INCLUDES)
|
|
|
|
clean:
|
|
@RMCOMMAND@ *.o
|
|
@RMCOMMAND@ *.a
|
|
|
|
dist-clean: clean
|
|
@RMCOMMAND@ Makefile
|
|
|
|
###########################################
|
|
# dependencies generated by
|
|
# gcc -MM -I.. -I../instrument/stubs *.cc | sed 's/\.cc/.@CPP_SUFFIX@/g'
|
|
###########################################
|
|
3dnow.o: 3dnow.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
access32.o: access32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
access64.o: access64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
access.o: access.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
aes.o: aes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
sha.o: sha.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
apic.o: apic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
../iodev/iodev.h ../plugin.h ../extplugin.h ../ltdl.h ../param_names.h
|
|
arith16.o: arith16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
arith32.o: arith32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
arith64.o: arith64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
arith8.o: arith8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
avx2.o: avx2.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
avx.o: avx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
avx_fma.o: avx_fma.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
avx_pfp.o: avx_pfp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
bcd.o: bcd.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
bit16.o: bit16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
bit32.o: bit32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
bit64.o: bit64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
bit.o: bit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
bmi32.o: bmi32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
bmi64.o: bmi64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
call_far.o: call_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
cpu.o: cpu.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
crc32.o: crc32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
crregs.o: crregs.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
ctrl_xfer16.o: ctrl_xfer16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
ctrl_xfer32.o: ctrl_xfer32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
ctrl_xfer64.o: ctrl_xfer64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
ctrl_xfer_pro.o: ctrl_xfer_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
data_xfer16.o: data_xfer16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
data_xfer32.o: data_xfer32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
data_xfer64.o: data_xfer64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
data_xfer8.o: data_xfer8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
debugstuff.o: debugstuff.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
../disasm/disasm.h
|
|
event.o: event.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
../iodev/iodev.h ../plugin.h ../extplugin.h ../ltdl.h ../param_names.h
|
|
exception.o: exception.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
../param_names.h ../iodev/iodev.h ../plugin.h ../extplugin.h ../ltdl.h
|
|
fetchdecode64.o: fetchdecode64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
fetchdecode.h fetchdecode_x87.h fetchdecode_sse.h fetchdecode_avx.h \
|
|
fetchdecode_xop.h fetchdecode_evex.h
|
|
fetchdecode.o: fetchdecode.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
fetchdecode.h fetchdecode_x87.h fetchdecode_sse.h fetchdecode_avx.h \
|
|
fetchdecode_xop.h fetchdecode_evex.h
|
|
flag_ctrl.o: flag_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
flag_ctrl_pro.o: flag_ctrl_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
fpu_emu.o: fpu_emu.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
gather.o: gather.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
generic_cpuid.o: generic_cpuid.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h \
|
|
../param_names.h generic_cpuid.h ../cpu/cpuid.h
|
|
icache.o: icache.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
../param_names.h
|
|
init.o: init.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
../param_names.h generic_cpuid.h ../cpu/cpuid.h
|
|
io.o: io.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
../iodev/iodev.h ../plugin.h ../extplugin.h ../ltdl.h ../param_names.h
|
|
iret.o: iret.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
jmp_far.o: jmp_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
load.o: load.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
logical16.o: logical16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
logical32.o: logical32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
logical64.o: logical64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
logical8.o: logical8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
mmx.o: mmx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
msr.o: msr.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
mult16.o: mult16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
mult32.o: mult32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
mult64.o: mult64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
mult8.o: mult8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
paging.o: paging.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
proc_ctrl.o: proc_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h cpu.h \
|
|
cpuid.h crregs.h descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h \
|
|
apic.h i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
xmm.h vmx.h stack.h
|
|
protect_ctrl.o: protect_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
resolver.o: resolver.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
ret_far.o: ret_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
segment_ctrl.o: segment_ctrl.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
segment_ctrl_pro.o: segment_ctrl_pro.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
shift16.o: shift16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
shift32.o: shift32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
shift64.o: shift64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
shift8.o: shift8.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
smm.o: smm.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h smm.h
|
|
soft_int.o: soft_int.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
sse.o: sse.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h simd_int.h \
|
|
simd_compare.h
|
|
sse_move.o: sse_move.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
simd_int.h
|
|
sse_pfp.o: sse_pfp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
fpu/softfloat-compare.h fpu/softfloat.h simd_pfp.h
|
|
sse_rcp.o: sse_rcp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
fpu/softfloat-specialize.h fpu/softfloat.h
|
|
sse_string.o: sse_string.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
stack16.o: stack16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
stack32.o: stack32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
stack64.o: stack64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
stack.o: stack.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
string.o: string.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
svm.o: svm.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
tasking.o: tasking.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h \
|
|
descriptor.h instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
tbm32.o: tbm32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
tbm64.o: tbm64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
vapic.o: vapic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
vm8086.o: vm8086.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
vmcs.o: vmcs.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
vmexit.o: vmexit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
vmfunc.o: vmfunc.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
vmx.o: vmx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h \
|
|
../iodev/iodev.h ../plugin.h ../extplugin.h ../ltdl.h ../param_names.h
|
|
xop.o: xop.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
avx512.o: avx512.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h simd_int.h
|
|
avx512_move.o: avx512_move.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h simd_int.h
|
|
avx512_pfp.o: avx512_pfp.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
avx512_fma.o: avx512_fma.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
avx512_mask16.o: avx512_mask16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
xsave.o: xsave.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
rdrand.o: rdrand.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|
|
disasm.o: disasm.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
|
|
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
|
|
../gui/paramtree.h ../memory/memory.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h cpuid.h crregs.h descriptor.h \
|
|
instr.h ia_opcodes.h lazy_flags.h icache.h apic.h i387.h fpu/softfloat.h \
|
|
fpu/tag_w.h fpu/status_w.h fpu/control_w.h xmm.h vmx.h stack.h
|