Lines Matching defs:lbv
1934 struct storage *lbv;
1935 lbv = new_storage(STOR_LABEL);
1936 lbv->label = loop_bottom;
1937 lbv->flags = STOR_WANTS_FREE;
1938 insn("jmp", lbv, NULL, "go to loop bottom");
1942 struct storage *lbv = new_storage(STOR_LABEL);
1943 lbv->label = loop_bottom;
1944 lbv->flags = STOR_WANTS_FREE;
1951 insn("jz", lbv, NULL, NULL);
1959 struct storage *lbv = new_storage(STOR_LABEL);
1960 lbv->label = loop_top;
1961 lbv->flags = STOR_WANTS_FREE;
1962 insn("jmp", lbv, NULL, "go to loop top");
1965 struct storage *lbv = new_storage(STOR_LABEL);
1966 lbv->label = loop_top;
1967 lbv->flags = STOR_WANTS_FREE;
1968 insn("jmp", lbv, NULL, "go to loop top");
1971 struct storage *lbv = new_storage(STOR_LABEL);
1972 lbv->label = loop_top;
1973 lbv->flags = STOR_WANTS_FREE;
1979 insn("jnz", lbv, NULL, NULL);
2043 struct storage *lbv = new_storage(STOR_LABEL);
2044 lbv->label = loopstk_break();
2045 lbv->flags = STOR_WANTS_FREE;
2046 insn("jmp", lbv, NULL, "'break'; go to loop bottom");
2048 struct storage *lbv = new_storage(STOR_LABEL);
2049 lbv->label = loopstk_continue();
2050 lbv->flags = STOR_WANTS_FREE;
2051 insn("jmp", lbv, NULL, "'continue'; go to loop top");