Lines Matching refs:Address
1498 DumpAddress (ExecutionContextScope *exe_scope, const Address &so_addr, bool verbose, Stream &strm)
1501 strm.Indent (" Address: ");
1502 so_addr.Dump (&strm, exe_scope, Address::DumpStyleModuleWithFileAddress);
1504 so_addr.Dump (&strm, exe_scope, Address::DumpStyleSectionNameOffset);
1509 so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
1511 // Print out detailed address information when verbose is enabled
1515 so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
1532 Address so_addr;
1551 // strm.Indent (" Address: ");
1552 // so_addr.Dump (&strm, exe_scope, Address::DumpStyleModuleWithFileAddress);
1554 // so_addr.Dump (&strm, exe_scope, Address::DumpStyleSectionNameOffset);
1559 // so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
1561 // // Print out detailed address information when verbose is enabled
1565 // so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
2208 { eSortOrderByAddress, "address", "Sort output by symbol address."},
2754 "target modules load [--file <module> --uuid <uuid>] <sect-name> <address> [<sect-name> <address> ....]"),
2757 m_slide_option(LLDB_OPT_SET_1, false, "slide", 's', 0, eArgTypeOffset, "Set the load address for all sections to be the virtual address in the file plus the offset.", 0)
2833 result.AppendError ("one or more section name + load address pair must be specified");
2883 result.AppendErrorWithFormat ("invalid load address string '%s'\n", load_addr_cstr);
2891 address.\n");
2893 result.AppendError ("one or more section name + load address pair must be specified.\n");
3113 Address module_address;
3124 result.AppendErrorWithFormat ("Couldn't find module matching address: 0x%" PRIx64 ".", m_options.m_module_addr);
3130 result.AppendErrorWithFormat ("Couldn't find module containing address: 0x%" PRIx64 ".", m_options.m_module_addr);
3136 result.AppendError ("Can only look up modules by address with a valid target.");
3286 // Image header address
3293 Address header_addr(objfile->GetHeaderAddress());
3301 header_addr.Dump (&strm, target, Address::DumpStyleModuleWithFileAddress, Address::DumpStyleFileAddress);
3312 // Show the load address of the image
3318 // The address was valid, but the image isn't loaded, output the address in an appropriate format
3319 header_addr.Dump (&strm, target, Address::DumpStyleFileAddress);
3404 { LLDB_OPT_SET_1, false, "address", 'a', required_argument, NULL, 0, eArgTypeAddressOrExpression, "Display the image at this address."},
3407 { LLDB_OPT_SET_1, false, "header", 'h', no_argument, NULL, 0, eArgTypeNone, "Display the image header address as a load address if debugging, a file address otherwise."},
3408 { LLDB_OPT_SET_1, false, "offset", 'o', no_argument, NULL, 0, eArgTypeNone, "Display the image header address offset from the header file address (the slide amount)."},
3474 error.SetErrorStringWithFormat ("invalid address string '%s'", option_arg);
3511 lldb::addr_t m_addr; // Holds the address to lookup
3582 Address addr;
3620 Address first_non_prologue_insn (func_unwinders_sp->GetFirstNonPrologueInsn(*target));
3623 result.GetOutputStream().Printf("First non-prologue instruction is at address 0x%" PRIx64 " or offset %" PRId64 " into the function.\n", first_non_prologue_insn.GetLoadAddress(target), first_non_prologue_insn.GetLoadAddress(target) - start_addr);
3672 { LLDB_OPT_SET_2, false, "address", 'a', required_argument, NULL, 0, eArgTypeAddressOrExpression, "Show unwind instructions for a function or symbol containing an address"},
3814 lldb::addr_t m_addr; // Holds the address to lookup
4115 { LLDB_OPT_SET_1, true, "address", 'a', required_argument, NULL, 0, eArgTypeAddressOrExpression, "Lookup an address in one or more target modules."},
4116 { LLDB_OPT_SET_1, false, "offset", 'o', required_argument, NULL, 0, eArgTypeOffset, "When looking up an address subtract <offset> from any addresses before doing the lookup."},