/external/llvm-project/lldb/source/API/ |
D | SBSymbol.cpp | 113 SBInstructionList SBSymbol::GetInstructions(SBTarget target) { in GetInstructions() function in SBSymbol 114 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBSymbol, GetInstructions, in GetInstructions() 117 return LLDB_RECORD_RESULT(GetInstructions(target, nullptr)); in GetInstructions() 120 SBInstructionList SBSymbol::GetInstructions(SBTarget target, in GetInstructions() function in SBSymbol 122 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBSymbol, GetInstructions, in GetInstructions() 224 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBSymbol, GetInstructions, in RegisterMethods() 226 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBSymbol, GetInstructions, in RegisterMethods()
|
D | SBFunction.cpp | 115 SBInstructionList SBFunction::GetInstructions(SBTarget target) { in GetInstructions() function in SBFunction 116 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions, in GetInstructions() 119 return LLDB_RECORD_RESULT(GetInstructions(target, nullptr)); in GetInstructions() 122 SBInstructionList SBFunction::GetInstructions(SBTarget target, in GetInstructions() function in SBFunction 124 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions, in GetInstructions() 260 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions, in RegisterMethods() 262 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions, in RegisterMethods()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBSymbol.i | 43 GetInstructions (lldb::SBTarget target); 46 GetInstructions (lldb::SBTarget target, const char *flavor_string); 80 return self.GetInstructions (target)
|
D | SBFunction.i | 69 GetInstructions (lldb::SBTarget target); 72 GetInstructions (lldb::SBTarget target, const char *flavor); 119 return self.GetInstructions (target)
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBSymbol.h | 39 lldb::SBInstructionList GetInstructions(lldb::SBTarget target); 41 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
|
D | SBFunction.h | 38 lldb::SBInstructionList GetInstructions(lldb::SBTarget target); 40 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
|
D | SBTarget.h | 795 lldb::SBInstructionList GetInstructions(lldb::SBAddress base_addr, 806 lldb::SBInstructionList GetInstructions(lldb::addr_t base_addr,
|
/external/llvm-project/lldb/test/API/python_api/disassemble-raw-data/ |
D | TestDisassemble_VST1_64.py | 47 insts = target.GetInstructions(lldb.SBAddress(), raw_bytes) 70 insts = target.GetInstructions(lldb.SBAddress(), raw_bytes)
|
D | TestDisassembleRawData.py | 41 insts = target.GetInstructions(lldb.SBAddress(0, target), raw_bytes)
|
/external/llvm-project/lldb/examples/python/ |
D | disasm.py | 85 insts = function.GetInstructions(target) 97 insts = symbol.GetInstructions(target)
|
D | disasm-stress-test.py | 220 inst_list = target.GetInstructions(fake_address, inst_bytes)
|
/external/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
D | TraceIntelPT.cpp | 100 ArrayRef<IntelPTInstruction> instructions = decoded_thread->GetInstructions(); in TraverseInstructions() 111 return decoded_thread->GetInstructions().size(); in GetInstructionCount()
|
D | DecodedThread.cpp | 55 ArrayRef<IntelPTInstruction> DecodedThread::GetInstructions() const { in GetInstructions() function in DecodedThread
|
D | DecodedThread.h | 119 llvm::ArrayRef<IntelPTInstruction> GetInstructions() const;
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_symbol.py | 11 obj.GetInstructions(lldb.SBTarget())
|
D | sb_function.py | 11 obj.GetInstructions(lldb.SBTarget())
|
D | sb_target.py | 28 obj.GetInstructions(lldb.SBAddress(), bytearray())
|
/external/llvm-project/lldb/test/API/lang/cpp/class_types/ |
D | TestClassTypesDisassembly.py | 63 insts = function.GetInstructions(target)
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/ |
D | TestAvoidBreakpointInDelaySlot.py | 51 insts = function.GetInstructions(target)
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | buffer_assignment_test.cc | 68 std::vector<const HloInstruction*> GetInstructions() { return instructions_; } in GetInstructions() function in xla::__anon8a84187f0111::InstructionListVisitor 80 const std::vector<const HloInstruction*> GetInstructions(HloInstruction* root) { in GetInstructions() function 83 return main_list.GetInstructions(); in GetInstructions() 903 const std::vector<const HloInstruction*> level0 = GetInstructions(sub); in TEST_F() 929 const std::vector<const HloInstruction*> level0 = GetInstructions(map); in TEST_F() 931 const std::vector<const HloInstruction*> level1 = GetInstructions(inner_last); in TEST_F() 995 const std::vector<const HloInstruction*> instrs = GetInstructions(exp3); in TEST_F() 1040 const std::vector<const HloInstruction*> level0 = GetInstructions(while_op); in TEST_F() 1043 GetInstructions(condition_computation->root_instruction()); in TEST_F() 1046 GetInstructions(body_computation->root_instruction()); in TEST_F() [all …]
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/ |
D | TestStepOverBreakpoint.py | 62 instructions = function.GetInstructions(self.target)
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | Symbol.h | 217 lldb::DisassemblerSP GetInstructions(const ExecutionContext &exe_ctx,
|
/external/llvm-project/lldb/source/Target/ |
D | Trace.cpp | 188 sc.function->GetInstructions(exe_ctx, nullptr, true); in DumpInstructionInfo()
|
/external/llvm-project/lldb/source/Symbol/ |
D | Symbol.cpp | 540 lldb::DisassemblerSP Symbol::GetInstructions(const ExecutionContext &exe_ctx, in GetInstructions() function in Symbol 556 GetInstructions(exe_ctx, flavor, prefer_file_cache); in GetDisassembly()
|
D | Function.cpp | 424 lldb::DisassemblerSP Function::GetInstructions(const ExecutionContext &exe_ctx, in GetInstructions() function in Function 441 GetInstructions(exe_ctx, flavor, prefer_file_cache); in GetDisassembly()
|