Hygienic macro

1

In computer science, hygienic macros are macros whose expansion is guaranteed not to cause the accidental capture of identifiers. They are a feature of programming languages such as Scheme, Dylan, Rust, Nim, and Julia. The general problem of accidental capture was well known in the Lisp community before the introduction of hygienic macros. Macro writers would use language features that would generate unique identifiers (e.g., gensym) or use obfuscated identifiers to avoid the problem. Hygienic macros are a programmatic solution to the capture problem that is integrated into the macro expander. The term "hygiene" was coined in Kohlbecker et al.'s 1986 paper that introduced hygienic macro expansion, inspired by terminology used in mathematics.

The hygiene problem

Variable shadowing

In programming languages that have non-hygienic macro systems, it is possible for existing variable bindings to be hidden from a macro by variable bindings that are created during its expansion. In C, this problem can be illustrated by the following fragment: Running the above through the C preprocessor produces: The variable declared in the top scope is shadowed by the variable in the macro, which introduces a new scope. As a result, is never altered by the execution of the program, as the output of the compiled program shows: a is now 4, b is now 9

Standard library function redefinition

The hygiene problem can extend beyond variable bindings. Consider this Common Lisp macro: While there are no references to variables in this macro, it assumes the symbols "if", "not", and "progn" are all bound to their usual definitions in the standard library. If, however the above macro is used in the following code: The definition of "not" has been locally altered and so the expansion of changes. Note however that for Common Lisp this behavior is forbidden, as per 11.1.2.1.2 Constraints on the COMMON-LISP Package for Conforming Programs. It is also possible to completely redefine functions anyway. Some implementations of Common Lisp provide Package Locks to prevent the user to change definitions in packages by mistake.

Program-defined function redefinition

Of course, the problem can occur for program-defined functions in a similar way: The use site redefines and hence changes the behavior of the macro.

Strategies used in languages that lack hygienic macros

The hygiene problem can be resolved with conventional macros using several alternative solutions.

Obfuscation

The simplest solution, if temporary storage is needed during macro expansion, is to use unusual variables names in the macro in hope that the same names will never be used by the rest of the program. Until a variable named is created, this solution produces the correct output: a is now 5, b is now 9 The problem is solved for the current program, but this solution is not robust. The variables used inside the macro and those in the rest of the program have to be kept in sync by the programmer. Specifically, using the macro on a variable is going to fail in the same way that the original macro failed on a variable.

Temporary symbol creation

In some programming languages, it is possible for a new variable name, or symbol, to be generated and bound to a temporary location. The language processing system ensures that this never clashes with another name or location in the execution environment. The responsibility for choosing to use this feature within the body of a macro definition is left to the programmer. This method was used in MacLisp, where a function named could be used to generate a new symbol name. Similar functions (usually named as well) exist in many Lisp-like languages, including the widely implemented Common Lisp standard and Elisp. Although symbol creation solves the variable shadowing issue, it does not directly solve the issue of function redefinition. However,, macro facilities, and standard library functions are sufficient to embed hygienic macros in an unhygienic language.

Read-time uninterned symbol

This is similar to obfuscation in that a single name is shared by multiple expansions of the same macro. Unlike an unusual name, however, a read time uninterned symbol is used (denoted by the notation), for which it is impossible to occur outside of the macro, similar to.

Packages

Using packages such as in Common Lisp, the macro simply uses a private symbol from the package in which the macro is defined. The symbol will not accidentally occur in user code. User code would have to reach inside the package using the double colon notation to give itself permission to use the private symbol, for instance. At that point, the issue of accidental lack of hygiene is moot. Furthermore the ANSI Common Lisp standard categorizes redefining standard functions and operators, globally or locally, as invoking undefined behavior. Such usage can be thus diagnosed by the implementation as erroneous. Thus the Lisp package system provide a viable, complete solution to the macro hygiene problem, which can be regarded as an instance of name clashing. For example, in the program-defined function redefinition example, the macro can reside in its own package, where is a private symbol in that package. The symbol occurring in the user code will then be a different symbol, unrelated to the one used in the definition of the macro.

Literal objects

In some languages the expansion of a macro does not need to correspond to textual code; rather than expanding to an expression containing the symbol, a macro may produce an expansion containing the actual object referred to by. Similarly if the macro needs to use local variables or objects defined in the macro's package, it can expand to an invocation of a closure object whose enclosing lexical environment is that of the macro definition.

Hygienic transformation

Hygienic macro systems in languages such as Scheme use a macro expansion process that preserves the lexical scoping of all identifiers and prevents accidental capture. This property is called referential transparency. In cases where capture is desired, some systems allow the programmer to explicitly violate the hygiene mechanisms of the macro system. For example, Scheme's and macro creation systems are hygienic, so the following Scheme implementation of will have the desired behavior: The hygienic macro processor responsible for transforming the patterns of the input form into an output form detects symbol clashes and resolves them by temporarily changing the names of symbols. The basic strategy is to identify bindings in the macro definition and replace those names with gensyms, and to identify free variables in the macro definition and make sure those names are looked up in the scope of the macro definition instead of the scope where the macro was used.

Implementations

Macro systems that automatically enforce hygiene originated with Scheme. The original KFFD algorithm for a hygienic macro system was presented by Kohlbecker in '86. At the time, no standard macro system was adopted by Scheme implementations. Shortly thereafter in '87, Kohlbecker and Wand proposed a declarative pattern-based language for writing macros, which was the predecessor to the macro facility adopted by the R5RS standard. Syntactic closures, an alternative hygiene mechanism, was proposed as an alternative to Kohlbecker et al.'s system by Bawden and Rees in '88. Unlike the KFFD algorithm, syntactic closures require the programmer to explicitly specify the resolution of the scope of an identifier. In 1993, Dybvig et al. introduced the macro system, which uses an alternative representation of syntax and maintains hygiene automatically. The system can express the pattern language as a derived macro. The term macro system can be ambiguous because, in the context of Scheme, it can refer to both a pattern-matching construct (e.g., syntax-rules) and a framework for representing and manipulating syntax (e.g., syntax-case, syntactic closures).

Syntax-rules

Syntax-rules is a high-level pattern matching facility that attempts to make macros easier to write. However, is not able to succinctly describe certain classes of macros and is insufficient to express other macro systems. Syntax-rules was described in the R4RS document in an appendix but not mandated. Later, R5RS adopted it as a standard macro facility. Here is an example macro that swaps the value of two variables:

Syntax-case

Due to the deficiencies of a purely based macro system, the R6RS Scheme standard adopted the syntax-case macro system. Unlike, contains both a pattern matching language and a low-level facility for writing macros. The former allows macros to be written declaratively, while the latter allows the implementation of alternative frontends for writing macros. The swap example from before is nearly identical in because the pattern matching language is similar: However, is more powerful than syntax-rules. For example, macros can specify side-conditions on its pattern matching rules via arbitrary Scheme functions. Alternatively, a macro writer can choose not to use the pattern matching frontend and manipulate the syntax directly. Using the function, syntax-case macros can also intentionally capture identifiers, thus breaking hygiene.

Other systems

Other macro systems have also been proposed and implemented for Scheme. Syntactic closures and explicit renaming are two alternative macro systems. Both systems are lower-level than syntax-rules and leave the enforcement of hygiene to the macro writer. This differs from both syntax-rules and syntax-case, which automatically enforce hygiene by default. The swap examples from above are shown here using a syntactic closure and explicit renaming implementation respectively:

Languages with hygienic macro systems

Criticism

Hygienic macros offer safety and referential transparency at the expense of making intentional variable capture less straight-forward. Doug Hoyte, author of Let Over Lambda, writes: Almost all approaches taken to reducing the impact of variable capture serve only to reduce what you can do with defmacro. Hygienic macros are, in the best of situations, a beginner's safety guard-rail; in the worst of situations they form an electric fence, trapping their victims in a sanitised, capture-safe prison. Many hygienic macro systems do offer escape hatches without compromising on the guarantees that hygiene provides; for instance, Racket allows you to define syntax parameters, which allow you to selectively introduce bound variables. Gregg Hendershott gives an example at Fear of Macros of implementing an anaphoric if operator in this way.

This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.

Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc.
Bliptext is not affiliated with or endorsed by Wikipedia or the Wikimedia Foundation.

Edit article