/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/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 | 628 uint8_t inst_type = RV64; in Decode() local 633 inst_type = RV32; in Decode() 637 (inst_type & pat.inst_type) != 0) { in Decode() 1767 InstructionType inst_type) { in CreateInstance() argument 1768 if (EmulateInstructionRISCV::SupportsThisInstructionType(inst_type) && in CreateInstance()
|
H A D | RISCVInstructions.h | 305 uint8_t inst_type = RV32 | RV64 | RV128; member
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/ARM/ |
H A D | EmulateInstructionARM.h | 71 CreateInstance(const lldb_private::ArchSpec &arch, InstructionType inst_type); 74 SupportsEmulatingInstructionsOfTypeStatic(InstructionType inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() argument 75 switch (inst_type) { in SupportsEmulatingInstructionsOfTypeStatic() 121 bool SupportsEmulatingInstructionsOfType(InstructionType inst_type) override { in SupportsEmulatingInstructionsOfType() argument 122 return SupportsEmulatingInstructionsOfTypeStatic(inst_type); in SupportsEmulatingInstructionsOfType()
|
H A D | EmulateInstructionARM.cpp | 724 InstructionType inst_type) { in CreateInstance() argument 726 inst_type)) { in CreateInstance()
|
/openbsd/gnu/llvm/lldb/include/lldb/ |
H A D | lldb-private-interfaces.h | 64 const ArchSpec &arch, InstructionType inst_type);
|
/openbsd/gnu/llvm/lldb/include/lldb/Core/ |
H A D | EmulateInstruction.h | 366 SupportsEmulatingInstructionsOfType(InstructionType inst_type) = 0;
|