Home
last modified time | relevance | path

Searched refs:inst_type (Results 1 – 17 of 17) sorted by relevance

/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.h32 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 DEmulateInstructionPPC64.cpp49 InstructionType inst_type) { in CreateInstance() argument
51 inst_type)) in CreateInstance()
/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.h31 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 DEmulateInstructionRISCV.cpp628 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 DRISCVInstructions.h305 uint8_t inst_type = RV32 | RV64 | RV128; member
/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.h28 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 DEmulateInstructionLoongArch.cpp205 InstructionType inst_type) { in CreateInstance() argument
206 if (EmulateInstructionLoongArch::SupportsThisInstructionType(inst_type) && in CreateInstance()
/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h34 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 DEmulateInstructionARM64.cpp126 InstructionType inst_type) { in CreateInstance() argument
128 inst_type)) { in CreateInstance()
/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.h41 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 DEmulateInstructionMIPS64.cpp190 InstructionType inst_type) { in CreateInstance() argument
192 inst_type)) { in CreateInstance()
/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h43 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 DEmulateInstructionMIPS.cpp203 InstructionType inst_type) { in CreateInstance() argument
205 inst_type)) { in CreateInstance()
/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h71 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 DEmulateInstructionARM.cpp724 InstructionType inst_type) { in CreateInstance() argument
726 inst_type)) { in CreateInstance()
/openbsd/gnu/llvm/lldb/include/lldb/
H A Dlldb-private-interfaces.h64 const ArchSpec &arch, InstructionType inst_type);
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DEmulateInstruction.h366 SupportsEmulatingInstructionsOfType(InstructionType inst_type) = 0;