Bool shadow_regs;
Bool command_line_options;
Bool client_requests;
- Bool extended_UCode;
+ Bool no_longer_used_0; // for backwards compatibility
Bool syscall_wrapper;
Bool sanity_checks;
Bool data_syms;
.shadow_regs = False,
.command_line_options = False,
.client_requests = False,
- .extended_UCode = False,
+ .no_longer_used_0 = False,
.syscall_wrapper = False,
.sanity_checks = False,
.data_syms = False,
NEEDS(shadow_regs)
NEEDS(command_line_options)
NEEDS(client_requests)
-NEEDS(extended_UCode)
NEEDS(syscall_wrapper)
NEEDS(sanity_checks)
NEEDS(data_syms)
/* Tool defines its own client requests? */
extern void VG_(needs_client_requests) ( void );
-/* Tool defines its own UInstrs? */
-extern void VG_(needs_extended_UCode) ( void );
-
/* Tool does stuff before and/or after system calls? */
extern void VG_(needs_syscall_wrapper) ( void );
VG_(needs_shadow_regs) ();
VG_(needs_command_line_options)();
VG_(needs_client_requests) ();
- VG_(needs_extended_UCode) ();
VG_(needs_sanity_checks) ();
VG_(needs_shadow_memory) ();