Home | History | Annotate | Download | only in tcg

Lines Matching full:temporaries

20 block. Temporaries are allocated explicitly in each function.
23 temporaries are allocated explicitly in each function.
39 TCG instructions operate on variables which are temporaries, local
40 temporaries or globals. TCG instructions and variables are strongly
66 After the end of a basic block, the content of temporaries is
67 destroyed, but local temporaries and globals are preserved.
493 - Use temporaries. Use local temporaries only when really needed,
494 e.g. when you need to use a value after a jump. Local temporaries
498 - Free temporaries and local temporaries when they are no longer used
500 should free it after it is used. Freeing temporaries does not yield