Home
last modified time | relevance | path

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

12345678910>>...25

/src/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.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 …]
H A DThreadElfCore.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);
/src/tools/tools/release/
H A Dchk_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"
/src/contrib/bmake/
H A Darch.c419 FILE *arch; in ArchStatMember() local
464 arch = ArchFindMember(archive, member, &sarh, "r"); in ArchStatMember()
465 if (arch == NULL) in ArchStatMember()
468 fclose(arch); in ArchStatMember()
472 arch = fopen(archive, "r"); in ArchStatMember()
473 if (arch == NULL) in ArchStatMember()
476 if (fread(magic, SARMAG, 1, arch) != 1 || in ArchStatMember()
478 (void)fclose(arch); in ArchStatMember()
489 while (fread(&arh, sizeof arh, 1, arch) == 1) { in ArchStatMember()
511 switch (ArchSVR4Entry(ar, memName, size, arch)) { in ArchStatMember()
[all …]
/src/contrib/jemalloc/scripts/
H A Dgen_travis.py172 def format_job(os, arch, combination): argument
205 job += ' arch: {}\n'.format(arch)
231 def generate_jobs(os, arch, exclude, max_unusual_opts, unusuals=all_unusuals): argument
235 jobs.append(format_job(os, arch, combination))
239 def generate_linux(arch): argument
243 max_unusual_opts = MAX_UNUSUAL_OPTIONS if arch == AMD64 else 1
246 if arch == PPC64LE:
250 return generate_jobs(os, arch, exclude, max_unusual_opts)
253 def generate_macos(arch): argument
265 return generate_jobs(os, arch, exclude, max_unusual_opts)
[all …]
/src/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.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
/src/sys/contrib/openzfs/config/
H A Dtgz.am16 arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
17 pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
24 arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
25 pkg1=$${name}-$${version}.$${arch}.rpm; \
26 pkg2=$${name}-devel-$${version}.$${arch}.rpm; \
27 pkg3=$${name}-test-$${version}.$${arch}.rpm; \
H A Ddeb.am38 arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
40 pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
48 arch=`$(RPM) -qp $${name}-dkms-$${version}.src.rpm --qf %{arch} | tail -1`; \
50 pkg1=$${name}-dkms-$${version}.$${arch}.rpm; \
57 arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
59 pkg1=$${name}-$${version}.$${arch}.rpm; \
60 pkg2=libnvpair3-$${version}.$${arch}.rpm; \
61 pkg3=libzfs7-$${version}.$${arch}.rpm; \
62 pkg4=libzpool7-$${version}.$${arch}.rpm; \
63 pkg5=libzfs7-devel-$${version}.$${arch}.rpm; \
[all …]
/src/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DNativeProcessSoftwareSingleStep.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()
/src/release/scripts/
H A Dmake-oci-image.sh8 arch=$1; shift
15 abi=FreeBSD:${major}:${arch}
16 ver=${rev}-${branch}-${arch}
70 local arch=$1; shift
71 case ${arch} in
73 arch=386
76 arch=arm64
81 echo "Architecture ${arch} not supported for container images"
84 echo ${arch}
119 oci_arch=$(normalize_arch ${arch})
/src/crypto/openssl/crypto/thread/
H A Dbuild.info4 arch.c \
5 arch/thread_win.c arch/thread_posix.c arch/thread_none.c
17 $THREADS=api.c arch/thread_win.c
/src/contrib/llvm-project/lldb/source/Target/
H A DTargetList.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 …]
H A DUnwindAssembly.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
/src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_007_pos.ksh69 for arch in "i386" "sparc"; do
70 log_must cp $tst_dir/${arch}.orig_history.txt $import_dir
71 orig_cmds_f=$import_dir/${arch}.orig_history.txt
73 orig_cmds_f1=$import_dir/${arch}.orig_history_1.txt
76 log_must cp $tst_dir/${arch}.migratedpool.DAT.Z $import_dir
77 log_must uncompress -f $import_dir/${arch}.migratedpool.DAT.Z
/src/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.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,
/src/crypto/openssl/Configurations/
H A D15-android.conf55 my ($sysroot, $api, $arch);
58 $arch = $1;
61 $sysroot =~ m|/android-([0-9]+)/arch-(\w+)/?$|;
62 ($api, $arch) = ($1, $2);
83 $sysroot = "@platforms[$#platforms]/arch-$arch";
84 $sysroot =~ m|/android-([0-9]+)/arch-$arch|;
102 my $triarch = $triplet{$arch};
165 bn_ops => $arch =~ m/64$/ ? "SIXTY_FOUR_BIT_LONG"
/src/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.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()
/src/tests/sys/cddl/zfs/tests/history/
H A Dhistory_007_pos.ksh81 for arch in "i386" "sparc"; do
82 log_must $CP $tst_dir/${arch}.orig_history.txt $import_dir
83 orig_cmds_f=$import_dir/${arch}.orig_history.txt
85 orig_cmds_f1=$import_dir/${arch}.orig_history_1.txt
88 log_must $CP $tst_dir/${arch}.migratedpool.DAT.Z $import_dir
89 log_must $UNCOMPRESS $import_dir/${arch}.migratedpool.DAT.Z
/src/contrib/llvm-project/llvm/lib/TextAPI/
H A DArchitectureSet.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>()
/src/contrib/opencsd/decoder/source/
H A Dtrc_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()
/src/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSDKernel/
H A DThreadFreeBSDKernel.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()
/src/crypto/openssl/VMS/
H A Dopenssl_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 …]
/src/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.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,
/src/contrib/mandoc/
H A Dcgi.c55 char *arch; /* architecture */ member
213 req->q.arch = NULL; in parse_query_string()
272 set_query_attr(&req->q.arch, &val); in parse_query_string()
480 if (NULL == req->q.arch) in resp_searchform()
485 if (NULL != req->q.arch && in resp_searchform()
486 0 == strcmp(arch_names[i], req->q.arch)) in resp_searchform()
539 validate_arch(const char *arch) in validate_arch() argument
544 if (strcmp(arch, arch_names[i]) == 0) in validate_arch()
634 if (req->q.arch != NULL) in pg_redirect()
635 printf("%s/", req->q.arch); in pg_redirect()
[all …]
/src/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
H A DABISysV_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);

12345678910>>...25