Sync the x86 dis_tables.c with upstream.This corresponds to the following illumos issues: 5755 want support for Intel FMA instrs 5756 want support for Intel BMI1 instrs 5757 want support for
Sync the x86 dis_tables.c with upstream.This corresponds to the following illumos issues: 5755 want support for Intel FMA instrs 5756 want support for Intel BMI1 instrs 5757 want support for Intel BMI2 instrs 5758 want support for Intel AVX2 instrs 7204 Want broadwell rdseed and adx support 7208 Want stac/clac disasm support 7733 Need SHA Instruction dis support 7756 dis can't handle x86 SSE 3 instructions 7757 want avx2 disasm tests 7758 want SSE 4.1 disasm testsMFC after: 2 weeks
show more ...
Merge {amd64,i386}/instr_size.c into x86_instr_size.c.Also reduce the diff between us and upstream: the input data model willalways be DATAMODEL_NATIVE because of a bug (p_model is never set but i
Merge {amd64,i386}/instr_size.c into x86_instr_size.c.Also reduce the diff between us and upstream: the input data model willalways be DATAMODEL_NATIVE because of a bug (p_model is never set but isalways initialized to 0), so we don't need to override the caller anyway.This change is also necessary to support the pid provider for 32-bitprocesses on amd64.MFC after: 2 weeks
add invpcid instruction to i386 dtrace disassembler tablesMFC after: 2 weeks
lahf/sahf are supported on some amd64 processorsWhile the instructions were not included into the original instructionset, their support can be indicated by a special feature bit.For example: C
lahf/sahf are supported on some amd64 processorsWhile the instructions were not included into the original instructionset, their support can be indicated by a special feature bit.For example: CPU: AMD Phenom(tm) II X4 955 Processor (3214.71-MHz K8-class CPU) ... AMD Features2=0x37ff<LAHF, ...>Clang 3.8 uses lahf/sahf as a faster alternative to pushf/popf wherepossible.MFC after: 2 weeks
Mechanically convert cddl sun #ifdef's to illumosSince the upstream for cddl code is now illumos not sun, mechanicallyconvert all sun #ifdef's to illumos #ifdef's which have been used in allnewer
Mechanically convert cddl sun #ifdef's to illumosSince the upstream for cddl code is now illumos not sun, mechanicallyconvert all sun #ifdef's to illumos #ifdef's which have been used in allnewer code for some time.Also do a manual pass to correct the use if #ifdef comments as per style(9)as well as few uses of #if defined(__FreeBSD__) vs #ifndef illumos.MFC after: 1 monthSponsored by: Multiplay
Update dis_tables.c to the latest Illumos version.This includes decodes of recent Intel instructions, in particularVT-x and related instructions. This allows the FBT provider tolocate the exit po
Update dis_tables.c to the latest Illumos version.This includes decodes of recent Intel instructions, in particularVT-x and related instructions. This allows the FBT provider tolocate the exit points of routines that include these newinstructions.Illumos issues: 3414 Need a new word of AT_SUN_HWCAP bits 3415 Add isainfo support for f16c and rdrand 3416 Need disassembler support for rdrand and f16c 3413 isainfo -v overflows 80 columns 3417 mdb disassembler confuses rdtscp for invlpg 1518 dis should support AMD SVM/AMD-V/Pacifica instructions 1096 i386 disassembler should understand complex nops 1362 add kvmstat for monitoring of KVM statistics 1363 add vmregs[] variable to DTrace 1364 need disassembler support for VMX instructions 1365 mdb needs 16-bit disassembler supportThis corresponds to Illumos-gate (github) versioneb23829ff08a873c612ac45d191d559394b4b408Reviewed by: markjMFC after: 1 week
Fix the struct reg mappings for i386 and amd64, which differ between illumosand FreeBSD.Submitted by: Prashanth Kumar <[email protected]>MFC after: 2 weeks
Move some files that are identical on i386 and amd64 to an x86 subdirectoryrather than keeping duplicate copies.Discussed with: avgMFC after: 1 week