| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/ |
| H A D | UnwindAssembly-x86.cpp | 55 const bool prefer_file_cache = true; in GetNonCallSiteUnwindPlanFromAssembly() local 59 func.GetBaseAddress(), prefer_file_cache, function_text.data(), in GetNonCallSiteUnwindPlanFromAssembly() 157 const bool prefer_file_cache = true; in AugmentUnwindPlanFromCallSite() local 161 func.GetBaseAddress(), prefer_file_cache, function_text.data(), in AugmentUnwindPlanFromCallSite() 189 const bool prefer_file_cache = true; in GetFastUnwindPlan() local 191 if (target.ReadMemory(func.GetBaseAddress(), prefer_file_cache, in GetFastUnwindPlan() 224 const bool prefer_file_cache = true; in FirstNonPrologueInsn() local 227 if (target->ReadMemory(func.GetBaseAddress(), prefer_file_cache, in FirstNonPrologueInsn()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Disassembler.cpp | 195 bool prefer_file_cache) { in DisassembleRange() argument 203 &exe_ctx, range, nullptr, prefer_file_cache); in DisassembleRange() 250 const bool prefer_file_cache = false; in Disassemble() local 252 &exe_ctx, range, &strm, prefer_file_cache); in Disassemble() 278 const bool prefer_file_cache = false; in Disassemble() local 280 &exe_ctx, addr, num_instructions, prefer_file_cache); in Disassemble() 1119 target.ReadMemory(m_instructions[i]->GetAddress(), prefer_file_cache, in GetIndexOfNextBranchInstruction() 1166 bool prefer_file_cache) { in ParseInstructions() argument 1179 range.GetBaseAddress(), prefer_file_cache, data_sp->GetBytes(), in ParseInstructions() 1205 bool prefer_file_cache) { in ParseInstructions() argument [all …]
|
| H A D | Value.cpp | 548 const bool prefer_file_cache = false; in GetValueAsData() local 549 if (exe_ctx->GetTargetRef().ReadMemory(file_so_addr, prefer_file_cache, in GetValueAsData()
|
| H A D | Address.cpp | 69 bool prefer_file_cache = false; in ReadBytes() local 70 return target_sp->ReadMemory(address, prefer_file_cache, dst, dst_len, in ReadBytes()
|
| H A D | IOHandler.cpp | 3956 bool prefer_file_cache = false; in WindowDelegateDraw() local 3961 exe_ctx, nullptr, prefer_file_cache); in WindowDelegateDraw() 3975 exe_ctx, nullptr, prefer_file_cache); in WindowDelegateDraw()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | Function.cpp | 368 bool prefer_file_cache) { in GetInstructions() argument 371 const bool prefer_file_cache = false; in GetInstructions() local 374 prefer_file_cache); in GetInstructions() 380 const char *flavor, bool prefer_file_cache, in GetDisassembly() argument 383 GetInstructions(exe_ctx, flavor, prefer_file_cache); in GetDisassembly()
|
| H A D | Symbol.cpp | 539 bool prefer_file_cache) { in GetInstructions() argument 542 const bool prefer_file_cache = false; in GetInstructions() local 545 prefer_file_cache); in GetInstructions() 551 bool prefer_file_cache, Stream &strm) { in GetDisassembly() argument 553 GetInstructions(exe_ctx, flavor, prefer_file_cache); in GetDisassembly()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBSymbol.cpp | 121 const bool prefer_file_cache = false; in GetInstructions() local 124 symbol_range, prefer_file_cache)); in GetInstructions()
|
| H A D | SBFunction.cpp | 135 const bool prefer_file_cache = false; in GetInstructions() local 138 m_opaque_ptr->GetAddressRange(), prefer_file_cache)); in GetInstructions()
|
| H A D | SBTarget.cpp | 2002 bool prefer_file_cache = false; in ReadInstructions() local 2006 target_sp->ReadMemory(*addr_ptr, prefer_file_cache, data.GetBytes(), in ReadInstructions()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/ |
| H A D | ArchitectureMips.cpp | 165 bool prefer_file_cache = true; // Read from file in GetInstructionAtAddress() local 176 disasm_sp->ParseInstructions(&exe_ctx, range, nullptr, prefer_file_cache); in GetInstructionAtAddress()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | Symbol.h | 227 bool prefer_file_cache); 230 bool prefer_file_cache, Stream &strm);
|
| H A D | Function.h | 632 bool prefer_file_cache); 635 bool prefer_file_cache, Stream &strm);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
| H A D | UnwindAssemblyInstEmulation.cpp | 42 const bool prefer_file_cache = true; in GetNonCallSiteUnwindPlanFromAssembly() local 44 range.GetBaseAddress(), prefer_file_cache, function_text.data(), in GetNonCallSiteUnwindPlanFromAssembly() 71 const bool prefer_file_cache = true; in GetNonCallSiteUnwindPlanFromAssembly() local 74 99999, prefer_file_cache)); in GetNonCallSiteUnwindPlanFromAssembly()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | Disassembler.h | 383 const AddressRange &disasm_range, bool prefer_file_cache); 447 bool prefer_file_cache); 451 bool prefer_file_cache);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | ThreadPlanStepRange.cpp | 256 const bool prefer_file_cache = true; in GetInstructionsForAddress() local 259 m_address_ranges[i], prefer_file_cache); in GetInstructionsForAddress()
|
| H A D | Target.cpp | 1745 size_t Target::ReadMemory(const Address &addr, bool prefer_file_cache, in ReadMemory() argument 1781 if (prefer_file_cache) { in ReadMemory() 1829 if (!prefer_file_cache && resolved_addr.IsSectionOffset()) { in ReadMemory() 1913 bool prefer_file_cache, in ReadScalarIntegerFromMemory() argument 1920 ReadMemory(addr, prefer_file_cache, &uval, byte_size, error); in ReadScalarIntegerFromMemory() 1942 bool prefer_file_cache, in ReadUnsignedIntegerFromMemory() argument 1947 if (ReadScalarIntegerFromMemory(addr, prefer_file_cache, integer_byte_size, in ReadUnsignedIntegerFromMemory() 1953 bool Target::ReadPointerFromMemory(const Address &addr, bool prefer_file_cache, in ReadPointerFromMemory() argument 1956 if (ReadScalarIntegerFromMemory(addr, prefer_file_cache, in ReadPointerFromMemory()
|
| H A D | StackFrame.cpp | 1318 const bool prefer_file_cache = false; in GuessValueForAddress() local 1321 target_arch, plugin_name, flavor, exe_ctx, pc_range, prefer_file_cache); in GuessValueForAddress() 1700 const bool prefer_file_cache = false; in GuessValueForRegisterAndOffset() local 1702 target_arch, plugin_name, flavor, exe_ctx, pc_range, prefer_file_cache); in GuessValueForRegisterAndOffset()
|
| H A D | Process.cpp | 6002 const bool prefer_file_cache = true; in AdvanceAddressToNextBranchInstruction() local 6005 prefer_file_cache); in AdvanceAddressToNextBranchInstruction()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | Target.h | 988 size_t ReadMemory(const Address &addr, bool prefer_file_cache, void *dst, 999 bool prefer_file_cache, uint32_t byte_size, 1004 bool prefer_file_cache, 1008 bool ReadPointerFromMemory(const Address &addr, bool prefer_file_cache,
|