! Copyright (C) 2004, 2005 Slava Pestov. ! See http://factor.sf.net/license.txt for BSD license. IN: compiler-backend USING: arrays errors generic hashtables kernel kernel-internals lists math memory namespaces parser sequences words ; ! The linear IR is the second of the two intermediate ! representations used by Factor. It is basically a high-level ! assembly language. Linear IR operations are called VOPs. ! This file defines all the types of VOPs. A linear IR program ! is then just a list of VOPs. :