Home
last modified time | relevance | path

Searched refs:GetMnemonic (Results 1 – 14 of 14) sorted by relevance

/external/llvm-project/lldb/unittests/Disassembler/
DTestArmv7Disassembly.cpp80 mnemonic = inst_sp->GetMnemonic(&exe_ctx); in TEST_F()
84 mnemonic = inst_sp->GetMnemonic(&exe_ctx); in TEST_F()
88 mnemonic = inst_sp->GetMnemonic(&exe_ctx); in TEST_F()
DTestArm64Disassembly.cpp72 mnemonic = inst_sp->GetMnemonic(&exe_ctx); in TEST_F()
76 mnemonic = inst_sp->GetMnemonic(&exe_ctx); in TEST_F()
/external/llvm-project/lldb/test/API/python_api/disassemble-raw-data/
DTestDisassembleRawData.py50 self.assertTrue(inst.GetMnemonic(target) == "move")
54 self.assertTrue(inst.GetMnemonic(target) == "li")
57 self.assertTrue(inst.GetMnemonic(target) == "movq")
DTestDisassemble_VST1_64.py79 self.assertTrue(inst.GetMnemonic(target) == "vst1.64")
/external/llvm-project/lldb/bindings/interface/
DSBInstruction.i36 GetMnemonic (lldb::SBTarget target);
82 return self.GetMnemonic (target)
/external/llvm-project/lldb/source/API/
DSBInstruction.cpp114 const char *SBInstruction::GetMnemonic(SBTarget target) { in GetMnemonic() function in SBInstruction
115 LLDB_RECORD_METHOD(const char *, SBInstruction, GetMnemonic, (lldb::SBTarget), in GetMnemonic()
129 return inst_sp->GetMnemonic(&exe_ctx); in GetMnemonic()
358 LLDB_REGISTER_METHOD(const char *, SBInstruction, GetMnemonic, in RegisterMethods()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
DDynamicLoaderWindowsDYLD.cpp217 strcmp(first_insn->GetMnemonic(&exe_ctx), "jmpl") != 0 || in GetStepThroughTrampolinePlan()
218 strcmp(second_insn->GetMnemonic(&exe_ctx), "nop") != 0) { in GetStepThroughTrampolinePlan()
/external/capstone/contrib/sysz_update/
D0007-capstone-generate-GenInsnNameMaps.inc.patch34 +std::string GetMnemonic(const CodeGenInstruction *Inst) {
56 + M[GetPublicName(Inst)] = GetMnemonic(Inst);
/external/llvm-project/lldb/include/lldb/API/
DSBInstruction.h40 const char *GetMnemonic(lldb::SBTarget target);
/external/llvm-project/lldb/include/lldb/Core/
DDisassembler.h67 const char *GetMnemonic(const ExecutionContext *exe_ctx) { in GetMnemonic() function
/external/llvm-project/lldb/examples/python/
Dlldbtk.py385 value = self.instr.GetMnemonic(
Dsymbolication.py585 mnemonic = inst.GetMnemonic(target)
/external/llvm-project/lldb/tools/lldb-vscode/
DJSONUtils.cpp636 const char *m = inst.GetMnemonic(g_vsc.target); in CreateSource()
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp3811 const char *mnemonic = inst->GetMnemonic(&exe_ctx); in WindowDelegateDraw()