- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
给定以下代码:
#include <stdexcept>
#include <string>
using namespace std;
class exception_base : public runtime_error {
public:
exception_base()
: runtime_error(string()) { }
};
class my_exception : public exception_base {
public:
};
int main() {
throw my_exception();
}
这在 GNU/Linux 和 Windows 上运行良好,并且在最新更新到版本 10.11.4 之前在 OSX 上运行良好。我的意思是,因为没有捕获到异常,所以调用了 std::terminate
。
但是,在使用 clang (LLVM 7.3.0) 的 OSX 10.11.4 上,程序会因段错误而崩溃。堆栈跟踪没有帮助:
Program received signal SIGSEGV, Segmentation fault.
0x0000000100000ad1 in main () at test.cpp:17
17 throw my_exception();
(gdb) bt
#0 0x0000000100000ad1 in main () at test.cpp:17
(gdb)
valgrind 对此也没有说明:
==6500== Process terminating with default action of signal 11 (SIGSEGV)
==6500== General Protection Fault
==6500== at 0x100000AD1: main (test.cpp:17)
我不认为代码以任何方式违反标准。我在这里遗漏了什么吗?
请注意,即使我在 throw
周围添加了一个 try-catch,代码仍然会因 SIGSEGV 而崩溃。
最佳答案
如果您查看反汇编,您会发现在 SSE movaps
指令上发生了通用保护 (GP) 异常:
a.out`main: 0x100000ad0 : pushq %rbp 0x100000ad1 : movq %rsp, %rbp 0x100000ad4 : subq $0x20, %rsp 0x100000ad8 : movl $0x0, -0x4(%rbp) 0x100000adf : movl $0x10, %eax 0x100000ae4 : movl %eax, %edi 0x100000ae6 : callq 0x100000dea ; symbol stub for: __cxa_allocate_exception 0x100000aeb : movq %rax, %rdi 0x100000aee : xorps %xmm0, %xmm0-> 0x100000af1 : movaps %xmm0, (%rax) 0x100000af4 : movq %rdi, -0x20(%rbp) 0x100000af8 : movq %rax, %rdi 0x100000afb : callq 0x100000b40 ; my_exception::my_exception...
甚至在调用 my_exception::my_exception() 构造函数之前,使用 movaps
指令将 __cxa_allocate_exception(size_t) 返回的内存块归零。但是,这个指针(在我的例子中是 0x0000000100103498)不能保证是 16 字节对齐的。当 movaps
指令的源操作数或目标操作数是内存操作数时,操作数必须在 16 字节边界上对齐,否则会生成 GP 异常。
暂时解决该问题的一种方法是在没有 SSE 指令的情况下进行编译 (-mno-sse
)。这不是一个理想的解决方案,因为 SSE 指令可以提高性能。
我认为这与 http://reviews.llvm.org/D18479 有关:
r246985 made changes to give a higher alignment for exception objects on the grounds that Itanium says _Unwind_Exception should be "double-word" aligned and the structure is normally declared with
__attribute__((aligned))
guaranteeing 16-byte alignment. It turns out that libc++abi doesn't declare the structure with__attribute__((aligned))
and therefore only guarantees 8-byte alignment on 32-bit and 64-bit platforms. This caused a crash in some cases when the backend emitted SIMD store instructions that requires 16-byte alignment (such asmovaps
).This patch makes ItaniumCXXABI::getAlignmentOfExnObject return an 8-byte alignment on Darwin to fix the crash.
.. 哪个补丁于 2016 年 3 月 31 日提交为 r264998 .
还有 https://llvm.org/bugs/show_bug.cgi?id=24604和 https://llvm.org/bugs/show_bug.cgi?id=27208看起来相关。
更新 我安装了 Xcode 7.3.1(昨天发布),问题似乎已解决;生成的程序集现在是:
a.out`main: 0x100000ac0 : pushq %rbp 0x100000ac1 : movq %rsp, %rbp 0x100000ac4 : subq $0x20, %rsp 0x100000ac8 : movl $0x0, -0x4(%rbp) 0x100000acf : movl $0x10, %eax 0x100000ad4 : movl %eax, %edi 0x100000ad6 : callq 0x100000dea ; symbol stub for: __cxa_allocate_exception 0x100000adb : movq %rax, %rdi 0x100000ade : movq $0x0, 0x8(%rax) 0x100000ae6 : movq $0x0, (%rax) 0x100000aed : movq %rdi, -0x20(%rbp) 0x100000af1 : movq %rax, %rdi 0x100000af4 : callq 0x100000b40 ; my_exception::my_exception...
关于c++ - 在 OSX 10.11.4 + clang 上抛出异常导致 SIGSEGV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37014541/
来自 java docs 公共(public) FileWriter(String fileName) 抛出 IOException 抛出: IOException - 如果指定的文件存在但它是目录而
我使用以下代码将我的 .net 客户端(基于 CQL)连接到 3 节点 Cassandra 集群。我以 30 条记录/秒的速度(从 RabbitMQ)获取数据,并且它们顺利地存储在 cassandra
如果在读取文件时缺少字段,我应该捕获 NoSuchElementException。如果缺少一个字段,我只需要跳到文件的下一行。我的问题是,我在哪里实现我的 try/catch 代码来做到这一点?这是
我正在尝试使用 ASP.NET MVC 实现 OpeinID 登录。我正在尝试按照 http://blog.nerdbank.net/2008/04/add-openid-login-support-
学习使用 Java 进行 xml 解析,并且正在编写一个测试程序来尝试各种东西。所有测试 System.out.println() 都是我在控制台中所期望的,除了 childElement 返回 [n
我正在尝试使用 SwingUtilities 创建 JFrame Thread tt = new Thread(new Runnable() { public void run
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我写了这段代码: MethodInfo method2 = typeof(IntPtr).GetMethod( "op_Explicit", Bind
我开始学习 Java,并且正在根据书本做一些练习。在执行此操作时,我遇到了以下错误:线程“main”java.util.InputMismatchException 中出现异常。我正在编写一个简单的程
我有一个文本文件,其中前两行是整数 m 和 n,然后有 m 行,每行都有 n 管道分隔值。我编写了一个程序,读取文件并使用文件中的值创建 m*n 数组,它工作了无数次,然后突然,使用相同的代码,使用相
所以我尝试使用在另一个类中生成的 bean 以在主应用程序中使用 package com.simon.spring.basics.properties; import org.spri
我还没有完成这个应用程序,但我希望在我的手机上看到它的样子。但是,它会强制关闭并引发 InstantiationException。 logcat 异常: 09-19 20:13:47.987: D/
我想从 UIViewController 加载一个基于 SwiftUI 的 View ,该 View 读取包本地的 json。仅 swiftUI 项目中的代码和绑定(bind)工作正常,当我利用 UI
'java.net.SocketTimeoutException:连接超时' 循环一段时间后我收到此错误。为什么我会收到 SocketTimeoutException?我该如何修复这个错误? @Ove
当有 null 值时抛出 ArgumentNullException() 是个好主意吗? This thread 没有提到在 null 上抛出的最明显的异常。 谢谢 最佳答案 ArgumentNull
我得到这个异常: NullReferenceException Object reference not set to an instance of an object at Namespace
所以其中一个方法的描述如下: public BasicLinkedList addToFront(T data) This operation is invalid for a sorted list
我正在使用 Intellij Idea,当我去生成 JavaDocs(通过工具 -> 生成 JavaDoc)时,我抛出了一个 IllegealArgumentException,没有关于发生了什么问题
我正在学习 C++ 中的互斥锁,但以下代码(摘自 N. Josuttis 的“C++ 标准库”)有问题。 我不明白为什么它会阻塞/抛出除非我在主线程中添加this_thread::sleep_for(
我正在试验 JavaFX 标签和组,通过鼠标拖动将它们移动到屏幕上。新节点从一些线程添加到动画组。但是,有时我会突然看到以下异常 - 我假设,当某些节点重叠时。但是不知道是什么问题……因为不涉及我的代
我是一名优秀的程序员,十分优秀!