mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
rethrow is really the language independent primitive here. "throw" can be written
in terms of it and llvm.exc.setcurrent. Rework the intrinsics. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8110 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6270f36784
commit
101d40060c
@ -197,8 +197,7 @@ unsigned Function::getIntrinsicID() const {
|
||||
break;
|
||||
case 'e':
|
||||
if (getName() == "llvm.exc.getcurrent")return LLVMIntrinsic::exc_getcurrent;
|
||||
if (getName() == "llvm.exc.rethrow") return LLVMIntrinsic::exc_rethrow;
|
||||
if (getName() == "llvm.exc.throw") return LLVMIntrinsic::exc_throw;
|
||||
if (getName() == "llvm.exc.setcurrent")return LLVMIntrinsic::exc_setcurrent;
|
||||
break;
|
||||
case 'l':
|
||||
if (getName() == "llvm.longjmp") return LLVMIntrinsic::longjmp;
|
||||
@ -208,6 +207,9 @@ unsigned Function::getIntrinsicID() const {
|
||||
if (getName() == "llvm.sigsetjmp") return LLVMIntrinsic::sigsetjmp;
|
||||
if (getName() == "llvm.siglongjmp") return LLVMIntrinsic::siglongjmp;
|
||||
break;
|
||||
case 'u':
|
||||
if (getName() == "llvm.unwind") return LLVMIntrinsic::unwind;
|
||||
break;
|
||||
case 'v':
|
||||
if (getName() == "llvm.va_copy") return LLVMIntrinsic::va_copy;
|
||||
if (getName() == "llvm.va_end") return LLVMIntrinsic::va_end;
|
||||
|
@ -522,8 +522,8 @@ void Verifier::visitIntrinsicFunctionCall(LLVMIntrinsic::ID ID, CallInst &CI) {
|
||||
case LLVMIntrinsic::va_end: NumArgs = 1; break;
|
||||
case LLVMIntrinsic::va_copy: NumArgs = 2; break;
|
||||
|
||||
case LLVMIntrinsic::exc_throw: NumArgs = 1; break;
|
||||
case LLVMIntrinsic::exc_rethrow: NumArgs = 0; break;
|
||||
case LLVMIntrinsic::unwind: NumArgs = 0; break;
|
||||
case LLVMIntrinsic::exc_setcurrent: NumArgs = 1; break;
|
||||
case LLVMIntrinsic::exc_getcurrent: NumArgs = 0; break;
|
||||
|
||||
case LLVMIntrinsic::setjmp: NumArgs = 1; break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user