Home
last modified time | relevance | path

Searched refs:arch (Results 1 – 25 of 571) sorted by relevance

12345678910>>...23

/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
HDThreadElfCore.cpp86 ArchSpec arch = process->GetArchitecture(); in CreateRegisterContextForFrame() local
89 switch (arch.GetTriple().getOS()) { in CreateRegisterContextForFrame()
91 switch (arch.GetMachine()) { in CreateRegisterContextForFrame()
96 reg_interface = new RegisterContextFreeBSD_powerpc32(arch); in CreateRegisterContextForFrame()
99 reg_interface = new RegisterContextFreeBSD_powerpc64(arch); in CreateRegisterContextForFrame()
102 reg_interface = new RegisterContextFreeBSD_mips64(arch); in CreateRegisterContextForFrame()
105 reg_interface = new RegisterContextFreeBSD_i386(arch); in CreateRegisterContextForFrame()
108 reg_interface = new RegisterContextFreeBSD_x86_64(arch); in CreateRegisterContextForFrame()
117 switch (arch.GetMachine()) { in CreateRegisterContextForFrame()
121 reg_interface = new RegisterContextNetBSD_i386(arch); in CreateRegisterContextForFrame()
[all …]
HDThreadElfCore.h57 const lldb_private::ArchSpec &arch);
64 static size_t GetSize(const lldb_private::ArchSpec &arch);
78 const lldb_private::ArchSpec &arch);
85 static size_t GetSize(const lldb_private::ArchSpec &arch);
113 const lldb_private::ArchSpec &arch);
120 static size_t GetSize(const lldb_private::ArchSpec &arch);
/freebsd-14-stable/tools/tools/release/
HDchk_dokern.sh_and_drivers.conf30 arch=`dirname $f`
33 egrep -qw "^((pseudo-)?device|options)[[:space:]]+$x" ../sys/${arch}/conf/GENERIC || \
34 echo $x not found in $arch/GENERIC
35 sed -e'/"SMALL"/,/^else$/d' ${arch}/dokern.sh | \
37 echo "duplicate $x found in ${arch}/dokern.sh"
43 arch=`dirname $f`
49 ../sys/${arch}/conf/GENERIC || \
50 echo $x not found in $arch/GENERIC
51 grep -qw ^$x ${arch}/drivers.conf && \
52 echo "duplicate $x found in ${arch}/drivers.conf"
/freebsd-14-stable/contrib/bmake/
HDarch.c458 FILE *arch; in ArchStatMember() local
510 arch = ArchFindMember(archive, member, &sarh, "r"); in ArchStatMember()
511 if (arch == NULL) in ArchStatMember()
514 fclose(arch); in ArchStatMember()
522 arch = fopen(archive, "r"); in ArchStatMember()
523 if (arch == NULL) in ArchStatMember()
530 if (fread(magic, SARMAG, 1, arch) != 1 || in ArchStatMember()
532 (void)fclose(arch); in ArchStatMember()
543 while (fread(&arh, sizeof arh, 1, arch) == 1) { in ArchStatMember()
573 switch (ArchSVR4Entry(ar, memName, size, arch)) { in ArchStatMember()
[all …]
HDos.sh103 arch=`Which arch /usr/bin:/usr/ucb`
112 MACHINE_ARCH=`arch`
116 MACHINE_ARCH=`arch`
154 arch=`Which arch /usr/bin:/usr/ucb:$PATH`
155 MACHINE_ARCH=`$arch -s`
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
HDPlatformOpenBSD.cpp43 PlatformSP PlatformOpenBSD::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance() argument
46 arch ? arch->GetArchitectureName() : "<null>", in CreateInstance()
47 arch ? arch->GetTriple().getTriple() : "<null>"); in CreateInstance()
50 if (!create && arch && arch->IsValid()) { in CreateInstance()
51 const llvm::Triple &triple = arch->GetTriple(); in CreateInstance()
61 create = !arch->TripleOSWasSpecified(); in CreateInstance()
157 MmapArgList PlatformOpenBSD::GetMmapArgumentList(const ArchSpec &arch, in GetMmapArgumentList() argument
/freebsd-14-stable/sys/contrib/openzfs/config/
HDdeb.am37 arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
39 pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
47 arch=`$(RPM) -qp $${name}-dkms-$${version}.src.rpm --qf %{arch} | tail -1`; \
49 pkg1=$${name}-dkms-$${version}.$${arch}.rpm; \
56 arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
58 pkg1=$${name}-$${version}.$${arch}.rpm; \
59 pkg2=libnvpair3-$${version}.$${arch}.rpm; \
60 pkg3=libuutil3-$${version}.$${arch}.rpm; \
61 pkg4=libzfs5-$${version}.$${arch}.rpm; \
62 pkg5=libzpool5-$${version}.$${arch}.rpm; \
[all …]
HDtgz.am15 arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
16 pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
23 arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
24 pkg1=$${name}-$${version}.$${arch}.rpm; \
25 pkg2=$${name}-devel-$${version}.$${arch}.rpm; \
26 pkg3=$${name}-test-$${version}.$${arch}.rpm; \
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDNativeProcessSoftwareSingleStep.cpp97 static int GetSoftwareBreakpointSize(const ArchSpec &arch, in GetSoftwareBreakpointSize() argument
99 if (arch.GetMachine() == llvm::Triple::arm) { in GetSoftwareBreakpointSize()
106 if (arch.IsMIPS() || arch.GetTriple().isPPC64() || in GetSoftwareBreakpointSize()
107 arch.GetTriple().isRISCV() || arch.GetTriple().isLoongArch()) in GetSoftwareBreakpointSize()
112 static Status SetSoftwareBreakpointOnPC(const ArchSpec &arch, lldb::addr_t pc, in SetSoftwareBreakpointOnPC() argument
115 int size_hint = GetSoftwareBreakpointSize(arch, next_flags); in SetSoftwareBreakpointOnPC()
134 const ArchSpec &arch = process.GetArchitecture(); in SetupSoftwareSingleStepping() local
137 EmulateInstruction::FindPlugin(arch, eInstructionTypePCModifying, in SetupSoftwareSingleStepping()
163 SetSoftwareBreakpointOnPC(arch, next_pc, /* next_flags */ 0x0, process); in SetupSoftwareSingleStepping()
207 auto result = SetSoftwareBreakpointOnPC(arch, next_pc, next_flags, process); in SetupSoftwareSingleStepping()
/freebsd-14-stable/release/scripts/
HDmake-oci-image.sh8 arch=$1; shift
15 abi=FreeBSD:${major}:${arch}
16 ver=${rev}-${branch}-${arch}
62 local arch=$1; shift
63 case ${arch} in
65 arch=386
68 arch=arm64
73 echo "Architecture ${arch} not supported for container images"
76 echo ${arch}
111 oci_arch=$(normalize_arch ${arch})
/freebsd-14-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/
HDhistory_007_pos.ksh68 for arch in "i386" "sparc"; do
69 log_must cp $tst_dir/${arch}.orig_history.txt $import_dir
70 orig_cmds_f=$import_dir/${arch}.orig_history.txt
72 orig_cmds_f1=$import_dir/${arch}.orig_history_1.txt
75 log_must cp $tst_dir/${arch}.migratedpool.DAT.Z $import_dir
76 log_must uncompress -f $import_dir/${arch}.migratedpool.DAT.Z
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
HDEmulateInstructionLoongArch.h32 static bool SupportsThisArch(const ArchSpec &arch);
35 CreateInstance(const lldb_private::ArchSpec &arch, InstructionType inst_type);
42 EmulateInstructionLoongArch(const ArchSpec &arch) : EmulateInstruction(arch) { in EmulateInstructionLoongArch() argument
43 m_arch_subtype = arch.GetMachine(); in EmulateInstructionLoongArch()
52 bool SetTargetTriple(const ArchSpec &arch) override;
55 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
/freebsd-14-stable/contrib/llvm-project/lldb/source/Target/
HDTargetList.cpp89 const ArchSpec arch(triple_str); in CreateTargetInternal() local
90 if (!triple_str.empty() && !arch.IsValid()) { in CreateTargetInternal()
96 ArchSpec platform_arch(arch); in CreateTargetInternal()
104 debugger.GetCommandInterpreter(), arch, select_platform, error, in CreateTargetInternal()
174 } else if (arch.IsValid()) { in CreateTargetInternal()
176 module_spec.GetArchitecture() = arch; in CreateTargetInternal()
218 if (!prefer_platform_arch && arch.IsValid()) { in CreateTargetInternal()
220 arch, {}, ArchSpec::CompatibleMatch, nullptr)) { in CreateTargetInternal()
221 platform_sp = platform_list.GetOrCreate(arch, {}, &platform_arch); in CreateTargetInternal()
239 platform_arch = arch; in CreateTargetInternal()
[all …]
HDUnwindAssembly.cpp17 UnwindAssemblySP UnwindAssembly::FindPlugin(const ArchSpec &arch) { in FindPlugin() argument
24 UnwindAssemblySP assembly_profiler_up(create_callback(arch)); in FindPlugin()
31 UnwindAssembly::UnwindAssembly(const ArchSpec &arch) : m_arch(arch) {} in UnwindAssembly() argument
/freebsd-14-stable/crypto/openssl/Configurations/
HD15-android.conf54 my ($sysroot, $api, $arch);
57 $arch = $1;
60 $sysroot =~ m|/android-([0-9]+)/arch-(\w+)/?$|;
61 ($api, $arch) = ($1, $2);
82 $sysroot = "@platforms[$#platforms]/arch-$arch";
83 $sysroot =~ m|/android-([0-9]+)/arch-$arch|;
101 my $triarch = $triplet{$arch};
164 bn_ops => $arch =~ m/64$/ ? "SIXTY_FOUR_BIT_LONG"
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
HDPlatformFreeBSD.cpp48 PlatformSP PlatformFreeBSD::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance() argument
51 arch ? arch->GetArchitectureName() : "<null>", in CreateInstance()
52 arch ? arch->GetTriple().getTriple() : "<null>"); in CreateInstance()
55 if (!create && arch && arch->IsValid()) { in CreateInstance()
56 const llvm::Triple &triple = arch->GetTriple(); in CreateInstance()
66 create = !arch->TripleOSWasSpecified(); in CreateInstance()
172 MmapArgList PlatformFreeBSD::GetMmapArgumentList(const ArchSpec &arch, in GetMmapArgumentList() argument
184 if (arch.GetTriple().getArch() == llvm::Triple::x86) in GetMmapArgumentList()
/freebsd-14-stable/tests/sys/cddl/zfs/tests/history/
HDhistory_007_pos.ksh84 for arch in "i386" "sparc"; do
85 log_must $CP $tst_dir/${arch}.orig_history.txt $import_dir
86 orig_cmds_f=$import_dir/${arch}.orig_history.txt
88 orig_cmds_f1=$import_dir/${arch}.orig_history_1.txt
91 log_must $CP $tst_dir/${arch}.migratedpool.DAT.Z $import_dir
92 log_must $UNCOMPRESS $import_dir/${arch}.migratedpool.DAT.Z
/freebsd-14-stable/contrib/llvm-project/llvm/lib/TextAPI/
HDArchitectureSet.cpp43 for (auto arch : *this) { in operator std::string()
44 result.append(std::string(getArchitectureName(arch))); in operator std::string()
54 for (auto arch : *this) { in operator std::vector<Architecture>()
55 if (arch == AK_unknown) in operator std::vector<Architecture>()
57 archs.emplace_back(arch); in operator std::vector<Architecture>()
/freebsd-14-stable/contrib/opencsd/decoder/source/
HDtrc_core_arch_map.cpp127 ap.arch = ARCH_V7; in getPatternMatchCoreName()
129 ap.arch = ARCH_AA64; /* default to 8.3+*/ in getPatternMatchCoreName()
132 ap.arch = ARCH_V8; in getPatternMatchCoreName()
134 ap.arch = ARCH_V8r3; in getPatternMatchCoreName()
149 ap.arch = ARCH_UNKNOWN; /*reset arch, return unknown*/ in getPatternMatchCoreName()
152 ap.arch = ARCH_UNKNOWN; /*reset arch, return unknown*/ in getPatternMatchCoreName()
165 ap.arch = ARCH_AA64; in getPatternMatchCoreName()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSDKernel/
HDThreadFreeBSDKernel.cpp56 ArchSpec arch = process->GetTarget().GetArchitecture(); in CreateRegisterContextForFrame() local
58 switch (arch.GetMachine()) { in CreateRegisterContextForFrame()
62 *this, std::make_unique<RegisterInfoPOSIX_arm64>(arch, 0), in CreateRegisterContextForFrame()
67 *this, new RegisterContextFreeBSD_i386(arch), m_pcb_addr); in CreateRegisterContextForFrame()
72 *this, new RegisterContextFreeBSD_x86_64(arch), m_pcb_addr); in CreateRegisterContextForFrame()
/freebsd-14-stable/crypto/openssl/VMS/
HDopenssl_startup.com.in55 $ arch := VAX
57 $ arch = F$EDIT(F$GETSYI("ARCH_NAME"),"UPCASE")
58 $ IF arch .EQS. "" THEN GOTO unknown_arch
80 .OR. F$SEARCH("WRK_INSTALLTOP:[LIB]''arch'.DIR;1") .EQS. "" -
81 .OR. F$SEARCH("WRK_INSTALLTOP:[EXE]''arch'.DIR;1") .EQS. "" -
84 $ WRITE SYS$ERROR "''INSTALLTOP' doesn't look like an OpenSSL installation for ''arch'"
98 $ DEF OSSL$LIB OSSL$INSTROOT:[LIB.'arch']
99 $ DEF OSSL$SHARE OSSL$INSTROOT:[LIB.'arch']
100 $ DEF OSSL$ENGINES'sv''pz' OSSL$INSTROOT:[ENGINES'sv''pz'.'arch']
101 $ DEF OSSL$MODULES'pz' OSSL$INSTROOT:[MODULES'pz'.'arch']
[all …]
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
HDEmulateInstructionRISCV.h43 static bool SupportsThisArch(const ArchSpec &arch);
46 CreateInstance(const lldb_private::ArchSpec &arch, InstructionType inst_type);
53 EmulateInstructionRISCV(const ArchSpec &arch) : EmulateInstruction(arch) {} in EmulateInstructionRISCV() argument
61 bool SetTargetTriple(const ArchSpec &arch) override;
65 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
/freebsd-14-stable/contrib/mandoc/
HDcgi.c54 char *arch; /* architecture */ member
212 req->q.arch = NULL; in parse_query_string()
271 set_query_attr(&req->q.arch, &val); in parse_query_string()
474 if (NULL == req->q.arch) in resp_searchform()
479 if (NULL != req->q.arch && in resp_searchform()
480 0 == strcmp(arch_names[i], req->q.arch)) in resp_searchform()
532 validate_arch(const char *arch) in validate_arch() argument
537 if (strcmp(arch, arch_names[i]) == 0) in validate_arch()
615 if (req->q.arch != NULL) in pg_redirect()
616 printf("%s/", req->q.arch); in pg_redirect()
[all …]
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
HDABISysV_riscv.h63 lldb_private::ArchSpec arch = GetProcessSP()->GetTarget().GetArchitecture(); in CallFrameAddressIsValid() local
64 lldb_private::Flags arch_flags = arch.GetFlags(); in CallFrameAddressIsValid()
76 lldb_private::ArchSpec arch = GetProcessSP()->GetTarget().GetArchitecture(); in CodeAddressIsValid() local
79 lldb_private::Flags arch_flags(arch.GetFlags()); in CodeAddressIsValid()
84 llvm::Triple::ArchType machine = arch.GetMachine(); in CodeAddressIsValid()
103 const lldb_private::ArchSpec &arch);
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
HDThreadMinidump.cpp66 ArchSpec arch = process->GetArchitecture(); in CreateRegisterContextForFrame() local
70 switch (arch.GetMachine()) { in CreateRegisterContextForFrame()
72 reg_interface = new RegisterContextLinux_i386(arch); in CreateRegisterContextForFrame()
82 reg_interface = new RegisterContextLinux_x86_64(arch); in CreateRegisterContextForFrame()
101 const bool apple = arch.GetTriple().getVendor() == llvm::Triple::Apple; in CreateRegisterContextForFrame()

12345678910>>...23