Searched defs:target_arch (Results 1 - 6 of 6) sorted by relevance

/external/lldb/source/Plugins/Process/Utility/
H A DUnwindMacOSXFrameBackchain.cpp43 const ArchSpec& target_arch = target->GetArchitecture (); local
47 if (target_arch.GetAddressByteSize() == 8)
/external/scrypt/
H A DScrypt-config.mk74 target_arch := $(TARGET_ARCH) macro
75 ifeq ($(target_arch)-$(TARGET_HAS_BIGENDIAN),mips-true)
76 target_arch := unknown_arch macro
79 target_c_flags := $(common_c_flags) $($(target_arch)_c_flags) $(local_c_flags)
81 target_src_files := $(common_src_files) $($(target_arch)_src_files)
82 target_src_files := $(filter-out $($(target_arch)_exclude_files), $(target_src_files))
85 ifeq ($(target_arch),arm)
/external/lldb/source/Target/
H A DStackFrame.cpp1425 const ArchSpec &target_arch = target->GetArchitecture(); local
1428 pc_range.SetByteSize(disasm_lines * target_arch.GetMaximumOpcodeByteSize());
1432 target_arch,
H A DTarget.cpp62 Target::Target(Debugger &debugger, const ArchSpec &target_arch, const lldb::PlatformSP &platform_sp) : argument
69 m_arch (target_arch),
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp490 const ArchSpec &target_arch = GetTarget().GetArchitecture();
501 if (!target_arch.IsValid())
508 else if (target_arch.GetMachine() == llvm::Triple::arm)
883 ArchSpec &target_arch = GetTarget().GetArchitecture(); local
885 if (target_arch.IsValid())
897 target_arch = gdb_remote_arch;
903 llvm::Triple &target_triple = target_arch.GetTriple();
922 target_arch = gdb_remote_arch;
/external/lldb/source/Commands/
H A DCommandObjectTarget.cpp63 const ArchSpec &target_arch = target->GetArchitecture(); local
77 if (target_arch.IsValid())
79 strm.Printf ("%sarch=%s", properties++ > 0 ? ", " : " ( ", target_arch.GetTriple().str().c_str());

Completed in 122 milliseconds