setjmp() and longjmp()

简单地了解了一下setjmp()和longjmp(),它们的功能大抵就是实现一个跳转。

setjmp(jmp_buf) 需要一个jmp_buf的变量来储存当前数据,longjmp(jm_buf, int) 需要两个参数,一个是setjmp用的jmp_buf,另一个是int。当调用longjmp()是,程序流程跳转到对应setjmp的位置执行,并把longjmp()中参数int的值作为setjmp()的返回值,程序继续执行。

我写了一个小程序,通过这个小程序,很容易看出这两个函数是什么关系。

/*
 * setjmp() and longjmp()
 * mike-w
 * 2012-9-30
 * *************************************
 * 有人用setjump()/longjump()
 * 可在我这只能用setjmp()/longjmp()
 * 不知道什么原因 :-(
 * environment: gcc 4.5.2 on win7
 */
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<setjmp.h>

jmp_buf buf1;

int foo(void)
{
	int op;
	puts("now you are in foo()");
	puts("select a sentence below:");
	puts("1. have a nice day");
	puts("2. nice to meet you");
	puts("3. it's raining cats and dogs");
	while(scanf("%d", &op)!=1 || op<=0 || op>3)
		fflush(stdin);
	puts("jumping from foo() to main()...");
	longjmp(buf1, op);
	return 0;
}

int main(void)
{
	puts("now you are in main()");
	switch(setjmp(buf1))
	{
		case 0:
			puts("you are still in main()");
			puts("calling foo()...");
			foo();
			break;
		case 1:
			puts("have a nice day");
			break;
		case 2:
			puts("nice to meet you.");
			break;
		case 3:
			puts("it's raining cats and dogs");
			break;
		default:
			puts("error!");
	}
	return 0;
}

执行结果:

now you are in main()
you are still in main()
calling foo()...
now you are in foo()
select a sentence below:
1. have a nice day
2. nice to meet you
3. it's raining cats and dogs
2 <- 这是我的输入
jumping from foo() to main()...
nice to meet you.


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
setjmplongjmp是C语言中提供的两个非常重要的函数,目的是实现函数间的跳转和状态保存。 setjmp函数用于保存当前函数执行的上下文,同时返回一个int类型的值。这个值由setjmp函数自动生成,用于之后调用longjmp函数时确定跳转目标。 longjmp函数则用于恢复之前setjmp所保存下来的上下文,使得程序能够直接跳转到指定的目标。 下面是setjmplongjmp在mips汇编语言中的实现: setjmp: ``` #setjmp implementation in MIPS assembly language .text .align 2 .globl setjmp .ent setjmp setjmp: addi sp, sp, -32 # allocate stack frame sw ra, 28(sp) # save return address sw fp, 24(sp) # save frame pointer addi fp, sp, 32 # set new frame pointer sw a0, 0(fp) # save jmp_buf li v0, 0 # return 0 jr ra .end setjmp ``` longjmp: ``` #longjmp implementation in MIPS assembly language .text .align 2 .globl longjmp .ent longjmp longjmp: lw fp, 24(sp) # restore frame pointer lw ra, 28(sp) # restore return address addi sp, sp, 32 # deallocate stack frame lw t0, 0(fp) # restore jmp_buf lw ra, 4(t0) # restore return address lw sp, 8(t0) # restore stack pointer lw s0, 12(t0) # restore frame pointer jr ra .end longjmp ``` 以上是setjmplongjmp在MIPS汇编语言中的实现。需要注意的是,这里使用了MIPS体系结构的调用约定,即函数返回值在v0寄存器中,函数参数在a0-a3寄存器中,被调用者保存的寄存器在栈帧中。在实际使用中,应根据特定的编译器和操作系统的要求进行调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值