/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/ |
H A D | EmulateInstructionPPC64.h | 32 InstructionType inst_type); 35 SupportsEmulatingInstructionsOfTypeStatic(InstructionType inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() argument 36 switch (inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() 52 bool SupportsEmulatingInstructionsOfType(InstructionType inst_type) override { in SupportsEmulatingInstructionsOfType() argument 53 return SupportsEmulatingInstructionsOfTypeStatic(inst_type); in SupportsEmulatingInstructionsOfType()
|
H A D | EmulateInstructionPPC64.cpp | 49 InstructionType inst_type) { in CreateInstance() argument 51 inst_type)) in CreateInstance()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/ |
H A D | EmulateInstructionLoongArch.h | 28 static bool SupportsThisInstructionType(InstructionType inst_type) { in SupportsThisInstructionType() argument 29 return inst_type == eInstructionTypePCModifying; in SupportsThisInstructionType() 35 CreateInstance(const lldb_private::ArchSpec &arch, InstructionType inst_type); 48 bool SupportsEmulatingInstructionsOfType(InstructionType inst_type) override { in SupportsEmulatingInstructionsOfType() argument 49 return SupportsThisInstructionType(inst_type); in SupportsEmulatingInstructionsOfType()
|
H A D | EmulateInstructionLoongArch.cpp | 205 InstructionType inst_type) { in CreateInstance() argument 206 if (EmulateInstructionLoongArch::SupportsThisInstructionType(inst_type) && in CreateInstance()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
H A D | EmulateInstructionRISCV.h | 31 static bool SupportsThisInstructionType(InstructionType inst_type) { in SupportsThisInstructionType() argument 32 switch (inst_type) { in SupportsThisInstructionType() 46 CreateInstance(const lldb_private::ArchSpec &arch, InstructionType inst_type); 57 bool SupportsEmulatingInstructionsOfType(InstructionType inst_type) override { in SupportsEmulatingInstructionsOfType() argument 58 return SupportsThisInstructionType(inst_type); in SupportsEmulatingInstructionsOfType()
|
H A D | EmulateInstructionRISCV.cpp | 625 uint8_t inst_type = RV64; in Decode() local 648 inst_type = RV32; in Decode() 652 (inst_type & pat.inst_type) != 0) { in Decode() 1782 InstructionType inst_type) { in CreateInstance() argument 1783 if (EmulateInstructionRISCV::SupportsThisInstructionType(inst_type) && in CreateInstance()
|
H A D | RISCVInstructions.h | 305 uint8_t inst_type = RV32 | RV64 | RV128; member
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/ |
H A D | EmulateInstructionARM64.h | 34 lldb_private::InstructionType inst_type); 37 lldb_private::InstructionType inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() argument 38 switch (inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() 55 lldb_private::InstructionType inst_type) override { in SupportsEmulatingInstructionsOfType() argument 56 return SupportsEmulatingInstructionsOfTypeStatic(inst_type); in SupportsEmulatingInstructionsOfType()
|
H A D | EmulateInstructionARM64.cpp | 126 InstructionType inst_type) { in CreateInstance() argument 128 inst_type)) { in CreateInstance()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/ |
H A D | EmulateInstructionMIPS64.h | 41 lldb_private::InstructionType inst_type); 44 lldb_private::InstructionType inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() argument 45 switch (inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() 62 lldb_private::InstructionType inst_type) override { in SupportsEmulatingInstructionsOfType() argument 63 return SupportsEmulatingInstructionsOfTypeStatic(inst_type); in SupportsEmulatingInstructionsOfType()
|
H A D | EmulateInstructionMIPS64.cpp | 190 InstructionType inst_type) { in CreateInstance() argument 192 inst_type)) { in CreateInstance()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/ |
H A D | EmulateInstructionMIPS.h | 43 lldb_private::InstructionType inst_type); 46 lldb_private::InstructionType inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() argument 47 switch (inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() 66 lldb_private::InstructionType inst_type) override { in SupportsEmulatingInstructionsOfType() argument 67 return SupportsEmulatingInstructionsOfTypeStatic(inst_type); in SupportsEmulatingInstructionsOfType()
|
H A D | EmulateInstructionMIPS.cpp | 203 InstructionType inst_type) { in CreateInstance() argument 205 inst_type)) { in CreateInstance()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
H A D | EmulateInstructionARM.h | 70 CreateInstance(const lldb_private::ArchSpec &arch, InstructionType inst_type); 73 SupportsEmulatingInstructionsOfTypeStatic(InstructionType inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() argument 74 switch (inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() 120 bool SupportsEmulatingInstructionsOfType(InstructionType inst_type) override { in SupportsEmulatingInstructionsOfType() argument 121 return SupportsEmulatingInstructionsOfTypeStatic(inst_type); in SupportsEmulatingInstructionsOfType()
|
H A D | EmulateInstructionARM.cpp | 723 InstructionType inst_type) { in CreateInstance() argument 725 inst_type)) { in CreateInstance()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/ |
H A D | lldb-private-interfaces.h | 62 const ArchSpec &arch, InstructionType inst_type);
|
/freebsd/usr.sbin/bhyve/amd64/ |
H A D | vmexit.c | 251 EPRINTLN("\tinst_type\t\t%d", vme->u.vmx.inst_type); in vmexit_vmx()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | EmulateInstruction.h | 366 SupportsEmulatingInstructionsOfType(InstructionType inst_type) = 0;
|
/freebsd/sys/amd64/include/ |
H A D | vmm.h | 731 int inst_type; member
|
/freebsd/sys/amd64/vmm/intel/ |
H A D | vmx.c | 2871 vmexit->u.vmx.inst_type = 0; in vmx_exit_process() 2904 vmexit->u.vmx.inst_type = rc; in vmx_exit_inst_error()
|