Home
last modified time | relevance | path

Searched refs:abi (Results 1 – 25 of 203) sorted by relevance

123456789

/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_type_hash_itanium.cpp86 namespace abi = __cxxabiv1;
129 static bool isDerivedFromAtOffset(const abi::__class_type_info *Derived, in isDerivedFromAtOffset()
130 const abi::__class_type_info *Base, in isDerivedFromAtOffset()
136 if (const abi::__si_class_type_info *SI = in isDerivedFromAtOffset()
137 dynamic_cast<const abi::__si_class_type_info*>(Derived)) in isDerivedFromAtOffset()
140 const abi::__vmi_class_type_info *VTI = in isDerivedFromAtOffset()
141 dynamic_cast<const abi::__vmi_class_type_info*>(Derived); in isDerivedFromAtOffset()
151 abi::__base_class_type_info::__offset_shift; in isDerivedFromAtOffset()
153 abi::__base_class_type_info::__virtual_mask) in isDerivedFromAtOffset()
168 static const abi::__class_type_info *findBaseAtOffset( in findBaseAtOffset()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DUnwindLLDB.cpp53 ABI *abi = process_sp ? process_sp->GetABI().get() : nullptr; in DoGetFrameCount() local
55 while (AddOneMoreFrame(abi)) { in DoGetFrameCount()
76 ABI *abi = process_sp ? process_sp->GetABI().get() : nullptr; in AddFirstFrame() local
100 UpdateUnwindPlanForFirstFrameIfInvalid(abi); in AddFirstFrame()
114 UnwindLLDB::CursorSP UnwindLLDB::GetOneMoreFrame(ABI *abi) { in GetOneMoreFrame() argument
161 return GetOneMoreFrame(abi); in GetOneMoreFrame()
180 return GetOneMoreFrame(abi); in GetOneMoreFrame()
200 return GetOneMoreFrame(abi); in GetOneMoreFrame()
208 if (abi && !abi->CallFrameAddressIsValid(cursor_sp->cfa)) { in GetOneMoreFrame()
220 !abi->CallFrameAddressIsValid(cursor_sp->cfa)) { in GetOneMoreFrame()
[all …]
H A DThreadPlanCallFunctionUsingABI.cpp31 ABI *abi = nullptr; in ThreadPlanCallFunctionUsingABI() local
33 if (!ConstructorSetup(thread, abi, start_load_addr, function_load_addr)) in ThreadPlanCallFunctionUsingABI()
36 if (!abi->PrepareTrivialCall(thread, m_function_sp, function_load_addr, in ThreadPlanCallFunctionUsingABI()
58 const ABI *abi = m_process.GetABI().get(); in SetReturnValue() local
61 if (abi) { in SetReturnValue()
64 abi->GetReturnValueObject(GetThread(), m_return_type, persistent); in SetReturnValue()
H A DThreadPlanCallFunction.cpp35 Thread &thread, ABI *&abi, lldb::addr_t &start_load_addr, in ConstructorSetup() argument
45 abi = process_sp->GetABI().get(); in ConstructorSetup()
47 if (!abi) in ConstructorSetup()
54 m_function_sp = thread.GetRegisterContext()->GetSP() - abi->GetRedZoneSize(); in ConstructorSetup()
116 ABI *abi = nullptr; in ThreadPlanCallFunction() local
118 if (!ConstructorSetup(thread, abi, start_load_addr, function_load_addr)) in ThreadPlanCallFunction()
121 if (!abi->PrepareTrivialCall(thread, m_function_sp, function_load_addr, in ThreadPlanCallFunction()
479 const ABI *abi = m_process.GetABI().get(); in SetReturnValue() local
480 if (abi && m_return_type.IsValid()) { in SetReturnValue()
483 abi->GetReturnValueObject(GetThread(), m_return_type, persistent); in SetReturnValue()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddbuf_stats.c58 arc_buf_info_t abi = { 0 }; in __dbuf_stats_hash_table_data() local
64 arc_buf_info(db->db_buf, &abi, zfs_dbuf_state_index); in __dbuf_stats_hash_table_data()
87 abi.abi_state_type, in __dbuf_stats_hash_table_data()
88 abi.abi_state_contents, in __dbuf_stats_hash_table_data()
89 abi.abi_flags, in __dbuf_stats_hash_table_data()
90 (ulong_t)abi.abi_bufcnt, in __dbuf_stats_hash_table_data()
91 (u_longlong_t)abi.abi_size, in __dbuf_stats_hash_table_data()
92 (u_longlong_t)abi.abi_access, in __dbuf_stats_hash_table_data()
93 (ulong_t)abi.abi_mru_hits, in __dbuf_stats_hash_table_data()
94 (ulong_t)abi.abi_mru_ghost_hits, in __dbuf_stats_hash_table_data()
[all …]
/freebsd/contrib/file/src/
H A Dlandlock.c90 int ruleset_fd, abi, needs_write; in enable_landlock() local
104 abi = CAST(int, syscall(__NR_landlock_create_ruleset, NULL, 0, in enable_landlock()
106 if (abi < 1) in enable_landlock()
125 if (abi >= 2) in enable_landlock()
129 if (abi >= 3) in enable_landlock()
133 if (abi >= 4) { in enable_landlock()
156 if (abi >= 3) in enable_landlock()
/freebsd/lib/libsysdecode/
H A Derrno.c41 sysdecode_abi_to_freebsd_errno(enum sysdecode_abi abi, int error) in sysdecode_abi_to_freebsd_errno() argument
44 switch (abi) { in sysdecode_abi_to_freebsd_errno()
71 sysdecode_freebsd_to_abi_errno(enum sysdecode_abi abi, int error) in sysdecode_freebsd_to_abi_errno() argument
74 switch (abi) { in sysdecode_freebsd_to_abi_errno()
H A Dsyscallnames.c66 sysdecode_syscallname(enum sysdecode_abi abi, unsigned int code) in sysdecode_syscallname() argument
69 switch (abi) { in sysdecode_syscallname()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemoryTag.cpp95 ABISP abi = process->GetABI(); in DoExecute() local
96 if (abi) { in DoExecute()
97 start_addr = abi->FixDataAddress(start_addr); in DoExecute()
98 end_addr = abi->FixDataAddress(end_addr); in DoExecute()
246 ABISP abi = process->GetABI(); in DoExecute() local
247 if (abi) in DoExecute()
248 start_addr = abi->FixDataAddress(start_addr); in DoExecute()
274 if (abi) in DoExecute()
275 end_addr = abi->FixDataAddress(end_addr); in DoExecute()
/freebsd/release/scripts/
H A Dmake-oci-image.sh15 abi=FreeBSD:${major}:${arch}
18 echo "Building OCI freebsd${major}-${image} image for ${abi}"
24 local abi=$1; shift
30 url: "file:///usr/obj${srcdir}/repo/${abi}/latest"
39 local abi=$1; shift
57 env IGNORE_OSVERSION=yes ABI=${abi} pkg --rootdir ${rootdir} --repo-conf-dir ${workdir}/repos \
147 init_repo ${workdir} ${abi}
/freebsd/usr.sbin/pkg/
H A Dconfig.c152 char *abi; in pkg_get_myabi() local
170 error = asprintf(&abi, "%s:%d:%s", uts.sysname, __FreeBSD_version/100000, in pkg_get_myabi()
175 return (abi); in pkg_get_myabi()
179 subst_packagesite(const char *abi) in subst_packagesite() argument
194 (int)(variable_string - oldval), oldval, abi, in subst_packagesite()
480 char *abi = pkg_get_myabi(), *major, *minor; in read_conf_file() local
486 if (abi == NULL) in read_conf_file()
496 ucl_parser_register_variable(p, "ABI", abi); in read_conf_file()
526 free(abi); in read_conf_file()
574 char *abi, *env_list_item; in config_init() local
[all …]
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpressionList.cpp176 ABI *abi) const { in DumpLocations()
180 expr->DumpLocation(s, level, abi); in DumpLocations()
200 expr.DumpLocation(s, level, abi); in DumpLocations()
209 ABI *abi) const { in GetDescription()
212 m_exprs.Back()->data.DumpLocation(s, level, abi); in GetDescription()
228 expr.DumpLocation(s, level, abi); in GetDescription()
/freebsd/contrib/pkgconf/t/link-abi/
H A Dprivate-requires-shared.test2 Query: link-abi-private
3 WantedFlags: link-abi
H A Dcxx-leaf.test2 Query: link-abi-cxx
3 WantedFlags: link-abi
H A Ddefault-c.test2 Query: link-abi-plainc
3 WantedFlags: link-abi
H A Dcxx-leaf-static.test2 Query: link-abi-cxx
3 WantedFlags: static link-abi
H A Dmulti-dedup.test2 Query: link-abi-multi
3 WantedFlags: link-abi
H A Dpublic-requires.test2 Query: link-abi-public
3 WantedFlags: link-abi
H A Dprivate-requires-static.test2 Query: link-abi-private
3 WantedFlags: static link-abi
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DUnwindLLDB.h148 void UpdateUnwindPlanForFirstFrameIfInvalid(ABI *abi);
150 CursorSP GetOneMoreFrame(ABI *abi);
152 bool AddOneMoreFrame(ABI *abi);
/freebsd/crypto/openssl/util/
H A Dupdate_abi_check.sh3 abidw --out-file ./.github/workflows/libcrypto-abi.xml libcrypto.so
4 abidw --out-file ./.github/workflows/libssl-abi.xml libssl.so
/freebsd/contrib/pkgconf/tests/lib1/
H A Dlink-abi-public.pc1 Name: link-abi-public
4 Requires: link-abi-cxx
H A Dlink-abi-private.pc1 Name: link-abi-private
4 Requires.private: link-abi-cxx
/freebsd/tests/sys/sound/
H A Dmmap.c60 audio_buf_info abi; in ATF_TC_BODY() local
71 ATF_REQUIRE_MSG(ioctl(fd, SNDCTL_DSP_GETOSPACE, &abi) == 0, in ATF_TC_BODY()
74 len = abi.bytes; in ATF_TC_BODY()
/freebsd/usr.bin/truss/
H A Dtruss.h61 enum sysdecode_abi abi; member
113 struct procabi *abi; member

123456789