833 lines
46 KiB
Makefile
833 lines
46 KiB
Makefile
# Copyright (C) 2001-2017 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 \
|
|
decoder/fetchdecode32.o \
|
|
access.o \
|
|
access2.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 \
|
|
gf2.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 \
|
|
cpuid.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 \
|
|
decoder/disasm.o
|
|
|
|
# Objects which are only used for x86-64 code
|
|
OBJS64 = \
|
|
arith64.o \
|
|
ctrl_xfer64.o \
|
|
data_xfer64.o \
|
|
decoder/fetchdecode64.o \
|
|
logical64.o \
|
|
mult64.o \
|
|
shift64.o \
|
|
bit64.o \
|
|
stack64.o \
|
|
bmi64.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
|
|
@RMCOMMAND@ decoder@SLASH@*.o
|
|
|
|
dist-clean: clean
|
|
@RMCOMMAND@ Makefile
|
|
|
|
###########################################
|
|
# dependencies generated by
|
|
# gcc -MM -I.. -I../instrument/stubs *.cc decoder/*.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h
|
|
access2.o: access2.@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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h simd_int.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h ../iodev/iodev.h ../plugin.h \
|
|
../extplugin.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h scalar_arith.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h scalar_arith.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h scalar_arith.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h scalar_arith.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h scalar_arith.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h cpustats.h
|
|
cpuid.o: 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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h access.h ../param_names.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.h ../disasm/disasm.h \
|
|
../cpu/decoder/decoder.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h ../iodev/iodev.h ../plugin.h \
|
|
../extplugin.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.h ../param_names.h \
|
|
../iodev/iodev.h ../plugin.h ../extplugin.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h access.h ../param_names.h generic_cpuid.h
|
|
gf2.o: gf2.@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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h scalar_arith.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h ../param_names.h cpustats.h \
|
|
decoder/ia_opcodes.h decoder/ia_opcodes.def
|
|
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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h ../param_names.h cpustats.h \
|
|
generic_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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h ../iodev/iodev.h ../plugin.h \
|
|
../extplugin.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h simd_int.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h cpustats.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h cpu.h \
|
|
decoder/decoder.h i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h \
|
|
fpu/control_w.h crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h \
|
|
icache.h apic.h xmm.h vmx.h svm.h cpuid.h stack.h access.h \
|
|
decoder/ia_opcodes.h decoder/ia_opcodes.def
|
|
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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.h decoder/ia_opcodes.h \
|
|
decoder/ia_opcodes.def
|
|
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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.h decoder/ia_opcodes.h \
|
|
decoder/ia_opcodes.def
|
|
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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.h decoder/ia_opcodes.h \
|
|
decoder/ia_opcodes.def
|
|
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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h decoder/ia_opcodes.h \
|
|
decoder/ia_opcodes.def
|
|
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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.h fpu/softfloat-compare.h \
|
|
fpu/softfloat.h simd_pfp.h simd_int.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h cpustats.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h decoder/ia_opcodes.h \
|
|
decoder/ia_opcodes.def
|
|
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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h decoder/decoder.h \
|
|
i387.h fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h \
|
|
crregs.h descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h \
|
|
xmm.h vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h decoder/ia_opcodes.h \
|
|
decoder/ia_opcodes.def
|
|
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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h ../iodev/iodev.h ../plugin.h \
|
|
../extplugin.h ../param_names.h decoder/ia_opcodes.h \
|
|
decoder/ia_opcodes.def
|
|
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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h lazy_flags.h tlb.h icache.h apic.h xmm.h \
|
|
vmx.h svm.h cpuid.h stack.h access.h decoder/ia_opcodes.h \
|
|
decoder/ia_opcodes.def
|
|
disasm.o: decoder/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-bochs.h ../pc_system.h \
|
|
../gui/gui.h ../instrument/stubs/instrument.h cpu.h \
|
|
decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h \
|
|
fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h \
|
|
lazy_flags.h tlb.h icache.h \
|
|
apic.h xmm.h vmx.h svm.h \
|
|
cpuid.h access.h decoder/fetchdecode.h \
|
|
decoder/ia_opcodes.h decoder/ia_opcodes.def decoder/fetchdecode_x87.h \
|
|
decoder/fetchdecode_avx.h decoder/fetchdecode_xop.h \
|
|
decoder/fetchdecode_evex.h
|
|
fetchdecode32.o: decoder/fetchdecode32.@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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h \
|
|
decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h \
|
|
fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h \
|
|
lazy_flags.h tlb.h icache.h \
|
|
apic.h xmm.h vmx.h svm.h \
|
|
cpuid.h access.h decoder/fetchdecode.h \
|
|
decoder/ia_opcodes.h decoder/ia_opcodes.def decoder/fetchdecode_x87.h \
|
|
decoder/fetchdecode_avx.h decoder/fetchdecode_xop.h \
|
|
decoder/fetchdecode_evex.h decoder/fetchdecode_opmap.h \
|
|
decoder/fetchdecode_opmap_0f38.h decoder/fetchdecode_opmap_0f3a.h
|
|
fetchdecode64.o: decoder/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-bochs.h ../pc_system.h ../gui/gui.h \
|
|
../instrument/stubs/instrument.h cpu.h \
|
|
decoder/decoder.h i387.h \
|
|
fpu/softfloat.h fpu/tag_w.h \
|
|
fpu/status_w.h fpu/control_w.h crregs.h \
|
|
descriptor.h decoder/instr.h \
|
|
lazy_flags.h tlb.h icache.h \
|
|
apic.h xmm.h vmx.h svm.h \
|
|
cpuid.h access.h decoder/fetchdecode.h \
|
|
decoder/ia_opcodes.h decoder/ia_opcodes.def decoder/fetchdecode_x87.h \
|
|
decoder/fetchdecode_avx.h decoder/fetchdecode_xop.h \
|
|
decoder/fetchdecode_evex.h decoder/fetchdecode_opmap.h \
|
|
decoder/fetchdecode_opmap_0f38.h decoder/fetchdecode_opmap_0f3a.h
|