2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-19 16:12:14 +00:00
Files
build/src/engine/function.cpp
Rene Rivera 2399813afa Switch to string_view for some internal char handling.
Add some debug validation in Jam interpreter.
2023-03-11 14:44:59 -06:00

5365 lines
167 KiB
C++

/*
* Copyright 2016-2022 Rene Rivera
* Copyright 2011 Steven Watanabe
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE.txt or copy at
* https://www.bfgroup.xyz/b2/LICENSE.txt)
*/
#include "jam.h"
#include "function.h"
#include "class.h"
#include "compile.h"
#include "constants.h"
#include "debugger.h"
#include "execcmd.h"
#include "filesys.h"
#include "frames.h"
#include "lists.h"
#include "mem.h"
#include "pathsys.h"
#include "rules.h"
#include "search.h"
#include "variable.h"
#include "output.h"
#include "startup.h"
#include "mod_sysinfo.h"
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#include <memory>
#include <string>
#include <type_traits>
#include <utility>
#include <vector>
#include <array>
/*
#define FUNCTION_DEBUG_PROFILE
*/
#ifndef FUNCTION_DEBUG_PROFILE
#undef PROFILE_ENTER_LOCAL
#define PROFILE_ENTER_LOCAL(x) while (false)
#undef PROFILE_EXIT_LOCAL
#define PROFILE_EXIT_LOCAL(x)
#endif
int32_t glob( char const * s, char const * c );
void backtrace( FRAME * );
void backtrace_line( FRAME * );
#define INSTR_PUSH_EMPTY 0
#define INSTR_PUSH_CONSTANT 1
#define INSTR_PUSH_ARG 2
#define INSTR_PUSH_VAR 3
#define INSTR_PUSH_VAR_FIXED 57
#define INSTR_PUSH_GROUP 4
#define INSTR_PUSH_RESULT 5
#define INSTR_PUSH_APPEND 6
#define INSTR_SWAP 7
#define INSTR_JUMP_EMPTY 8
#define INSTR_JUMP_NOT_EMPTY 9
#define INSTR_JUMP 10
#define INSTR_JUMP_LT 11
#define INSTR_JUMP_LE 12
#define INSTR_JUMP_GT 13
#define INSTR_JUMP_GE 14
#define INSTR_JUMP_EQ 15
#define INSTR_JUMP_NE 16
#define INSTR_JUMP_IN 17
#define INSTR_JUMP_NOT_IN 18
#define INSTR_JUMP_NOT_GLOB 19
#define INSTR_FOR_INIT 56
#define INSTR_FOR_LOOP 20
#define INSTR_SET_RESULT 21
#define INSTR_RETURN 22
#define INSTR_POP 23
#define INSTR_PUSH_LOCAL 24
#define INSTR_POP_LOCAL 25
#define INSTR_SET 26
#define INSTR_APPEND 27
#define INSTR_DEFAULT 28
#define INSTR_PUSH_LOCAL_FIXED 58
#define INSTR_POP_LOCAL_FIXED 59
#define INSTR_SET_FIXED 60
#define INSTR_APPEND_FIXED 61
#define INSTR_DEFAULT_FIXED 62
#define INSTR_PUSH_LOCAL_GROUP 29
#define INSTR_POP_LOCAL_GROUP 30
#define INSTR_SET_GROUP 31
#define INSTR_APPEND_GROUP 32
#define INSTR_DEFAULT_GROUP 33
#define INSTR_PUSH_ON 34
#define INSTR_POP_ON 35
#define INSTR_SET_ON 36
#define INSTR_APPEND_ON 37
#define INSTR_DEFAULT_ON 38
#define INSTR_GET_ON 65
#define INSTR_CALL_RULE 39
#define INSTR_CALL_MEMBER_RULE 66
#define INSTR_APPLY_MODIFIERS 40
#define INSTR_APPLY_INDEX 41
#define INSTR_APPLY_INDEX_MODIFIERS 42
#define INSTR_APPLY_MODIFIERS_GROUP 43
#define INSTR_APPLY_INDEX_GROUP 44
#define INSTR_APPLY_INDEX_MODIFIERS_GROUP 45
#define INSTR_COMBINE_STRINGS 46
#define INSTR_GET_GRIST 64
#define INSTR_INCLUDE 47
#define INSTR_RULE 48
#define INSTR_ACTIONS 49
#define INSTR_PUSH_MODULE 50
#define INSTR_POP_MODULE 51
#define INSTR_CLASS 52
#define INSTR_BIND_MODULE_VARIABLES 63
#define INSTR_APPEND_STRINGS 53
#define INSTR_WRITE_FILE 54
#define INSTR_OUTPUT_STRINGS 55
#define INSTR_DEBUG_LINE 67
#define INSTR_FOR_POP 70
typedef struct instruction
{
uint32_t op_code;
int32_t arg;
} instruction;
typedef struct _subfunction
{
OBJECT * name;
FUNCTION * code;
int32_t local;
} SUBFUNCTION;
typedef struct _subaction
{
OBJECT * name;
FUNCTION * command;
int32_t flags;
} SUBACTION;
#define FUNCTION_BUILTIN 0
#define FUNCTION_JAM 1
struct argument
{
int32_t flags;
#define ARG_ONE 0
#define ARG_OPTIONAL 1
#define ARG_PLUS 2
#define ARG_STAR 3
#define ARG_VARIADIC 4
OBJECT * type_name;
OBJECT * arg_name;
int32_t index;
};
struct arg_list
{
int32_t size;
struct argument * args;
};
struct _function
{
int32_t type;
int32_t reference_count;
OBJECT * rulename;
struct arg_list * formal_arguments;
int32_t num_formal_arguments;
};
typedef struct _builtin_function
{
FUNCTION base;
function_builtin_t func;
int32_t flags;
} BUILTIN_FUNCTION;
typedef struct _jam_function
{
FUNCTION base;
int32_t code_size;
instruction * code;
int32_t num_constants;
OBJECT * * constants;
int32_t num_subfunctions;
SUBFUNCTION * functions;
int32_t num_subactions;
SUBACTION * actions;
FUNCTION * generic;
OBJECT * file;
int32_t line;
} JAM_FUNCTION;
namespace
{
typedef struct _stack STACK;
typedef STACK* stack_ptr;
template <typename T>
using remove_cref_t
= typename std::remove_const<
typename std::remove_reference<
typename std::remove_const<T>::type
>::type
>::type;
#if 1
template <typename...A>
struct select_last_impl {};
template <typename T>
struct select_last_impl<T> { using type = T; };
template <typename T, typename... A>
struct select_last_impl<T, A...> {
using type = typename select_last_impl<A...>::type; };
template <typename... A>
using select_last_t = typename select_last_impl<A...>::type;
#else
template<typename...>
struct type_list;
template<bool T, typename L>
struct select_last_impl;
template<typename... A>
struct select_last_impl<true, type_list<A...>>
{
template<typename T>
using type = T;
};
template<typename... A>
struct select_last_impl<false, type_list<A...>>
{
template<typename T, typename... R>
using type = typename select_last_impl<
(sizeof...(R) == 1), type_list<A...> >
::template type<R...>;
};
template<typename... A>
using select_last_t =
typename select_last_impl<(sizeof...(A) == 1), type_list<A...> >
::template type<A...>;
#endif
struct _stack
{
public:
_stack()
{
// The LIFO stack goes from start end (high/right) to (low/left).
// Byte size of the function stack.
int32_t const size = 1 << 21;
// The beginning of the stack memory.
start = BJAM_MALLOC( size );
// The current past-end/tail of the stack memory.
end = (char *)start + size;
// The next available stack location.
data = end;
}
void done()
{
if ( cleanups_size > cleanups_t::size_type(0) )
{
// Call any left over cleanup functions to deallocate items that
// reference resources.
while ( cleanups_size > 0 )
{
cleanups_size -= 1;
cleanups[cleanups_size].clean( this );
}
}
BJAM_FREE( start );
start = end = data = nullptr;
}
// Get reference to the top i-th T item, optionally as a U. I.e. it skips
// the i-th T items returning it as U&.
template <typename T, typename U = T>
remove_cref_t<U> & top(int i = 0)
{
return *reinterpret_cast<U*>( nth<T>( i ) );
}
// Get a pointer to the last A-th item skipping over any A pre i-th items.
template <typename...A>
remove_cref_t< select_last_t<A...> > * get()
{
using U = remove_cref_t< select_last_t<A...> >;
return static_cast<U*>( advance<A...>(get_data()) );
}
// Move "v" to a new slot in ther stack. Returns a reference to the new item.
template <class T>
remove_cref_t<T> & push( T v, FRAME * frame = nullptr );
// Copy "v" into "n" new items at the top of the stack. Returns a pointer
// to the first, i.e. top/front most, new item.
template <class T>
remove_cref_t<T> * push( T v, int32_t n, FRAME * frame = nullptr );
// Removes the top/left most "T" item from the stack and returns a copy of
// it.
template <class T>
remove_cref_t<T> pop()
{
using U = remove_cref_t<T>;
// Copy the top/left item.
U result = top<U>();
// Remove the obsolete top item.
pop<T>( 1 );
return result;
}
// Removes the top/left "n" "T" items from the stack.
template <class T>
void pop( int32_t n )
{
// Debugging validation.
using U = remove_cref_t<T>;
for (auto c = 0; c < n; ++c)
cleanups[cleanups_size-c-1].check<U>().~cleanup_t();
// The removal of the n items happens by skipping the stack pointer
// past the n items.
set_data( nth<T>( n ) );
// We also "skip" the cleanups. As the caller has dealt with that in
// some form.
cleanups_size -= n;
}
private:
void * start = nullptr;
void * end = nullptr;
void * data = nullptr;
using cleanup_f = void(*)( _stack* );
struct cleanup_t
{
cleanup_f clean = nullptr;
#if defined(B2_DEBUG) && B2_DEBUG
const char * type_name = nullptr;
std::string native_stack;
std::string jam_stack;
#endif
inline cleanup_t() = default;
template <class T>
inline cleanup_t(cleanup_f f, FRAME * frame, T*_) : clean(f)
{
#if defined(B2_DEBUG) && B2_DEBUG
type_name = typeid(T).name();
native_stack = b2::stacktrace::to_string();
jam_stack = b2::jam::backtrace::to_string(frame);
#endif
}
inline ~cleanup_t()
{
#if defined(B2_DEBUG) && B2_DEBUG
clean = nullptr;
type_name = nullptr;
#endif
}
template <class T>
inline cleanup_t & check()
{
#if defined(B2_DEBUG) && B2_DEBUG
static const char * type_name_c = typeid(T).name();
b2::ensure(type_name_c == this->type_name);
#endif
return *this;
}
};
using cleanups_t = std::array<cleanup_t, (1 << 21)/sizeof(void*)>;
cleanups_t cleanups;
cleanups_t::size_type cleanups_size = 0;
struct list_alignment_helper
{
char ch;
LIST * l;
};
#define LISTPTR_ALIGN_BASE ( sizeof( struct list_alignment_helper ) - sizeof( LIST * ) )
#define LISTPTR_ALIGN ( ( LISTPTR_ALIGN_BASE > sizeof( LIST * ) ) ? sizeof( LIST * ) : LISTPTR_ALIGN_BASE )
inline void set_data(void * d)
{
data = d;
}
inline void * get_data()
{
return data;
}
// Get a pointer from the current top/left onward to the nth item.
template <typename T>
remove_cref_t<T> * nth( int32_t n )
{
using U = remove_cref_t<T>;
return &( static_cast<U*>( get_data() )[n] );
}
template <typename T>
struct advance_size
{
struct _helper_1 { remove_cref_t<T> a; };
struct _helper_2 { remove_cref_t<T> a; remove_cref_t<T> b; };
static const std::ptrdiff_t value = sizeof(_helper_2) - sizeof(_helper_1);
};
template <typename...A>
struct sum_advance_size {};
template <typename T>
struct sum_advance_size<T>
{
static const std::ptrdiff_t value
= advance_size<T>::value;
};
template <typename T, typename...A>
struct sum_advance_size<T, A...>
{
static const std::ptrdiff_t value
= advance_size<T>::value + sum_advance_size<A...>::value;
};
template <typename...R>
static void * advance(void * p)
{
p = static_cast<char*>(p)
+ sum_advance_size<R...>::value
- advance_size< select_last_t<R...> >::value;
return p;
}
template <typename T>
static void cleanup_item(_stack * s, T*_=nullptr)
{
s->set_data( s->nth<T>( 1 ) );
}
template <typename T>
void cleanup_push(int32_t n, FRAME * frame, T*_ = nullptr);
};
template <>
void _stack::cleanup_item<LIST*>(_stack * s, LIST**)
{
list_free( s->top<LIST*>() );
s->set_data( s->nth<LIST*>( 1 ) );
}
template <class T>
remove_cref_t<T> & _stack::push( T v, FRAME * frame )
{
return *push<T>( v, 1, frame );
}
template <class T>
remove_cref_t<T> * _stack::push( T v, int32_t n, FRAME * frame )
{
using U = remove_cref_t<T>;
set_data( nth<T>( -n ) );
std::uninitialized_fill_n( nth<U>( 0 ), n, v );
cleanup_push<U>( n, frame );
return nth<U>( 0 );
}
template <typename T>
void _stack::cleanup_push( int32_t n, FRAME * frame, T*_ )
{
using U = remove_cref_t<T>;
cleanup_t c((cleanup_f)&_stack::cleanup_item<T>, frame, (U*)(_));
std::uninitialized_fill_n( &cleanups[cleanups_size], n, c );
cleanups_size += n;
}
}
static STACK * stack_global()
{
static _stack singleton;
return &singleton;
}
LIST * frame_get_local( FRAME * frame, int32_t idx )
{
/* The only local variables are the arguments. */
return list_copy( lol_get( frame->args, idx ) );
}
static OBJECT * function_get_constant( JAM_FUNCTION * function, int32_t idx )
{
return function->constants[ idx ];
}
static LIST * function_get_variable( JAM_FUNCTION * function, FRAME * frame,
int32_t idx )
{
return list_copy( var_get( frame->module, function->constants[ idx ] ) );
}
static void function_set_variable( JAM_FUNCTION * function, FRAME * frame,
int32_t idx, LIST * value )
{
var_set( frame->module, function->constants[ idx ], value, VAR_SET );
}
static LIST * function_swap_variable( JAM_FUNCTION * function, FRAME * frame,
int32_t idx, LIST * value )
{
return var_swap( frame->module, function->constants[ idx ], value );
}
static void function_append_variable( JAM_FUNCTION * function, FRAME * frame,
int32_t idx, LIST * value )
{
var_set( frame->module, function->constants[ idx ], value, VAR_APPEND );
}
static void function_default_variable( JAM_FUNCTION * function, FRAME * frame,
int32_t idx, LIST * value )
{
var_set( frame->module, function->constants[ idx ], value, VAR_DEFAULT );
}
static void function_set_rule( JAM_FUNCTION * function, FRAME * frame,
STACK * s, int32_t idx )
{
SUBFUNCTION * sub = function->functions + idx;
new_rule_body( frame->module, sub->name, sub->code, !sub->local );
}
static void function_set_actions( JAM_FUNCTION * function, FRAME * frame,
STACK * s, int32_t idx )
{
SUBACTION * sub = function->actions + idx;
LIST * bindlist = s->pop<LIST *>();
new_rule_actions( frame->module, sub->name, sub->command, bindlist,
sub->flags );
}
/*
* Returns the index if name is "<", ">", "1", "2", ... or "19" otherwise
* returns -1.
*/
static int32_t get_argument_index( char const * s )
{
if ( s[ 0 ] != '\0')
{
if ( s[ 1 ] == '\0' )
{
switch ( s[ 0 ] )
{
case '<': return 0;
case '>': return 1;
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
return s[ 0 ] - '1';
}
}
else if ( s[ 0 ] == '1' && s[ 2 ] == '\0' )
{
switch( s[ 1 ] )
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
return s[ 1 ] - '0' + 10 - 1;
}
}
}
return -1;
}
static LIST * function_get_named_variable( JAM_FUNCTION * function,
FRAME * frame, OBJECT * name )
{
int32_t const idx = get_argument_index( object_str( name ) );
return idx == -1
? list_copy( var_get( frame->module, name ) )
: list_copy( lol_get( frame->args, idx ) );
}
static void function_set_named_variable( JAM_FUNCTION * function, FRAME * frame,
OBJECT * name, LIST * value)
{
var_set( frame->module, name, value, VAR_SET );
}
static LIST * function_swap_named_variable( JAM_FUNCTION * function,
FRAME * frame, OBJECT * name, LIST * value )
{
return var_swap( frame->module, name, value );
}
static void function_append_named_variable( JAM_FUNCTION * function,
FRAME * frame, OBJECT * name, LIST * value)
{
var_set( frame->module, name, value, VAR_APPEND );
}
static void function_default_named_variable( JAM_FUNCTION * function,
FRAME * frame, OBJECT * name, LIST * value )
{
var_set( frame->module, name, value, VAR_DEFAULT );
}
static LIST * function_call_rule( JAM_FUNCTION * function, FRAME * frame,
STACK * s, int32_t n_args, char const * unexpanded, OBJECT * file, int32_t line )
{
FRAME inner;
int32_t i;
b2::list_ref first( s->pop<LIST *>(), true );
LIST * result = L0;
OBJECT * rulename;
frame->file = file;
frame->line = line;
if ( first.empty() )
{
backtrace_line( frame );
out_printf( "warning: rulename %s expands to empty string\n", unexpanded );
backtrace( frame );
first.reset();
for ( i = 0; i < n_args; ++i )
list_free( s->pop<LIST *>() );
return result;
}
rulename = object_copy( list_front( *first ) );
inner.prev = frame;
inner.prev_user = frame->module->user_module ? frame : frame->prev_user;
inner.module = frame->module; /* This gets fixed up in evaluate_rule(). */
if ( n_args > LOL_MAX )
{
out_printf( "ERROR: rules are limited to %d arguments\n", LOL_MAX );
backtrace( &inner );
b2::clean_exit( EXITBAD );
}
for ( i = 0; i < n_args; ++i )
lol_add( inner.args, s->top<LIST*>( n_args - i - 1 ) );
for ( i = 0; i < n_args; ++i )
s->pop<LIST *>();
if ( !first.pop_front().empty() )
{
if ( inner.args->count == 0 )
lol_add( inner.args, first.release() );
else
{
LIST * * const l = &inner.args->list[ 0 ];
*l = list_append( first.release(), *l );
}
}
result = evaluate_rule( bindrule( rulename, inner.module ), rulename, &inner );
object_free( rulename );
return result;
}
static LIST * function_call_member_rule( JAM_FUNCTION * function, FRAME * frame, STACK * s, int32_t n_args, OBJECT * rulename, OBJECT * file, int32_t line )
{
if ( n_args > LOL_MAX )
{
out_printf( "ERROR: member rules are limited to %d arguments\n", LOL_MAX );
backtrace( frame );
b2::clean_exit( EXITBAD );
}
b2::list_ref first(s->pop<LIST *>(), true);
b2::lists args;
for (b2::lists::size_type i = 0; i < n_args; ++i)
args.push_back(b2::list_ref(s->top<LIST*>( n_args - i - 1 ), true));
for (b2::lists::size_type i = 0; i < n_args; ++i)
s->pop<LIST *>();
return call_member_rule( rulename, frame, std::move(first), std::move(args) );
}
/* Variable expansion */
typedef struct
{
int32_t sub1;
int32_t sub2;
} subscript_t;
typedef struct
{
PATHNAME f; /* :GDBSMR -- pieces */
PATHPART empty; /* :E -- default for empties */
PATHPART join; /* :J -- join list with char */
PATHPART prefix; /* :< */
PATHPART postfix; /* :> */
bool parent:1; /* :P -- go to parent directory */
bool filemods:1; /* one of the above applied */
bool downshift:1; /* :L -- downshift result */
bool upshift:1; /* :U -- upshift result */
bool to_slashes:1; /* :T -- convert "\" to "/" */
bool to_windows:1; /* :W -- convert cygwin to native paths */
bool opt_file:1; /* :O=F -- replace @() with the file part */
bool opt_content:1; /* :O=C -- repalce @() with the content (E) part */
} VAR_EDITS;
struct VAR_EXPANDED
{
LIST * value = L0;
LIST * inner = L0;
bool opt_file:1;
bool opt_content:1;
};
static VAR_EXPANDED apply_modifiers_impl( LIST * result, string * buf,
VAR_EDITS * edits, int32_t n, LISTITER iter, LISTITER end );
static void get_iters( subscript_t const subscript, LISTITER * const first,
LISTITER * const last, int32_t const length );
/*
* var_edit_parse() - parse : modifiers into PATHNAME structure
*
* The : modifiers in a $(varname:modifier) currently support replacing or
* omitting elements of a filename, and so they are parsed into a PATHNAME
* structure (which contains pointers into the original string).
*
* Modifiers of the form "X=value" replace the component X with the given value.
* Modifiers without the "=value" cause everything but the component X to be
* omitted. X is one of:
*
* G <grist>
* D directory name
* B base name
* S .suffix
* M (member)
* R root directory - prepended to whole path
*
* This routine sets:
*
* f->f_xxx.ptr = 0
* f->f_xxx.len = 0
* -> leave the original component xxx
*
* f->f_xxx.ptr = string
* f->f_xxx.len = strlen( string )
* -> replace component xxx with string
*
* f->f_xxx.ptr = ""
* f->f_xxx.len = 0
* -> omit component xxx
*
* var_edit_file() below and path_build() obligingly follow this convention.
*/
static int32_t var_edit_parse( char const * mods, VAR_EDITS * edits, int32_t havezeroed
)
{
while ( *mods )
{
PATHPART * fp;
bool opt = false;
switch ( *mods++ )
{
case 'L': edits->downshift = 1; continue;
case 'U': edits->upshift = 1; continue;
case 'P': edits->parent = edits->filemods = 1; continue;
case 'E': fp = &edits->empty; goto strval;
case 'J': fp = &edits->join; goto strval;
case 'G': fp = &edits->f.f_grist; goto fileval;
case 'R': fp = &edits->f.f_root; goto fileval;
case 'D': fp = &edits->f.f_dir; goto fileval;
case 'B': fp = &edits->f.f_base; goto fileval;
case 'S': fp = &edits->f.f_suffix; goto fileval;
case 'M': fp = &edits->f.f_member; goto fileval;
case 'T': edits->to_slashes = 1; continue;
case 'W': edits->to_windows = 1; continue;
case '<': fp = &edits->prefix; goto strval;
case '>': fp = &edits->postfix; goto strval;
case 'O': opt = true; goto strval;
default:
continue; /* Should complain, but so what... */
}
fileval:
/* Handle :CHARS, where each char (without a following =) selects a
* particular file path element. On the first such char, we deselect all
* others (by setting ptr = "", len = 0) and for each char we select
* that element (by setting ptr = 0).
*/
edits->filemods = 1;
if ( *mods != '=' )
{
if ( !havezeroed++ )
{
int32_t i;
for ( i = 0; i < 6; ++i )
{
edits->f.part[ i ].len = 0;
edits->f.part[ i ].ptr = "";
}
}
fp->ptr = 0;
continue;
}
strval:
/* Handle :O=??? */
if ( opt )
{
if ( *mods == '=' )
{
for (++mods; *mods; ++mods)
{
switch ( *mods )
{
case 'F': edits->opt_file = true; break;
case 'C': edits->opt_content = true; break;
}
}
}
}
else
{
/* Handle :X=value, or :X */
if ( *mods != '=' )
{
fp->ptr = "";
fp->len = 0;
}
else
{
fp->ptr = ++mods;
fp->len = int32_t(strlen( mods ));
mods += fp->len;
}
}
}
return havezeroed;
}
/*
* var_edit_file() - copy input target name to output, modifying filename.
*/
static void var_edit_file( char const * in, string * out, VAR_EDITS * edits )
{
if ( edits->filemods )
{
PATHNAME pathname;
/* Parse apart original filename, putting parts into "pathname". */
path_parse( in, &pathname );
/* Replace any pathname with edits->f */
if ( edits->f.f_grist .ptr ) pathname.f_grist = edits->f.f_grist;
if ( edits->f.f_root .ptr ) pathname.f_root = edits->f.f_root;
if ( edits->f.f_dir .ptr ) pathname.f_dir = edits->f.f_dir;
if ( edits->f.f_base .ptr ) pathname.f_base = edits->f.f_base;
if ( edits->f.f_suffix.ptr ) pathname.f_suffix = edits->f.f_suffix;
if ( edits->f.f_member.ptr ) pathname.f_member = edits->f.f_member;
/* If requested, modify pathname to point to parent. */
if ( edits->parent )
path_parent( &pathname );
/* Put filename back together. */
path_build( &pathname, out );
}
else
string_append( out, in );
}
#if defined( OS_CYGWIN ) || defined( OS_VMS )
/*
* var_edit_translate_path() - translate path to os native format.
*/
static void var_edit_translate_path( string * out, int32_t pos, VAR_EDITS * edits )
{
if ( edits->to_windows )
{
string result[ 1 ];
int32_t translated;
/* Translate path to os native format. */
translated = path_translate_to_os( out->value + pos, result );
if ( translated )
{
string_truncate( out, pos );
string_append( out, result->value );
edits->to_slashes = 0;
}
string_free( result );
}
}
#endif
/*
* var_edit_shift() - do upshift/downshift & other mods.
*/
static void var_edit_shift( string * out, int32_t pos, VAR_EDITS * edits )
{
#if defined( OS_CYGWIN ) || defined( OS_VMS )
var_edit_translate_path( out, pos, edits );
#endif
if ( edits->upshift || edits->downshift || edits->to_slashes )
{
/* Handle upshifting, downshifting and slash translation now. */
char * p;
for ( p = out->value + pos; *p; ++p )
{
if ( edits->upshift )
*p = toupper( *p );
else if ( edits->downshift )
*p = tolower( *p );
if ( edits->to_slashes && ( *p == '\\' ) )
*p = '/';
}
}
}
/*
* Reads n LISTs from the top of the STACK and combines them to form VAR_EDITS.
* Returns the number of VAR_EDITS pushed onto the STACK.
*/
static int32_t expand_modifiers( STACK * s, int32_t n )
{
int32_t i;
int32_t total = 1;
LIST * * args = s->get<LIST*>();
for ( i = 0; i < n; ++i )
total *= list_length( args[ i ] );
if ( total != 0 )
{
VAR_EDITS * out = s->push( VAR_EDITS(), total );
LISTITER * iter = s->push( LISTITER(nullptr), n );
for ( i = 0; i < n; ++i )
iter[ i ] = list_begin( args[ i ] );
i = 0;
{
int32_t havezeroed;
loop:
memset( out, 0, sizeof( *out ) );
havezeroed = 0;
for ( i = 0; i < n; ++i )
havezeroed = var_edit_parse( object_str( list_item( iter[ i ] )
), out, havezeroed );
++out;
while ( --i >= 0 )
{
if ( list_next( iter[ i ] ) != list_end( args[ i ] ) )
{
iter[ i ] = list_next( iter[ i ] );
goto loop;
}
iter[ i ] = list_begin( args[ i ] );
}
}
s->pop<LISTITER>( n );
}
return total;
}
static VAR_EXPANDED apply_modifiers( STACK * s, int32_t n )
{
LIST * value = s->top<LIST*>();
VAR_EXPANDED result;
VAR_EDITS * const edits = s->get<LIST*, VAR_EDITS>();
string buf[ 1 ];
string_new( buf );
result = apply_modifiers_impl( L0, buf, edits, n, list_begin( value ),
list_end( value ) );
string_free( buf );
return result;
}
// STACK: LIST * modifiers[modifier_count]
static VAR_EXPANDED eval_modifiers( STACK * s, LIST * value, int32_t modifier_count )
{
// Convert modifiers to value edits.
int32_t edits = expand_modifiers( s, modifier_count );
// Edit the value on the stack.
s->push( value );
VAR_EXPANDED result = apply_modifiers( s, edits );
list_free( s->pop<LIST *>() );
// Clean up the value edits on the stack.
s->pop<VAR_EDITS>( edits );
// Clean up the filename modifiers.
for ( int32_t i = 0; i < modifier_count; ++i )
list_free( s->pop<LIST *>() );
// Done.
return result;
}
/*
* Parse a string of the form "1-2", "-2--1", "2-" and return the two
* subscripts.
*/
subscript_t parse_subscript( char const * s )
{
subscript_t result;
result.sub1 = 0;
result.sub2 = 0;
do /* so we can use "break" */
{
/* Allow negative subscripts. */
if ( !isdigit( *s ) && ( *s != '-' ) )
{
result.sub2 = 0;
break;
}
result.sub1 = atoi( s );
/* Skip over the first symbol, which is either a digit or dash. */
++s;
while ( isdigit( *s ) ) ++s;
if ( *s == '\0' )
{
result.sub2 = result.sub1;
break;
}
if ( *s != '-' )
{
result.sub2 = 0;
break;
}
++s;
if ( *s == '\0' )
{
result.sub2 = -1;
break;
}
if ( !isdigit( *s ) && ( *s != '-' ) )
{
result.sub2 = 0;
break;
}
/* First, compute the index of the last element. */
result.sub2 = atoi( s );
while ( isdigit( *++s ) );
if ( *s != '\0' )
result.sub2 = 0;
} while ( 0 );
return result;
}
static LIST * apply_subscript( STACK * s )
{
LIST * value = s->top<LIST*>();
LIST * indices = s->top<LIST*>( 1 );
LIST * result = L0;
int32_t length = list_length( value );
string buf[ 1 ];
LISTITER indices_iter = list_begin( indices );
LISTITER const indices_end = list_end( indices );
string_new( buf );
for ( ; indices_iter != indices_end; indices_iter = list_next( indices_iter
) )
{
LISTITER iter = list_begin( value );
LISTITER end = list_end( value );
subscript_t const subscript = parse_subscript( object_str( list_item(
indices_iter ) ) );
get_iters( subscript, &iter, &end, length );
for ( ; iter != end; iter = list_next( iter ) )
result = list_push_back( result, object_copy( list_item( iter ) ) );
}
string_free( buf );
return result;
}
/*
* Reads the LIST from first and applies subscript to it. The results are
* written to *first and *last.
*/
static void get_iters( subscript_t const subscript, LISTITER * const first,
LISTITER * const last, int32_t const length )
{
int32_t start;
int32_t size;
LISTITER iter;
LISTITER end;
{
if ( subscript.sub1 < 0 )
start = length + subscript.sub1;
else if ( subscript.sub1 > length )
start = length;
else
start = subscript.sub1 - 1;
size = subscript.sub2 < 0
? length + 1 + subscript.sub2 - start
: subscript.sub2 - start;
/*
* HACK: When the first subscript is before the start of the list, it
* magically becomes the beginning of the list. This is inconsistent,
* but needed for backwards compatibility.
*/
if ( start < 0 )
start = 0;
/* The "sub2 < 0" test handles the semantic error of sub2 < sub1. */
if ( size < 0 )
size = 0;
if ( start + size > length )
size = length - start;
}
iter = *first;
while ( start-- > 0 )
iter = list_next( iter );
end = iter;
while ( size-- > 0 )
end = list_next( end );
*first = iter;
*last = end;
}
static LIST * apply_modifiers_prepost( LIST * result, string * buf,
VAR_EDITS * edits, int32_t n, LISTITER begin, LISTITER end )
{
for ( LISTITER iter = begin; iter != end; iter = list_next( iter ) )
{
for ( int32_t i = 0; i < n; ++i )
{
if ( edits[ i ].prefix.ptr )
{
string_append( buf, edits[ i ].prefix.ptr );
}
}
string_append( buf, object_str( list_item( iter ) ) );
for ( int32_t i = 0; i < n; ++i )
{
if ( edits[ i ].postfix.ptr )
{
string_append( buf, edits[ i ].postfix.ptr );
}
}
result = list_push_back( result, object_new( buf->value ) );
string_truncate( buf, 0 );
}
return result;
}
static LIST * apply_modifiers_empty( LIST * result, string * buf,
VAR_EDITS * edits, int32_t n )
{
int32_t i;
for ( i = 0; i < n; ++i )
{
if ( edits[ i ].empty.ptr )
{
/** FIXME: is empty.ptr always null-terminated? */
var_edit_file( edits[ i ].empty.ptr, buf, edits + i );
var_edit_shift( buf, 0, edits + i );
result = list_push_back( result, object_new( buf->value ) );
string_truncate( buf, 0 );
}
}
return result;
}
static LIST * apply_modifiers_non_empty( LIST * result, string * buf,
VAR_EDITS * edits, int32_t n, LISTITER begin, LISTITER end )
{
int32_t i;
LISTITER iter;
for ( i = 0; i < n; ++i )
{
if ( edits[ i ].join.ptr )
{
var_edit_file( object_str( list_item( begin ) ), buf, edits + i );
var_edit_shift( buf, 0, edits + i );
for ( iter = list_next( begin ); iter != end; iter = list_next( iter
) )
{
int32_t size;
string_append( buf, edits[ i ].join.ptr );
size = buf->size;
var_edit_file( object_str( list_item( iter ) ), buf, edits + i
);
var_edit_shift( buf, size, edits + i );
}
result = list_push_back( result, object_new( buf->value ) );
string_truncate( buf, 0 );
}
else
{
for ( iter = begin; iter != end; iter = list_next( iter ) )
{
var_edit_file( object_str( list_item( iter ) ), buf, edits + i );
var_edit_shift( buf, 0, edits + i );
result = list_push_back( result, object_new( buf->value ) );
string_truncate( buf, 0 );
}
}
}
return result;
}
static VAR_EXPANDED apply_modifiers_impl( LIST * result, string * buf,
VAR_EDITS * edits, int32_t n, LISTITER iter, LISTITER end )
{
LIST * modified = iter == end
? apply_modifiers_empty( result, buf, edits, n )
: apply_modifiers_non_empty( result, buf, edits, n, iter, end );
VAR_EXPANDED expanded;
expanded.value = apply_modifiers_prepost(
L0, buf, edits, n, list_begin( modified ), list_end( modified ) );
expanded.inner = modified;
expanded.opt_file = false;
expanded.opt_content = false;
for ( int32_t i = 0; i < n; ++i )
{
expanded.opt_file |= edits[i].opt_file;
expanded.opt_content |= edits[i].opt_content;
}
return expanded;
}
static LIST * apply_subscript_and_modifiers( STACK * s, int32_t n )
{
LIST * const value = s->top<LIST*>();
LIST * const indices = s->top<LIST*>( 1 );
LIST * result = L0;
VAR_EDITS * const edits = s->get<LIST*, LIST*, VAR_EDITS>();
int32_t const length = list_length( value );
string buf[ 1 ];
LISTITER indices_iter = list_begin( indices );
LISTITER const indices_end = list_end( indices );
string_new( buf );
for ( ; indices_iter != indices_end; indices_iter = list_next( indices_iter
) )
{
LISTITER iter = list_begin( value );
LISTITER end = list_end( value );
subscript_t const sub = parse_subscript( object_str( list_item(
indices_iter ) ) );
get_iters( sub, &iter, &end, length );
VAR_EXPANDED modified
= apply_modifiers_impl( result, buf, edits, n, iter, end );
result = modified.value;
list_free( modified.inner );
}
string_free( buf );
return result;
}
/*
* expand() - expands a list of concatenated strings and variable references
*
* Takes a list of expansion items - each representing one element to be
* concatenated and each containing a list of its values. Returns a list of all
* possible values constructed by selecting a single value from each of the
* elements and concatenating them together.
*
* For example, in the following code:
*
* local a = one two three four ;
* local b = foo bar ;
* ECHO /$(a)/$(b)/$(a)/ ;
*
* When constructing the result of /$(a)/$(b)/ this function would get called
* with the following 7 expansion items:
* 1. /
* 2. one two three four
* 3. /
* 4. foo bar
* 5. /
* 6. one two three four
* 7. /
*
* And would result in a list containing 32 values:
* 1. /one/foo/one/
* 2. /one/foo/two/
* 3. /one/foo/three/
* 4. /one/foo/four/
* 5. /one/bar/one/
* ...
*
*/
typedef struct expansion_item
{
/* Item's value list initialized prior to calling expand(). */
LIST * values;
/* Internal data initialized and used inside expand(). */
LISTITER current; /* Currently used value. */
int32_t size; /* Concatenated string length prior to concatenating the
* item's current value.
*/
} expansion_item;
static LIST * expand( expansion_item * items, int32_t const length )
{
LIST * result = L0;
string buf[ 1 ];
int32_t size = 0;
int32_t i;
assert( length > 0 );
for ( i = 0; i < length; ++i )
{
LISTITER iter = list_begin( items[ i ].values );
LISTITER const end = list_end( items[ i ].values );
/* If any of the items has no values - the result is an empty list. */
if ( iter == end ) return L0;
/* Set each item's 'current' to its first listed value. This indicates
* each item's next value to be used when constructing the list of all
* possible concatenated values.
*/
items[ i ].current = iter;
/* Calculate the longest concatenated string length - to know how much
* memory we need to allocate as a buffer for holding the concatenated
* strings.
*/
{
int32_t max = 0;
for ( ; iter != end; iter = list_next( iter ) )
{
int32_t const len = int32_t(strlen( object_str( list_item( iter ) ) ));
if ( len > max ) max = len;
}
size += max;
}
}
string_new( buf );
string_reserve( buf, size );
i = 0;
while ( i >= 0 )
{
for ( ; i < length; ++i )
{
items[ i ].size = buf->size;
string_append( buf, object_str( list_item( items[ i ].current ) ) );
}
result = list_push_back( result, object_new( buf->value ) );
while ( --i >= 0 )
{
if ( list_next( items[ i ].current ) != list_end( items[ i ].values
) )
{
items[ i ].current = list_next( items[ i ].current );
string_truncate( buf, items[ i ].size );
break;
}
else
items[ i ].current = list_begin( items[ i ].values );
}
}
string_free( buf );
return result;
}
static void combine_strings( STACK * s, int32_t n, string * out )
{
int32_t i;
for ( i = 0; i < n; ++i )
{
LIST * const values = s->pop<LIST *>();
LISTITER iter = list_begin( values );
LISTITER const end = list_end( values );
if ( iter != end )
{
string_append( out, object_str( list_item( iter ) ) );
for ( iter = list_next( iter ); iter != end; iter = list_next( iter
) )
{
string_push_back( out, ' ' );
string_append( out, object_str( list_item( iter ) ) );
}
}
list_free( values );
}
}
struct dynamic_array
{
int32_t size;
int32_t capacity;
int32_t unit_size;
void * data;
};
static void dynamic_array_init( struct dynamic_array * array )
{
array->size = 0;
array->capacity = 0;
array->unit_size = 0;
array->data = 0;
}
static void dynamic_array_free( struct dynamic_array * array )
{
BJAM_FREE( array->data );
}
static void dynamic_array_push_impl( struct dynamic_array * const array,
void const * const value, int32_t const unit_size )
{
if ( array->unit_size == 0 )
{
array->unit_size = unit_size;
}
else
{
assert( array->unit_size == unit_size );
}
if ( array->capacity == 0 )
{
array->capacity = 2;
array->data = BJAM_MALLOC( array->capacity * unit_size );
}
else if ( array->capacity == array->size )
{
void * new_data;
array->capacity *= 2;
new_data = BJAM_MALLOC( array->capacity * unit_size );
memcpy( new_data, array->data, array->size * unit_size );
BJAM_FREE( array->data );
array->data = new_data;
}
memcpy( (char *)array->data + array->size * unit_size, value, unit_size );
++array->size;
}
#define dynamic_array_push( array, value ) (dynamic_array_push_impl(array, &value, sizeof(value)))
#define dynamic_array_at( type, array, idx ) ( (assert( array->unit_size == sizeof(type) )) , (((type *)(array)->data)[idx]) )
#define dynamic_array_pop( array ) (--(array)->size)
/*
* struct compiler
*/
struct label_info
{
int32_t absolute_position;
struct dynamic_array uses[ 1 ];
};
#define LOOP_INFO_BREAK 0
#define LOOP_INFO_CONTINUE 1
struct loop_info
{
int32_t type;
int32_t label;
int32_t cleanup_depth;
};
struct stored_rule
{
OBJECT * name;
PARSE * parse;
int32_t num_arguments;
struct arg_list * arguments;
int32_t local;
};
typedef struct compiler
{
struct dynamic_array code[ 1 ];
struct dynamic_array constants[ 1 ];
struct dynamic_array labels[ 1 ];
struct dynamic_array rules[ 1 ];
struct dynamic_array actions[ 1 ];
struct dynamic_array cleanups[ 1 ];
struct dynamic_array loop_scopes[ 1 ];
} compiler;
static void compiler_init( compiler * c )
{
dynamic_array_init( c->code );
dynamic_array_init( c->constants );
dynamic_array_init( c->labels );
dynamic_array_init( c->rules );
dynamic_array_init( c->actions );
dynamic_array_init( c->cleanups );
dynamic_array_init( c->loop_scopes );
}
static void compiler_free( compiler * c )
{
int32_t i;
dynamic_array_free( c->actions );
dynamic_array_free( c->rules );
for ( i = 0; i < c->labels->size; ++i )
dynamic_array_free( dynamic_array_at( struct label_info, c->labels, i
).uses );
dynamic_array_free( c->labels );
dynamic_array_free( c->constants );
dynamic_array_free( c->code );
dynamic_array_free( c->cleanups );
dynamic_array_free( c->loop_scopes );
}
static void compile_emit_instruction( compiler * c, instruction instr )
{
dynamic_array_push( c->code, instr );
}
static int32_t compile_new_label( compiler * c )
{
int32_t result = c->labels->size;
struct label_info info;
info.absolute_position = -1;
dynamic_array_init( info.uses );
dynamic_array_push( c->labels, info );
return result;
}
static void compile_set_label( compiler * c, int32_t label )
{
struct label_info * const l = &dynamic_array_at( struct label_info,
c->labels, label );
int32_t const pos = c->code->size;
int32_t i;
assert( l->absolute_position == -1 );
l->absolute_position = pos;
for ( i = 0; i < l->uses->size; ++i )
{
int32_t id = dynamic_array_at( int32_t, l->uses, i );
int32_t offset = (int32_t)( pos - id - 1 );
dynamic_array_at( instruction, c->code, id ).arg = offset;
}
}
static void compile_emit( compiler * c, uint32_t op_code, int32_t arg )
{
instruction instr;
instr.op_code = op_code;
instr.arg = arg;
compile_emit_instruction( c, instr );
}
static void compile_emit_branch( compiler * c, uint32_t op_code, int32_t label )
{
struct label_info * const l = &dynamic_array_at( struct label_info,
c->labels, label );
int32_t const pos = c->code->size;
instruction instr;
instr.op_code = op_code;
if ( l->absolute_position == -1 )
{
instr.arg = 0;
dynamic_array_push( l->uses, pos );
}
else
instr.arg = (int32_t)( l->absolute_position - pos - 1 );
compile_emit_instruction( c, instr );
}
static int32_t compile_emit_constant( compiler * c, OBJECT * value )
{
OBJECT * copy = object_copy( value );
dynamic_array_push( c->constants, copy );
return c->constants->size - 1;
}
static void compile_push_cleanup( compiler * c, uint32_t op_code, int32_t arg )
{
instruction instr;
instr.op_code = op_code;
instr.arg = arg;
dynamic_array_push( c->cleanups, instr );
}
static void compile_pop_cleanup( compiler * c )
{
dynamic_array_pop( c->cleanups );
}
static void compile_emit_cleanups( compiler * c, int32_t end )
{
int32_t i;
for ( i = c->cleanups->size; --i >= end; )
{
compile_emit_instruction( c, dynamic_array_at( instruction, c->cleanups, i ) );
}
}
static void compile_emit_loop_jump( compiler * c, int32_t type )
{
struct loop_info * info = NULL;
int32_t i;
for ( i = c->loop_scopes->size; --i >= 0; )
{
struct loop_info * elem = &dynamic_array_at( struct loop_info, c->loop_scopes, i );
if ( elem->type == type )
{
info = elem;
break;
}
}
if ( info == NULL )
{
printf( "warning: ignoring break statement used outside of loop\n" );
return;
}
compile_emit_cleanups( c, info->cleanup_depth );
compile_emit_branch( c, INSTR_JUMP, info->label );
}
static void compile_push_break_scope( compiler * c, int32_t label )
{
struct loop_info info;
info.type = LOOP_INFO_BREAK;
info.label = label;
info.cleanup_depth = c->cleanups->size;
dynamic_array_push( c->loop_scopes, info );
}
static void compile_push_continue_scope( compiler * c, int32_t label )
{
struct loop_info info;
info.type = LOOP_INFO_CONTINUE;
info.label = label;
info.cleanup_depth = c->cleanups->size;
dynamic_array_push( c->loop_scopes, info );
}
static void compile_pop_break_scope( compiler * c )
{
assert( c->loop_scopes->size > 0 );
assert( dynamic_array_at( struct loop_info, c->loop_scopes, c->loop_scopes->size - 1 ).type == LOOP_INFO_BREAK );
dynamic_array_pop( c->loop_scopes );
}
static void compile_pop_continue_scope( compiler * c )
{
assert( c->loop_scopes->size > 0 );
assert( dynamic_array_at( struct loop_info, c->loop_scopes, c->loop_scopes->size - 1 ).type == LOOP_INFO_CONTINUE );
dynamic_array_pop( c->loop_scopes );
}
static int32_t compile_emit_rule( compiler * c, OBJECT * name, PARSE * parse,
int32_t num_arguments, struct arg_list * arguments, int32_t local )
{
struct stored_rule rule;
rule.name = object_copy( name );
rule.parse = parse;
rule.num_arguments = num_arguments;
rule.arguments = arguments;
rule.local = local;
dynamic_array_push( c->rules, rule );
return (int32_t)( c->rules->size - 1 );
}
static int32_t compile_emit_actions( compiler * c, PARSE * parse )
{
SUBACTION a;
a.name = object_copy( parse->string );
a.command = function_compile_actions( object_str( parse->string1 ),
parse->file, parse->line );
a.flags = parse->num;
dynamic_array_push( c->actions, a );
return (int32_t)( c->actions->size - 1 );
}
static JAM_FUNCTION * compile_to_function( compiler * c )
{
JAM_FUNCTION * const result = (JAM_FUNCTION*)BJAM_MALLOC( sizeof( JAM_FUNCTION ) );
int32_t i;
result->base.type = FUNCTION_JAM;
result->base.reference_count = 1;
result->base.formal_arguments = 0;
result->base.num_formal_arguments = 0;
result->base.rulename = 0;
result->code_size = c->code->size;
result->code = (instruction*)BJAM_MALLOC( c->code->size * sizeof( instruction ) );
memcpy( result->code, c->code->data, c->code->size * sizeof( instruction ) );
result->constants = (OBJECT**)BJAM_MALLOC( c->constants->size * sizeof( OBJECT * ) );
if ( c->constants->size != 0 )
memcpy( result->constants, c->constants->data,
c->constants->size * sizeof( OBJECT * ) );
result->num_constants = c->constants->size;
result->num_subfunctions = c->rules->size;
result->functions = (SUBFUNCTION*)BJAM_MALLOC( c->rules->size * sizeof( SUBFUNCTION ) );
for ( i = 0; i < c->rules->size; ++i )
{
struct stored_rule * const rule = &dynamic_array_at( struct stored_rule,
c->rules, i );
result->functions[ i ].name = rule->name;
result->functions[ i ].code = function_compile( rule->parse );
result->functions[ i ].code->num_formal_arguments = rule->num_arguments;
result->functions[ i ].code->formal_arguments = rule->arguments;
result->functions[ i ].local = rule->local;
}
result->actions = (SUBACTION*)BJAM_MALLOC( c->actions->size * sizeof( SUBACTION ) );
if ( c->actions->size != 0 )
memcpy( result->actions, c->actions->data,
c->actions->size * sizeof( SUBACTION ) );
result->num_subactions = c->actions->size;
result->generic = 0;
result->file = 0;
result->line = -1;
return result;
}
/*
* Parsing of variable expansions
*/
typedef struct VAR_PARSE_GROUP
{
struct dynamic_array elems[ 1 ];
} VAR_PARSE_GROUP;
typedef struct VAR_PARSE_ACTIONS
{
struct dynamic_array elems[ 1 ];
} VAR_PARSE_ACTIONS;
#define VAR_PARSE_TYPE_VAR 0
#define VAR_PARSE_TYPE_STRING 1
#define VAR_PARSE_TYPE_FILE 2
typedef struct _var_parse
{
int32_t type; /* string, variable or file */
} VAR_PARSE;
typedef struct
{
VAR_PARSE base;
VAR_PARSE_GROUP * name;
VAR_PARSE_GROUP * subscript;
struct dynamic_array modifiers[ 1 ];
} VAR_PARSE_VAR;
typedef struct
{
VAR_PARSE base;
OBJECT * s;
} VAR_PARSE_STRING;
static void var_parse_free( VAR_PARSE * );
static std::string var_parse_to_string( VAR_PARSE_STRING * string, bool debug = false );
static std::string var_parse_to_string( VAR_PARSE_GROUP * group, bool debug = false );
static std::string var_parse_to_string( VAR_PARSE_VAR const * parse, bool debug = false );
static std::string var_parse_to_string( VAR_PARSE_STRING * string, bool debug )
{
std::string result;
if ( debug ) result += "'";
result += object_str( string->s ) ? object_str( string->s ) : "";
if ( debug ) result += "'";
return result;
}
static std::string var_parse_to_string( VAR_PARSE_GROUP * group, bool debug )
{
std::string result;
if ( debug ) result += "[";
for ( int32_t i = 0; i < group->elems->size; ++i )
{
switch ( dynamic_array_at( VAR_PARSE *, group->elems, i )->type )
{
case VAR_PARSE_TYPE_VAR:
result += var_parse_to_string( dynamic_array_at( VAR_PARSE_VAR *, group->elems, i ), debug );
break;
case VAR_PARSE_TYPE_STRING:
result += var_parse_to_string( dynamic_array_at( VAR_PARSE_STRING *, group->elems, i ), debug );
break;
}
}
if ( debug ) result += "[";
return result;
}
static std::string var_parse_to_string( VAR_PARSE_VAR const * parse, bool debug )
{
std::string result = "$(";
result += var_parse_to_string( parse->name, debug );
if ( parse->subscript )
{
result += "[" + var_parse_to_string( parse->subscript, debug ) + "]";
}
for ( int32_t i = 0; i < parse->modifiers->size; ++i )
{
result += ":" + var_parse_to_string( dynamic_array_at( VAR_PARSE_GROUP *, parse->modifiers, i ), debug );
}
return result + ")";
}
/*
* VAR_PARSE_GROUP
*/
static VAR_PARSE_GROUP * var_parse_group_new()
{
VAR_PARSE_GROUP * const result = (VAR_PARSE_GROUP*)BJAM_MALLOC( sizeof( VAR_PARSE_GROUP ) );
dynamic_array_init( result->elems );
return result;
}
static void var_parse_group_free( VAR_PARSE_GROUP * group )
{
int32_t i;
for ( i = 0; i < group->elems->size; ++i )
var_parse_free( dynamic_array_at( VAR_PARSE *, group->elems, i ) );
dynamic_array_free( group->elems );
BJAM_FREE( group );
}
static void var_parse_group_add( VAR_PARSE_GROUP * group, VAR_PARSE * elem )
{
dynamic_array_push( group->elems, elem );
}
static void var_parse_group_maybe_add_constant( VAR_PARSE_GROUP * group,
char const * start, char const * end )
{
if ( start != end )
{
string buf[ 1 ];
VAR_PARSE_STRING * const value = (VAR_PARSE_STRING *)BJAM_MALLOC(
sizeof(VAR_PARSE_STRING) );
value->base.type = VAR_PARSE_TYPE_STRING;
string_new( buf );
string_append_range( buf, start, end );
value->s = object_new( buf->value );
string_free( buf );
var_parse_group_add( group, (VAR_PARSE *)value );
}
}
VAR_PARSE_STRING * var_parse_group_as_literal( VAR_PARSE_GROUP * group )
{
if ( group->elems->size == 1 )
{
VAR_PARSE * result = dynamic_array_at( VAR_PARSE *, group->elems, 0 );
if ( result->type == VAR_PARSE_TYPE_STRING )
return (VAR_PARSE_STRING *)result;
}
return 0;
}
/*
* VAR_PARSE_ACTIONS
*/
static VAR_PARSE_ACTIONS * var_parse_actions_new()
{
VAR_PARSE_ACTIONS * const result = (VAR_PARSE_ACTIONS *)BJAM_MALLOC(
sizeof(VAR_PARSE_ACTIONS) );
dynamic_array_init( result->elems );
return result;
}
static void var_parse_actions_free( VAR_PARSE_ACTIONS * actions )
{
int32_t i;
for ( i = 0; i < actions->elems->size; ++i )
var_parse_group_free( dynamic_array_at( VAR_PARSE_GROUP *,
actions->elems, i ) );
dynamic_array_free( actions->elems );
BJAM_FREE( actions );
}
/*
* VAR_PARSE_VAR
*/
static VAR_PARSE_VAR * var_parse_var_new()
{
VAR_PARSE_VAR * result = (VAR_PARSE_VAR*)BJAM_MALLOC( sizeof( VAR_PARSE_VAR ) );
result->base.type = VAR_PARSE_TYPE_VAR;
result->name = var_parse_group_new();
result->subscript = 0;
dynamic_array_init( result->modifiers );
return result;
}
static void var_parse_var_free( VAR_PARSE_VAR * var )
{
int32_t i;
var_parse_group_free( var->name );
if ( var->subscript )
var_parse_group_free( var->subscript );
for ( i = 0; i < var->modifiers->size; ++i )
var_parse_group_free( dynamic_array_at( VAR_PARSE_GROUP *,
var->modifiers, i ) );
dynamic_array_free( var->modifiers );
BJAM_FREE( var );
}
static VAR_PARSE_GROUP * var_parse_var_new_modifier( VAR_PARSE_VAR * var )
{
VAR_PARSE_GROUP * result = var_parse_group_new();
dynamic_array_push( var->modifiers, result );
return result;
}
static int32_t var_parse_var_mod_index( VAR_PARSE_VAR const * var , char m)
{
for ( int32_t i = 0; i < var->modifiers->size; ++i )
{
VAR_PARSE_GROUP * mod = dynamic_array_at( VAR_PARSE_GROUP *, var->modifiers, i );
VAR_PARSE_STRING * mod_val = dynamic_array_at( VAR_PARSE_STRING *, mod->elems, 0 );
const char * mod_str = object_str(mod_val->s);
if (mod_str && mod_str[0] == m)
{
return i;
}
}
return -1;
}
/*
* VAR_PARSE_STRING
*/
static void var_parse_string_free( VAR_PARSE_STRING * string )
{
object_free( string->s );
BJAM_FREE( string );
}
/*
* VAR_PARSE
*/
static void var_parse_free( VAR_PARSE * parse )
{
switch ( parse->type )
{
case VAR_PARSE_TYPE_VAR:
case VAR_PARSE_TYPE_FILE:
var_parse_var_free( (VAR_PARSE_VAR *)parse );
break;
case VAR_PARSE_TYPE_STRING:
var_parse_string_free( (VAR_PARSE_STRING *)parse );
break;
default:
assert( !"Invalid type" );
}
}
/*
* Compile VAR_PARSE
*/
static void var_parse_group_compile( VAR_PARSE_GROUP const * parse,
compiler * c );
static void var_parse_var_compile( VAR_PARSE_VAR const * parse, compiler * c )
{
int32_t expand_name = 0;
int32_t is_get_grist = 0;
int32_t has_modifiers = 0;
/* Special case common modifiers */
if ( parse->modifiers->size == 1 )
{
VAR_PARSE_GROUP * mod = dynamic_array_at( VAR_PARSE_GROUP *, parse->modifiers, 0 );
if ( mod->elems->size == 1 )
{
VAR_PARSE * mod1 = dynamic_array_at( VAR_PARSE *, mod->elems, 0 );
if ( mod1->type == VAR_PARSE_TYPE_STRING )
{
OBJECT * s = ( (VAR_PARSE_STRING *)mod1 )->s;
if ( ! strcmp ( object_str( s ), "G" ) )
{
is_get_grist = 1;
}
}
}
}
/* If there are modifiers, emit them in reverse order. */
if ( parse->modifiers->size > 0 && !is_get_grist )
{
int32_t i;
has_modifiers = 1;
for ( i = 0; i < parse->modifiers->size; ++i )
var_parse_group_compile( dynamic_array_at( VAR_PARSE_GROUP *,
parse->modifiers, parse->modifiers->size - i - 1 ), c );
}
/* If there is a subscript, emit it. */
if ( parse->subscript )
var_parse_group_compile( parse->subscript, c );
/* If the variable name is empty, look it up. */
if ( parse->name->elems->size == 0 )
compile_emit( c, INSTR_PUSH_VAR, compile_emit_constant( c,
constant_empty ) );
/* If the variable name does not need to be expanded, look it up. */
else if ( parse->name->elems->size == 1 && dynamic_array_at( VAR_PARSE *,
parse->name->elems, 0 )->type == VAR_PARSE_TYPE_STRING )
{
OBJECT * const name = ( (VAR_PARSE_STRING *)dynamic_array_at(
VAR_PARSE *, parse->name->elems, 0 ) )->s;
int32_t const idx = get_argument_index( object_str( name ) );
if ( idx != -1 )
compile_emit( c, INSTR_PUSH_ARG, idx );
else
compile_emit( c, INSTR_PUSH_VAR, compile_emit_constant( c, name ) );
}
/* Otherwise, push the var names and use the group instruction. */
else
{
var_parse_group_compile( parse->name, c );
expand_name = 1;
}
/** Select the instruction for expanding the variable. */
if ( !has_modifiers && !parse->subscript && !expand_name )
;
else if ( !has_modifiers && !parse->subscript && expand_name )
compile_emit( c, INSTR_PUSH_GROUP, 0 );
else if ( !has_modifiers && parse->subscript && !expand_name )
compile_emit( c, INSTR_APPLY_INDEX, 0 );
else if ( !has_modifiers && parse->subscript && expand_name )
compile_emit( c, INSTR_APPLY_INDEX_GROUP, 0 );
else if ( has_modifiers && !parse->subscript && !expand_name )
compile_emit( c, INSTR_APPLY_MODIFIERS, parse->modifiers->size );
else if ( has_modifiers && !parse->subscript && expand_name )
compile_emit( c, INSTR_APPLY_MODIFIERS_GROUP, parse->modifiers->size );
else if ( has_modifiers && parse->subscript && !expand_name )
compile_emit( c, INSTR_APPLY_INDEX_MODIFIERS, parse->modifiers->size );
else if ( has_modifiers && parse->subscript && expand_name )
compile_emit( c, INSTR_APPLY_INDEX_MODIFIERS_GROUP,
parse->modifiers->size );
/* Now apply any special modifiers */
if ( is_get_grist )
{
compile_emit( c, INSTR_GET_GRIST, 0 );
}
}
static void var_parse_string_compile( VAR_PARSE_STRING const * parse,
compiler * c )
{
compile_emit( c, INSTR_PUSH_CONSTANT, compile_emit_constant( c, parse->s )
);
}
static void parse_var_string( char const * first, char const * last,
struct dynamic_array * out );
static void var_parse_file_compile( VAR_PARSE_VAR const * parse, compiler * c )
{
std::string var = var_parse_to_string( parse, true );
int32_t empty_mod_index = var_parse_var_mod_index( parse, 'E' );
int32_t grist_mod_index = var_parse_var_mod_index( parse, 'G' );
int32_t modifier_count = 0;
// Push the contents, aka the edit modifier value.
{
assert( empty_mod_index >= 0 );
// We reparse the edit modifier as we do teh expansion differently than
// regular var expansion.
std::string contents_val = var_parse_to_string(
dynamic_array_at(
VAR_PARSE_GROUP *, parse->modifiers, empty_mod_index ), false );
dynamic_array contents_dyn_array;
dynamic_array_init( &contents_dyn_array );
parse_var_string(
contents_val.c_str() + 2, contents_val.c_str() + contents_val.size(),
&contents_dyn_array );
for ( int32_t i = contents_dyn_array.size - 1; i >= 0; --i )
{
auto group = dynamic_array_at(
VAR_PARSE_GROUP *, ( &contents_dyn_array ), i );
var_parse_group_compile( group, c );
var_parse_group_free( group );
}
dynamic_array_free( &contents_dyn_array );
compile_emit( c, INSTR_APPEND_STRINGS, contents_dyn_array.size );
}
// If there are modifiers, emit them in reverse order.
if ( parse->modifiers->size > 0 )
{
for ( int32_t i = parse->modifiers->size - 1; i >= 0; --i )
{
// Skip special modifiers.
if ( i == empty_mod_index || i == grist_mod_index ) continue;
modifier_count += 1;
var_parse_group_compile(
dynamic_array_at( VAR_PARSE_GROUP *, parse->modifiers, i ), c );
}
}
// Push the filename, aka var name.
var_parse_group_compile( parse->name, c );
// This instruction applies the modifiers and writes out the file and fills
// in the file name.
compile_emit( c, INSTR_WRITE_FILE, modifier_count );
}
static void var_parse_compile( VAR_PARSE const * parse, compiler * c )
{
switch ( parse->type )
{
case VAR_PARSE_TYPE_VAR:
var_parse_var_compile( (VAR_PARSE_VAR const *)parse, c );
break;
case VAR_PARSE_TYPE_STRING:
var_parse_string_compile( (VAR_PARSE_STRING const *)parse, c );
break;
case VAR_PARSE_TYPE_FILE:
var_parse_file_compile( (VAR_PARSE_VAR const *)parse, c );
break;
default:
assert( !"Unknown var parse type." );
}
}
static void var_parse_group_compile( VAR_PARSE_GROUP const * parse, compiler * c
)
{
/* Emit the elements in reverse order. */
int32_t i;
for ( i = 0; i < parse->elems->size; ++i )
var_parse_compile( dynamic_array_at( VAR_PARSE *, parse->elems,
parse->elems->size - i - 1 ), c );
/* If there are no elements, emit an empty string. */
if ( parse->elems->size == 0 )
compile_emit( c, INSTR_PUSH_CONSTANT, compile_emit_constant( c,
constant_empty ) );
/* If there is more than one element, combine them. */
if ( parse->elems->size > 1 )
compile_emit( c, INSTR_COMBINE_STRINGS, parse->elems->size );
}
static void var_parse_actions_compile( VAR_PARSE_ACTIONS const * actions,
compiler * c )
{
int32_t i;
for ( i = 0; i < actions->elems->size; ++i )
var_parse_group_compile( dynamic_array_at( VAR_PARSE_GROUP *,
actions->elems, actions->elems->size - i - 1 ), c );
compile_emit( c, INSTR_OUTPUT_STRINGS, actions->elems->size );
}
/*
* Parse VAR_PARSE_VAR
*/
static VAR_PARSE * parse_variable( char const * * string );
static int32_t try_parse_variable( char const * * s_, char const * * string,
VAR_PARSE_GROUP * out );
static void balance_parentheses( char const * * s_, char const * * string,
VAR_PARSE_GROUP * out );
static void parse_var_string( char const * first, char const * last,
struct dynamic_array * out );
/*
* Parses a string that can contain variables to expand.
*/
static VAR_PARSE_GROUP * parse_expansion( char const * * string )
{
VAR_PARSE_GROUP * result = var_parse_group_new();
char const * s = *string;
for ( ; ; )
{
if ( try_parse_variable( &s, string, result ) ) {}
else if ( s[ 0 ] == '\0' )
{
var_parse_group_maybe_add_constant( result, *string, s );
return result;
}
else
++s;
}
}
static VAR_PARSE_ACTIONS * parse_actions( char const * string )
{
VAR_PARSE_ACTIONS * const result = var_parse_actions_new();
parse_var_string( string, string + strlen( string ), result->elems );
return result;
}
/*
* Checks whether the string a *s_ starts with a variable expansion "$(".
* *string should point to the first unemitted character before *s. If *s_
* starts with variable expansion, appends elements to out up to the closing
* ")", and adjusts *s_ and *string to point to next character. Returns 1 if s_
* starts with a variable, 0 otherwise.
*/
static int32_t try_parse_variable( char const * * s_, char const * * string,
VAR_PARSE_GROUP * out )
{
char const * s = *s_;
if ( s[ 0 ] == '$' && s[ 1 ] == '(' )
{
var_parse_group_maybe_add_constant( out, *string, s );
s += 2;
var_parse_group_add( out, parse_variable( &s ) );
*string = s;
*s_ = s;
return 1;
}
if ( s[ 0 ] == '@' && s[ 1 ] == '(' )
{
var_parse_group_maybe_add_constant( out, *string, s );
s += 2;
VAR_PARSE_VAR *vp = (VAR_PARSE_VAR*)parse_variable( &s );
/* We at least need the empty (:E) modifier. */
if (var_parse_var_mod_index(vp, 'E') >= 0)
{
vp->base.type = VAR_PARSE_TYPE_FILE;
var_parse_group_add( out, (VAR_PARSE*)vp );
*string = s;
*s_ = s;
return 1;
}
else
{
var_parse_var_free( vp );
}
}
return 0;
}
static char const * current_file = "";
static int32_t current_line;
static void parse_error( char const * message )
{
out_printf( "%s:%d: %s\n", current_file, current_line, message );
}
/*
* Parses a single variable up to the closing ")" and adjusts *string to point
* to the next character. *string should point to the character immediately
* after the initial "$(".
*/
static VAR_PARSE * parse_variable( char const * * string )
{
VAR_PARSE_VAR * const result = var_parse_var_new();
VAR_PARSE_GROUP * const name = result->name;
char const * s = *string;
for ( ; ; )
{
if ( try_parse_variable( &s, string, name ) ) {}
else if ( s[ 0 ] == ':' )
{
VAR_PARSE_GROUP * mod;
var_parse_group_maybe_add_constant( name, *string, s );
++s;
*string = s;
mod = var_parse_var_new_modifier( result );
for ( ; ; )
{
if ( try_parse_variable( &s, string, mod ) ) {}
else if ( s[ 0 ] == ')' )
{
var_parse_group_maybe_add_constant( mod, *string, s );
*string = ++s;
return (VAR_PARSE *)result;
}
else if ( s[ 0 ] == '(' )
{
++s;
balance_parentheses( &s, string, mod );
}
else if ( s[ 0 ] == ':' )
{
var_parse_group_maybe_add_constant( mod, *string, s );
*string = ++s;
mod = var_parse_var_new_modifier( result );
}
else if ( s[ 0 ] == '[' )
{
parse_error("unexpected subscript");
++s;
}
else if ( s[ 0 ] == '\0' )
{
parse_error( "unbalanced parentheses" );
var_parse_group_maybe_add_constant( mod, *string, s );
*string = s;
return (VAR_PARSE *)result;
}
else
++s;
}
}
else if ( s[ 0 ] == '[' )
{
VAR_PARSE_GROUP * subscript = var_parse_group_new();
result->subscript = subscript;
var_parse_group_maybe_add_constant( name, *string, s );
*string = ++s;
for ( ; ; )
{
if ( try_parse_variable( &s, string, subscript ) ) {}
else if ( s[ 0 ] == ']' )
{
var_parse_group_maybe_add_constant( subscript, *string, s );
*string = ++s;
if ( s[ 0 ] != ')' && s[ 0 ] != ':' && s[ 0 ] != '\0' )
parse_error( "unexpected text following []" );
break;
}
else if ( isdigit( s[ 0 ] ) || s[ 0 ] == '-' )
{
++s;
}
else if ( s[ 0 ] == '\0' )
{
parse_error( "malformed subscript" );
break;
}
else
{
parse_error( "malformed subscript" );
++s;
}
}
}
else if ( s[ 0 ] == ')' )
{
var_parse_group_maybe_add_constant( name, *string, s );
*string = ++s;
return (VAR_PARSE *)result;
}
else if ( s[ 0 ] == '(' )
{
++s;
balance_parentheses( &s, string, name );
}
else if ( s[ 0 ] == '\0' )
{
parse_error( "unbalanced parentheses" );
var_parse_group_maybe_add_constant( name, *string, s );
*string = s;
return (VAR_PARSE *)result;
}
else
++s;
}
}
static void parse_var_string( char const * first, char const * last,
struct dynamic_array * out )
{
char const * saved = first;
while ( first != last )
{
/* Handle whitespace. */
while ( first != last && isspace( *first ) ) ++first;
if ( saved != first )
{
VAR_PARSE_GROUP * const group = var_parse_group_new();
var_parse_group_maybe_add_constant( group, saved, first );
saved = first;
dynamic_array_push( out, group );
}
if ( first == last ) break;
/* Handle non-whitespace */
{
VAR_PARSE_GROUP * group = var_parse_group_new();
for ( ; ; )
{
if ( first == last || isspace( *first ) )
{
var_parse_group_maybe_add_constant( group, saved, first );
saved = first;
break;
}
if ( try_parse_variable( &first, &saved, group ) )
assert( first <= last );
else
++first;
}
dynamic_array_push( out, group );
}
}
}
/*
* Given that *s_ points to the character after a "(", parses up to the matching
* ")". *string should point to the first unemitted character before *s_.
*
* When the function returns, *s_ will point to the character after the ")", and
* *string will point to the first unemitted character before *s_. The range
* from *string to *s_ does not contain any variables that need to be expanded.
*/
void balance_parentheses( char const * * s_, char const * * string,
VAR_PARSE_GROUP * out)
{
int32_t depth = 1;
char const * s = *s_;
for ( ; ; )
{
if ( try_parse_variable( &s, string, out ) ) { }
else if ( s[ 0 ] == ':' || s[ 0 ] == '[' )
{
parse_error( "unbalanced parentheses" );
++s;
}
else if ( s[ 0 ] == '\0' )
{
parse_error( "unbalanced parentheses" );
break;
}
else if ( s[ 0 ] == ')' )
{
++s;
if ( --depth == 0 ) break;
}
else if ( s[ 0 ] == '(' )
{
++depth;
++s;
}
else
++s;
}
*s_ = s;
}
/*
* Main compile.
*/
#define RESULT_STACK 0
#define RESULT_RETURN 1
#define RESULT_NONE 2
static void compile_parse( PARSE * parse, compiler * c, int32_t result_location );
static struct arg_list * arg_list_compile( PARSE * parse, int32_t * num_arguments );
static void compile_condition( PARSE * parse, compiler * c, int32_t branch_true, int32_t label )
{
assert( parse->type == PARSE_EVAL );
switch ( parse->num )
{
case EXPR_EXISTS:
compile_parse( parse->left, c, RESULT_STACK );
if ( branch_true )
compile_emit_branch( c, INSTR_JUMP_NOT_EMPTY, label );
else
compile_emit_branch( c, INSTR_JUMP_EMPTY, label );
break;
case EXPR_EQUALS:
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
if ( branch_true )
compile_emit_branch( c, INSTR_JUMP_EQ, label );
else
compile_emit_branch( c, INSTR_JUMP_NE, label );
break;
case EXPR_NOTEQ:
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
if ( branch_true )
compile_emit_branch( c, INSTR_JUMP_NE, label );
else
compile_emit_branch( c, INSTR_JUMP_EQ, label );
break;
case EXPR_LESS:
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
if ( branch_true )
compile_emit_branch( c, INSTR_JUMP_LT, label );
else
compile_emit_branch( c, INSTR_JUMP_GE, label );
break;
case EXPR_LESSEQ:
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
if ( branch_true )
compile_emit_branch( c, INSTR_JUMP_LE, label );
else
compile_emit_branch( c, INSTR_JUMP_GT, label );
break;
case EXPR_MORE:
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
if ( branch_true )
compile_emit_branch( c, INSTR_JUMP_GT, label );
else
compile_emit_branch( c, INSTR_JUMP_LE, label );
break;
case EXPR_MOREEQ:
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
if ( branch_true )
compile_emit_branch( c, INSTR_JUMP_GE, label );
else
compile_emit_branch( c, INSTR_JUMP_LT, label );
break;
case EXPR_IN:
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
if ( branch_true )
compile_emit_branch( c, INSTR_JUMP_IN, label );
else
compile_emit_branch( c, INSTR_JUMP_NOT_IN, label );
break;
case EXPR_AND:
if ( branch_true )
{
int32_t f = compile_new_label( c );
compile_condition( parse->left, c, 0, f );
compile_condition( parse->right, c, 1, label );
compile_set_label( c, f );
}
else
{
compile_condition( parse->left, c, 0, label );
compile_condition( parse->right, c, 0, label );
}
break;
case EXPR_OR:
if ( branch_true )
{
compile_condition( parse->left, c, 1, label );
compile_condition( parse->right, c, 1, label );
}
else
{
int32_t t = compile_new_label( c );
compile_condition( parse->left, c, 1, t );
compile_condition( parse->right, c, 0, label );
compile_set_label( c, t );
}
break;
case EXPR_NOT:
compile_condition( parse->left, c, !branch_true, label );
break;
}
}
static void adjust_result( compiler * c, int32_t actual_location,
int32_t desired_location )
{
if ( actual_location == desired_location )
;
else if ( actual_location == RESULT_STACK && desired_location == RESULT_RETURN )
compile_emit( c, INSTR_SET_RESULT, 0 );
else if ( actual_location == RESULT_STACK && desired_location == RESULT_NONE )
compile_emit( c, INSTR_POP, 0 );
else if ( actual_location == RESULT_RETURN && desired_location == RESULT_STACK )
compile_emit( c, INSTR_PUSH_RESULT, 0 );
else if ( actual_location == RESULT_RETURN && desired_location == RESULT_NONE )
;
else if ( actual_location == RESULT_NONE && desired_location == RESULT_STACK )
compile_emit( c, INSTR_PUSH_EMPTY, 0 );
else if ( actual_location == RESULT_NONE && desired_location == RESULT_RETURN )
{
compile_emit( c, INSTR_PUSH_EMPTY, 0 );
compile_emit( c, INSTR_SET_RESULT, 0 );
}
else
assert( !"invalid result location" );
}
static void compile_append_chain( PARSE * parse, compiler * c )
{
assert( parse->type == PARSE_APPEND );
if ( parse->left->type == PARSE_NULL )
compile_parse( parse->right, c, RESULT_STACK );
else
{
if ( parse->left->type == PARSE_APPEND )
compile_append_chain( parse->left, c );
else
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
compile_emit( c, INSTR_PUSH_APPEND, 0 );
}
}
static void compile_emit_debug(compiler * c, int32_t line)
{
#ifdef JAM_DEBUGGER
if ( debug_is_debugging() )
compile_emit( c, INSTR_DEBUG_LINE, line );
#endif
}
static void compile_parse( PARSE * parse, compiler * c, int32_t result_location )
{
compile_emit_debug(c, parse->line);
if ( parse->type == PARSE_APPEND )
{
compile_append_chain( parse, c );
adjust_result( c, RESULT_STACK, result_location );
}
else if ( parse->type == PARSE_EVAL )
{
/* FIXME: This is only needed because of the bizarre parsing of
* conditions.
*/
if ( parse->num == EXPR_EXISTS )
compile_parse( parse->left, c, result_location );
else
{
int32_t f = compile_new_label( c );
int32_t end = compile_new_label( c );
out_printf( "%s:%d: Conditional used as list (check operator "
"precedence).\n", object_str( parse->file ), parse->line );
/* Emit the condition */
compile_condition( parse, c, 0, f );
compile_emit( c, INSTR_PUSH_CONSTANT, compile_emit_constant( c,
constant_true ) );
compile_emit_branch( c, INSTR_JUMP, end );
compile_set_label( c, f );
compile_emit( c, INSTR_PUSH_EMPTY, 0 );
compile_set_label( c, end );
adjust_result( c, RESULT_STACK, result_location );
}
}
else if ( parse->type == PARSE_FOREACH )
{
int32_t var = compile_emit_constant( c, parse->string );
int32_t top = compile_new_label( c );
int32_t end = compile_new_label( c );
int32_t continue_ = compile_new_label( c );
/*
* Evaluate the list.
*/
compile_parse( parse->left, c, RESULT_STACK );
/* Localize the loop variable */
if ( parse->num )
{
compile_emit( c, INSTR_PUSH_EMPTY, 0 );
compile_emit( c, INSTR_PUSH_LOCAL, var );
compile_emit( c, INSTR_SWAP, 1 );
compile_push_cleanup( c, INSTR_POP_LOCAL, var );
}
compile_emit( c, INSTR_FOR_INIT, 0 );
compile_set_label( c, top );
compile_emit_branch( c, INSTR_FOR_LOOP, end );
compile_emit_debug( c, parse->line );
compile_emit( c, INSTR_SET, var );
compile_push_break_scope( c, end );
compile_push_cleanup( c, INSTR_FOR_POP, 0 );
compile_push_continue_scope( c, continue_ );
/* Run the loop body */
compile_parse( parse->right, c, RESULT_NONE );
compile_pop_continue_scope( c );
compile_pop_cleanup( c );
compile_pop_break_scope( c );
compile_set_label( c, continue_ );
compile_emit_branch( c, INSTR_JUMP, top );
compile_set_label( c, end );
if ( parse->num )
{
compile_pop_cleanup( c );
compile_emit( c, INSTR_POP_LOCAL, var );
}
adjust_result( c, RESULT_NONE, result_location);
}
else if ( parse->type == PARSE_IF )
{
int32_t f = compile_new_label( c );
/* Emit the condition */
compile_condition( parse->left, c, 0, f );
/* Emit the if block */
compile_parse( parse->right, c, result_location );
if ( parse->third->type != PARSE_NULL || result_location != RESULT_NONE )
{
/* Emit the else block */
int32_t end = compile_new_label( c );
compile_emit_branch( c, INSTR_JUMP, end );
compile_set_label( c, f );
compile_parse( parse->third, c, result_location );
compile_set_label( c, end );
}
else
compile_set_label( c, f );
}
else if ( parse->type == PARSE_WHILE )
{
int32_t nested_result = result_location == RESULT_NONE
? RESULT_NONE
: RESULT_RETURN;
int32_t test = compile_new_label( c );
int32_t top = compile_new_label( c );
int32_t end = compile_new_label( c );
/* Make sure that we return an empty list if the loop runs zero times.
*/
adjust_result( c, RESULT_NONE, nested_result );
/* Jump to the loop test. */
compile_emit_branch( c, INSTR_JUMP, test );
compile_set_label( c, top );
/* Emit the loop body. */
compile_push_break_scope( c, end );
compile_push_continue_scope( c, test );
compile_parse( parse->right, c, nested_result );
compile_pop_continue_scope( c );
compile_pop_break_scope( c );
/* Emit the condition. */
compile_set_label( c, test );
compile_condition( parse->left, c, 1, top );
compile_set_label( c, end );
adjust_result( c, nested_result, result_location );
}
else if ( parse->type == PARSE_INCLUDE )
{
compile_parse( parse->left, c, RESULT_STACK );
compile_emit( c, INSTR_INCLUDE, 0 );
compile_emit( c, INSTR_BIND_MODULE_VARIABLES, 0 );
adjust_result( c, RESULT_NONE, result_location );
}
else if ( parse->type == PARSE_MODULE )
{
int32_t const nested_result = result_location == RESULT_NONE
? RESULT_NONE
: RESULT_RETURN;
compile_parse( parse->left, c, RESULT_STACK );
compile_emit( c, INSTR_PUSH_MODULE, 0 );
compile_push_cleanup( c, INSTR_POP_MODULE, 0 );
compile_parse( parse->right, c, nested_result );
compile_pop_cleanup( c );
compile_emit( c, INSTR_POP_MODULE, 0 );
adjust_result( c, nested_result, result_location );
}
else if ( parse->type == PARSE_CLASS )
{
/* Evaluate the class name. */
compile_parse( parse->left->right, c, RESULT_STACK );
/* Evaluate the base classes. */
if ( parse->left->left )
compile_parse( parse->left->left->right, c, RESULT_STACK );
else
compile_emit( c, INSTR_PUSH_EMPTY, 0 );
compile_emit( c, INSTR_CLASS, 0 );
compile_push_cleanup( c, INSTR_POP_MODULE, 0 );
compile_parse( parse->right, c, RESULT_NONE );
compile_emit( c, INSTR_BIND_MODULE_VARIABLES, 0 );
compile_pop_cleanup( c );
compile_emit( c, INSTR_POP_MODULE, 0 );
adjust_result( c, RESULT_NONE, result_location );
}
else if ( parse->type == PARSE_LIST )
{
OBJECT * const o = parse->string;
char const * s = object_str( o );
VAR_PARSE_GROUP * group;
current_file = object_str( parse->file );
current_line = parse->line;
group = parse_expansion( &s );
var_parse_group_compile( group, c );
var_parse_group_free( group );
adjust_result( c, RESULT_STACK, result_location );
}
else if ( parse->type == PARSE_LOCAL )
{
int32_t nested_result = result_location == RESULT_NONE
? RESULT_NONE
: RESULT_RETURN;
/* This should be left recursive group of compile_appends. */
PARSE * vars = parse->left;
/* Special case an empty list of vars */
if ( vars->type == PARSE_NULL )
{
compile_parse( parse->right, c, RESULT_NONE );
compile_parse( parse->third, c, result_location );
nested_result = result_location;
}
/* Check whether there is exactly one variable with a constant name. */
else if ( vars->left->type == PARSE_NULL &&
vars->right->type == PARSE_LIST )
{
char const * s = object_str( vars->right->string );
VAR_PARSE_GROUP * group;
current_file = object_str( parse->file );
current_line = parse->line;
group = parse_expansion( &s );
if ( group->elems->size == 1 && dynamic_array_at( VAR_PARSE *,
group->elems, 0 )->type == VAR_PARSE_TYPE_STRING )
{
int32_t const name = compile_emit_constant( c, (
(VAR_PARSE_STRING *)dynamic_array_at( VAR_PARSE *,
group->elems, 0 ) )->s );
var_parse_group_free( group );
compile_parse( parse->right, c, RESULT_STACK );
compile_emit_debug(c, parse->line);
compile_emit( c, INSTR_PUSH_LOCAL, name );
compile_push_cleanup( c, INSTR_POP_LOCAL, name );
compile_parse( parse->third, c, nested_result );
compile_pop_cleanup( c );
compile_emit( c, INSTR_POP_LOCAL, name );
}
else
{
var_parse_group_compile( group, c );
var_parse_group_free( group );
compile_parse( parse->right, c, RESULT_STACK );
compile_emit_debug(c, parse->line);
compile_emit( c, INSTR_PUSH_LOCAL_GROUP, 0 );
compile_push_cleanup( c, INSTR_POP_LOCAL_GROUP, 0 );
compile_parse( parse->third, c, nested_result );
compile_pop_cleanup( c );
compile_emit( c, INSTR_POP_LOCAL_GROUP, 0 );
}
}
else
{
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
compile_emit_debug(c, parse->line);
compile_emit( c, INSTR_PUSH_LOCAL_GROUP, 0 );
compile_push_cleanup( c, INSTR_POP_LOCAL_GROUP, 0 );
compile_parse( parse->third, c, nested_result );
compile_pop_cleanup( c );
compile_emit( c, INSTR_POP_LOCAL_GROUP, 0 );
}
adjust_result( c, nested_result, result_location );
}
else if ( parse->type == PARSE_ON )
{
if ( parse->right->type == PARSE_APPEND &&
parse->right->left->type == PARSE_NULL &&
parse->right->right->type == PARSE_LIST )
{
/* [ on $(target) return $(variable) ] */
PARSE * value = parse->right->right;
OBJECT * const o = value->string;
char const * s = object_str( o );
VAR_PARSE_GROUP * group;
OBJECT * varname = 0;
current_file = object_str( value->file );
current_line = value->line;
group = parse_expansion( &s );
if ( group->elems->size == 1 )
{
VAR_PARSE * one = dynamic_array_at( VAR_PARSE *, group->elems, 0 );
if ( one->type == VAR_PARSE_TYPE_VAR )
{
VAR_PARSE_VAR * var = ( VAR_PARSE_VAR * )one;
if ( var->modifiers->size == 0 && !var->subscript && var->name->elems->size == 1 )
{
VAR_PARSE * name = dynamic_array_at( VAR_PARSE *, var->name->elems, 0 );
if ( name->type == VAR_PARSE_TYPE_STRING )
{
varname = ( ( VAR_PARSE_STRING * )name )->s;
}
}
}
}
if ( varname )
{
/* We have one variable with a fixed name and no modifiers. */
compile_parse( parse->left, c, RESULT_STACK );
compile_emit( c, INSTR_GET_ON, compile_emit_constant( c, varname ) );
}
else
{
/* Too complex. Fall back on push/pop. */
int32_t end = compile_new_label( c );
compile_parse( parse->left, c, RESULT_STACK );
compile_emit_branch( c, INSTR_PUSH_ON, end );
compile_push_cleanup( c, INSTR_POP_ON, 0 );
var_parse_group_compile( group, c );
compile_pop_cleanup( c );
compile_emit( c, INSTR_POP_ON, 0 );
compile_set_label( c, end );
}
var_parse_group_free( group );
}
else
{
int32_t end = compile_new_label( c );
compile_parse( parse->left, c, RESULT_STACK );
compile_emit_branch( c, INSTR_PUSH_ON, end );
compile_push_cleanup( c, INSTR_POP_ON, 0 );
compile_parse( parse->right, c, RESULT_STACK );
compile_pop_cleanup( c );
compile_emit( c, INSTR_POP_ON, 0 );
compile_set_label( c, end );
}
adjust_result( c, RESULT_STACK, result_location );
}
else if ( parse->type == PARSE_RULE )
{
PARSE * p;
int32_t n = 0;
VAR_PARSE_GROUP * group;
char const * s = object_str( parse->string );
if ( parse->left->left || parse->left->right->type != PARSE_NULL )
for ( p = parse->left; p; p = p->left )
{
compile_parse( p->right, c, RESULT_STACK );
++n;
}
current_file = object_str( parse->file );
current_line = parse->line;
group = parse_expansion( &s );
if ( group->elems->size == 2 &&
dynamic_array_at( VAR_PARSE *, group->elems, 0 )->type == VAR_PARSE_TYPE_VAR &&
dynamic_array_at( VAR_PARSE *, group->elems, 1 )->type == VAR_PARSE_TYPE_STRING &&
( object_str( ( (VAR_PARSE_STRING *)dynamic_array_at( VAR_PARSE *, group->elems, 1 ) )->s )[ 0 ] == '.' ) )
{
VAR_PARSE_STRING * access = (VAR_PARSE_STRING *)dynamic_array_at( VAR_PARSE *, group->elems, 1 );
OBJECT * member = object_new( object_str( access->s ) + 1 );
/* Emit the object */
var_parse_var_compile( (VAR_PARSE_VAR *)dynamic_array_at( VAR_PARSE *, group->elems, 0 ), c );
var_parse_group_free( group );
compile_emit( c, INSTR_CALL_MEMBER_RULE, n );
compile_emit( c, compile_emit_constant( c, member ), parse->line );
object_free( member );
}
else
{
var_parse_group_compile( group, c );
var_parse_group_free( group );
compile_emit( c, INSTR_CALL_RULE, n );
compile_emit( c, compile_emit_constant( c, parse->string ), parse->line );
}
adjust_result( c, RESULT_STACK, result_location );
}
else if ( parse->type == PARSE_RULES )
{
do compile_parse( parse->left, c, RESULT_NONE );
while ( ( parse = parse->right )->type == PARSE_RULES );
compile_parse( parse, c, result_location );
}
else if ( parse->type == PARSE_SET )
{
PARSE * vars = parse->left;
uint32_t op_code;
uint32_t op_code_group;
switch ( parse->num )
{
case ASSIGN_APPEND: op_code = INSTR_APPEND; op_code_group = INSTR_APPEND_GROUP; break;
case ASSIGN_DEFAULT: op_code = INSTR_DEFAULT; op_code_group = INSTR_DEFAULT_GROUP; break;
default: op_code = INSTR_SET; op_code_group = INSTR_SET_GROUP; break;
}
/* Check whether there is exactly one variable with a constant name. */
if ( vars->type == PARSE_LIST )
{
char const * s = object_str( vars->string );
VAR_PARSE_GROUP * group;
current_file = object_str( parse->file );
current_line = parse->line;
group = parse_expansion( &s );
if ( group->elems->size == 1 && dynamic_array_at( VAR_PARSE *,
group->elems, 0 )->type == VAR_PARSE_TYPE_STRING )
{
int32_t const name = compile_emit_constant( c, (
(VAR_PARSE_STRING *)dynamic_array_at( VAR_PARSE *,
group->elems, 0 ) )->s );
var_parse_group_free( group );
compile_parse( parse->right, c, RESULT_STACK );
compile_emit_debug(c, parse->line);
if ( result_location != RESULT_NONE )
{
compile_emit( c, INSTR_SET_RESULT, 1 );
}
compile_emit( c, op_code, name );
}
else
{
var_parse_group_compile( group, c );
var_parse_group_free( group );
compile_parse( parse->right, c, RESULT_STACK );
compile_emit_debug(c, parse->line);
if ( result_location != RESULT_NONE )
{
compile_emit( c, INSTR_SET_RESULT, 1 );
}
compile_emit( c, op_code_group, 0 );
}
}
else
{
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
compile_emit_debug(c, parse->line);
if ( result_location != RESULT_NONE )
{
compile_emit( c, INSTR_SET_RESULT, 1 );
}
compile_emit( c, op_code_group, 0 );
}
if ( result_location != RESULT_NONE )
{
adjust_result( c, RESULT_RETURN, result_location );
}
}
else if ( parse->type == PARSE_SETCOMP )
{
int32_t n_args;
struct arg_list * args = arg_list_compile( parse->right, &n_args );
int32_t const rule_id = compile_emit_rule( c, parse->string, parse->left,
n_args, args, parse->num );
compile_emit( c, INSTR_RULE, rule_id );
adjust_result( c, RESULT_NONE, result_location );
}
else if ( parse->type == PARSE_SETEXEC )
{
int32_t const actions_id = compile_emit_actions( c, parse );
compile_parse( parse->left, c, RESULT_STACK );
compile_emit( c, INSTR_ACTIONS, actions_id );
adjust_result( c, RESULT_NONE, result_location );
}
else if ( parse->type == PARSE_SETTINGS )
{
compile_parse( parse->left, c, RESULT_STACK );
compile_parse( parse->third, c, RESULT_STACK );
compile_parse( parse->right, c, RESULT_STACK );
compile_emit_debug(c, parse->line);
switch ( parse->num )
{
case ASSIGN_APPEND: compile_emit( c, INSTR_APPEND_ON, 0 ); break;
case ASSIGN_DEFAULT: compile_emit( c, INSTR_DEFAULT_ON, 0 ); break;
default: compile_emit( c, INSTR_SET_ON, 0 ); break;
}
adjust_result( c, RESULT_STACK, result_location );
}
else if ( parse->type == PARSE_SWITCH )
{
int32_t const switch_end = compile_new_label( c );
compile_parse( parse->left, c, RESULT_STACK );
for ( parse = parse->right; parse; parse = parse->right )
{
int32_t const id = compile_emit_constant( c, parse->left->string );
int32_t const next_case = compile_new_label( c );
compile_emit( c, INSTR_PUSH_CONSTANT, id );
compile_emit_branch( c, INSTR_JUMP_NOT_GLOB, next_case );
compile_parse( parse->left->left, c, result_location );
compile_emit_branch( c, INSTR_JUMP, switch_end );
compile_set_label( c, next_case );
}
compile_emit( c, INSTR_POP, 0 );
adjust_result( c, RESULT_NONE, result_location );
compile_set_label( c, switch_end );
}
else if ( parse->type == PARSE_RETURN )
{
compile_parse( parse->left, c, RESULT_RETURN );
compile_emit_cleanups( c, 0 );
compile_emit( c, INSTR_RETURN, 0 ); /* 0 for return in the middle of a function. */
}
else if ( parse->type == PARSE_BREAK )
{
compile_emit_loop_jump( c, LOOP_INFO_BREAK );
}
else if ( parse->type == PARSE_CONTINUE )
{
compile_emit_loop_jump( c, LOOP_INFO_CONTINUE );
}
else if ( parse->type == PARSE_NULL )
adjust_result( c, RESULT_NONE, result_location );
else
assert( !"unknown PARSE type." );
}
OBJECT * function_rulename( FUNCTION * function )
{
return function->rulename;
}
void function_set_rulename( FUNCTION * function, OBJECT * rulename )
{
function->rulename = rulename;
}
void function_location( FUNCTION * function_, OBJECT * * file, int32_t * line )
{
if ( function_->type == FUNCTION_BUILTIN )
{
*file = constant_builtin;
*line = -1;
}
else
{
JAM_FUNCTION * function = (JAM_FUNCTION *)function_;
assert( function_->type == FUNCTION_JAM );
*file = function->file;
*line = function->line;
}
}
static struct arg_list * arg_list_compile_builtin( char const * * args,
int32_t * num_arguments );
FUNCTION * function_builtin(
std::function<LIST* (FRAME *, int32_t flags)> func,
int32_t flags, const char * * args )
{
BUILTIN_FUNCTION * result = (BUILTIN_FUNCTION*)BJAM_MALLOC( sizeof( BUILTIN_FUNCTION ) );
result->base.type = FUNCTION_BUILTIN;
result->base.reference_count = 1;
result->base.rulename = 0;
result->base.formal_arguments = arg_list_compile_builtin( args,
&result->base.num_formal_arguments );
new (&(result->func)) function_builtin_t(func);
result->flags = flags;
return (FUNCTION *)result;
}
FUNCTION * function_compile( PARSE * parse )
{
compiler c[ 1 ];
JAM_FUNCTION * result;
compiler_init( c );
compile_parse( parse, c, RESULT_RETURN );
compile_emit( c, INSTR_RETURN, 1 );
result = compile_to_function( c );
compiler_free( c );
result->file = object_copy( parse->file );
result->line = parse->line;
return (FUNCTION *)result;
}
FUNCTION * function_compile_actions( char const * actions, OBJECT * file,
int32_t line )
{
compiler c[ 1 ];
JAM_FUNCTION * result;
VAR_PARSE_ACTIONS * parse;
current_file = object_str( file );
current_line = line;
parse = parse_actions( actions );
compiler_init( c );
var_parse_actions_compile( parse, c );
var_parse_actions_free( parse );
compile_emit( c, INSTR_RETURN, 1 );
result = compile_to_function( c );
compiler_free( c );
result->file = object_copy( file );
result->line = line;
return (FUNCTION *)result;
}
static void argument_list_print( struct arg_list * args, int32_t num_args );
/* Define delimiters for type check elements in argument lists (and return type
* specifications, eventually).
*/
# define TYPE_OPEN_DELIM '['
# define TYPE_CLOSE_DELIM ']'
/*
* is_type_name() - true iff the given string represents a type check
* specification.
*/
int32_t is_type_name( char const * s )
{
return s[ 0 ] == TYPE_OPEN_DELIM && s[ strlen( s ) - 1 ] ==
TYPE_CLOSE_DELIM;
}
static void argument_error( char const * message, FUNCTION * procedure,
FRAME * frame, OBJECT * arg )
{
extern void print_source_line( FRAME * );
LOL * actual = frame->args;
backtrace_line( frame->prev );
out_printf( "*** argument error\n* rule %s ( ", frame->rulename );
argument_list_print( procedure->formal_arguments,
procedure->num_formal_arguments );
out_printf( " )\n* called with: ( " );
lol_print( actual );
out_printf( " )\n* %s %s\n", message, arg ? object_str ( arg ) : "" );
function_location( procedure, &frame->file, &frame->line );
print_source_line( frame );
out_printf( "see definition of rule '%s' being called\n", frame->rulename );
backtrace( frame->prev );
b2::clean_exit( EXITBAD );
}
static void type_check_range( OBJECT * type_name, LISTITER iter, LISTITER end,
FRAME * caller, FUNCTION * called, OBJECT * arg_name )
{
static module_t * typecheck = 0;
/* If nothing to check, bail now. */
if ( iter == end || !type_name )
return;
if ( !typecheck )
typecheck = bindmodule( constant_typecheck );
/* If the checking rule can not be found, also bail. */
if ( !typecheck->rules || !hash_find( typecheck->rules, type_name ) )
return;
for ( ; iter != end; iter = list_next( iter ) )
{
FRAME frame;
frame.module = typecheck;
frame.prev = caller;
frame.prev_user = caller->module->user_module
? caller
: caller->prev_user;
/* Prepare the argument list */
lol_add( frame.args, list_new( object_copy( list_item( iter ) ) ) );
b2::list_ref error(
evaluate_rule(
bindrule( type_name, frame.module ), type_name, &frame ),
true );
if ( !error.empty() )
argument_error( object_str( *error.begin() ), called, caller,
arg_name );
}
}
static void type_check( OBJECT * type_name, LIST * values, FRAME * caller,
FUNCTION * called, OBJECT * arg_name )
{
type_check_range( type_name, list_begin( values ), list_end( values ),
caller, called, arg_name );
}
void argument_list_check( struct arg_list * formal, int32_t formal_count,
FUNCTION * function, FRAME * frame )
{
LOL * all_actual = frame->args;
int32_t i;
for ( i = 0; i < formal_count; ++i )
{
LIST * actual = lol_get( all_actual, i );
LISTITER actual_iter = list_begin( actual );
LISTITER const actual_end = list_end( actual );
int32_t j;
for ( j = 0; j < formal[ i ].size; ++j )
{
struct argument * formal_arg = &formal[ i ].args[ j ];
switch ( formal_arg->flags )
{
case ARG_ONE:
if ( actual_iter == actual_end )
argument_error( "missing argument", function, frame,
formal_arg->arg_name );
type_check_range( formal_arg->type_name, actual_iter,
list_next( actual_iter ), frame, function,
formal_arg->arg_name );
actual_iter = list_next( actual_iter );
break;
case ARG_OPTIONAL:
if ( actual_iter != actual_end )
{
type_check_range( formal_arg->type_name, actual_iter,
list_next( actual_iter ), frame, function,
formal_arg->arg_name );
actual_iter = list_next( actual_iter );
}
break;
case ARG_PLUS:
if ( actual_iter == actual_end )
argument_error( "missing argument", function, frame,
formal_arg->arg_name );
/* fallthrough */
case ARG_STAR:
type_check_range( formal_arg->type_name, actual_iter,
actual_end, frame, function, formal_arg->arg_name );
actual_iter = actual_end;
break;
case ARG_VARIADIC:
return;
}
}
if ( actual_iter != actual_end )
argument_error( "extra argument", function, frame, list_item(
actual_iter ) );
}
for ( ; i < all_actual->count; ++i )
{
LIST * actual = lol_get( all_actual, i );
if ( !list_empty( actual ) )
argument_error( "extra argument", function, frame, list_front(
actual ) );
}
}
void argument_list_push( struct arg_list * formal, int32_t formal_count,
FUNCTION * function, FRAME * frame, STACK * s )
{
LOL * all_actual = frame->args;
int32_t i;
for ( i = 0; i < formal_count; ++i )
{
LIST * actual = lol_get( all_actual, i );
LISTITER actual_iter = list_begin( actual );
LISTITER const actual_end = list_end( actual );
int32_t j;
for ( j = 0; j < formal[ i ].size; ++j )
{
struct argument * formal_arg = &formal[ i ].args[ j ];
b2::list_ref value;
switch ( formal_arg->flags )
{
case ARG_ONE:
if ( actual_iter == actual_end )
argument_error( "missing argument", function, frame,
formal_arg->arg_name );
value.reset( list_new( object_copy( list_item( actual_iter ) ) ) );
actual_iter = list_next( actual_iter );
break;
case ARG_OPTIONAL:
if ( actual_iter == actual_end )
value.reset();
else
{
value.reset( list_new( object_copy( list_item( actual_iter ) ) ) );
actual_iter = list_next( actual_iter );
}
break;
case ARG_PLUS:
if ( actual_iter == actual_end )
argument_error( "missing argument", function, frame,
formal_arg->arg_name );
/* fallthrough */
case ARG_STAR:
value.reset( list_copy_range( actual, actual_iter, actual_end ) );
actual_iter = actual_end;
break;
case ARG_VARIADIC:
return;
}
type_check( formal_arg->type_name, *value, frame, function,
formal_arg->arg_name );
if ( formal_arg->index != -1 )
{
LIST * * const old = &frame->module->fixed_variables[
formal_arg->index ];
s->push( *old, frame );
*old = value.release();
}
else
s->push( var_swap( frame->module, formal_arg->arg_name,
value.release() ), frame );
}
if ( actual_iter != actual_end )
argument_error( "extra argument", function, frame, list_item(
actual_iter ) );
}
for ( ; i < all_actual->count; ++i )
{
LIST * const actual = lol_get( all_actual, i );
if ( !list_empty( actual ) )
argument_error( "extra argument", function, frame, list_front(
actual ) );
}
}
void argument_list_pop( struct arg_list * formal, int32_t formal_count,
FRAME * frame, STACK * s )
{
int32_t i;
for ( i = formal_count - 1; i >= 0; --i )
{
int32_t j;
for ( j = formal[ i ].size - 1; j >= 0 ; --j )
{
struct argument * formal_arg = &formal[ i ].args[ j ];
if ( formal_arg->flags == ARG_VARIADIC )
continue;
if ( formal_arg->index != -1 )
{
LIST * const old = s->pop<LIST *>();
LIST * * const pos = &frame->module->fixed_variables[
formal_arg->index ];
list_free( *pos );
*pos = old;
}
else
var_set( frame->module, formal_arg->arg_name, s->pop<LIST *>(),
VAR_SET );
}
}
}
struct argument_compiler
{
struct dynamic_array args[ 1 ];
struct argument arg;
int32_t state;
#define ARGUMENT_COMPILER_START 0
#define ARGUMENT_COMPILER_FOUND_TYPE 1
#define ARGUMENT_COMPILER_FOUND_OBJECT 2
#define ARGUMENT_COMPILER_DONE 3
};
static void argument_compiler_init( struct argument_compiler * c )
{
dynamic_array_init( c->args );
c->state = ARGUMENT_COMPILER_START;
}
static void argument_compiler_free( struct argument_compiler * c )
{
dynamic_array_free( c->args );
}
static void argument_compiler_add( struct argument_compiler * c, OBJECT * arg,
OBJECT * file, int32_t line )
{
switch ( c->state )
{
case ARGUMENT_COMPILER_FOUND_OBJECT:
if ( object_equal( arg, constant_question_mark ) )
{
c->arg.flags = ARG_OPTIONAL;
}
else if ( object_equal( arg, constant_plus ) )
{
c->arg.flags = ARG_PLUS;
}
else if ( object_equal( arg, constant_star ) )
{
c->arg.flags = ARG_STAR;
}
dynamic_array_push( c->args, c->arg );
c->state = ARGUMENT_COMPILER_START;
if ( c->arg.flags != ARG_ONE )
break;
/* fall-through */
case ARGUMENT_COMPILER_START:
c->arg.type_name = 0;
c->arg.index = -1;
c->arg.flags = ARG_ONE;
if ( is_type_name( object_str( arg ) ) )
{
c->arg.type_name = object_copy( arg );
c->state = ARGUMENT_COMPILER_FOUND_TYPE;
break;
}
/* fall-through */
case ARGUMENT_COMPILER_FOUND_TYPE:
if ( is_type_name( object_str( arg ) ) )
{
err_printf( "%s:%d: missing argument name before type name: %s\n",
object_str( file ), line, object_str( arg ) );
b2::clean_exit( EXITBAD );
}
c->arg.arg_name = object_copy( arg );
if ( object_equal( arg, constant_star ) )
{
c->arg.flags = ARG_VARIADIC;
dynamic_array_push( c->args, c->arg );
c->state = ARGUMENT_COMPILER_DONE;
}
else
{
c->state = ARGUMENT_COMPILER_FOUND_OBJECT;
}
break;
case ARGUMENT_COMPILER_DONE:
break;
}
}
static void argument_compiler_recurse( struct argument_compiler * c,
PARSE * parse )
{
if ( parse->type == PARSE_APPEND )
{
argument_compiler_recurse( c, parse->left );
argument_compiler_recurse( c, parse->right );
}
else if ( parse->type != PARSE_NULL )
{
assert( parse->type == PARSE_LIST );
argument_compiler_add( c, parse->string, parse->file, parse->line );
}
}
static struct arg_list arg_compile_impl( struct argument_compiler * c,
OBJECT * file, int32_t line )
{
struct arg_list result;
switch ( c->state )
{
case ARGUMENT_COMPILER_START:
case ARGUMENT_COMPILER_DONE:
break;
case ARGUMENT_COMPILER_FOUND_TYPE:
err_printf( "%s:%d: missing argument name after type name: %s\n",
object_str( file ), line, object_str( c->arg.type_name ) );
b2::clean_exit( EXITBAD );
case ARGUMENT_COMPILER_FOUND_OBJECT:
dynamic_array_push( c->args, c->arg );
break;
}
result.size = c->args->size;
result.args = (struct argument*)BJAM_MALLOC( c->args->size * sizeof( struct argument ) );
if ( c->args->size != 0 )
memcpy( result.args, c->args->data,
c->args->size * sizeof( struct argument ) );
return result;
}
static struct arg_list arg_compile( PARSE * parse )
{
struct argument_compiler c[ 1 ];
struct arg_list result;
argument_compiler_init( c );
argument_compiler_recurse( c, parse );
result = arg_compile_impl( c, parse->file, parse->line );
argument_compiler_free( c );
return result;
}
struct argument_list_compiler
{
struct dynamic_array args[ 1 ];
};
static void argument_list_compiler_init( struct argument_list_compiler * c )
{
dynamic_array_init( c->args );
}
static void argument_list_compiler_free( struct argument_list_compiler * c )
{
dynamic_array_free( c->args );
}
static void argument_list_compiler_add( struct argument_list_compiler * c,
PARSE * parse )
{
struct arg_list args = arg_compile( parse );
dynamic_array_push( c->args, args );
}
static void argument_list_compiler_recurse( struct argument_list_compiler * c,
PARSE * parse )
{
if ( parse )
{
argument_list_compiler_add( c, parse->right );
argument_list_compiler_recurse( c, parse->left );
}
}
static struct arg_list * arg_list_compile( PARSE * parse, int32_t * num_arguments )
{
if ( parse )
{
struct argument_list_compiler c[ 1 ];
struct arg_list * result;
argument_list_compiler_init( c );
argument_list_compiler_recurse( c, parse );
*num_arguments = c->args->size;
result = (struct arg_list*)BJAM_MALLOC( c->args->size * sizeof( struct arg_list ) );
memcpy( result, c->args->data, c->args->size * sizeof( struct arg_list )
);
argument_list_compiler_free( c );
return result;
}
*num_arguments = 0;
return 0;
}
static struct arg_list * arg_list_compile_builtin( char const * * args,
int32_t * num_arguments )
{
if ( args )
{
struct argument_list_compiler c[ 1 ];
struct arg_list * result;
argument_list_compiler_init( c );
while ( *args )
{
struct argument_compiler arg_comp[ 1 ];
struct arg_list arg;
argument_compiler_init( arg_comp );
for ( ; *args; ++args )
{
OBJECT * token;
if ( strcmp( *args, ":" ) == 0 )
{
++args;
break;
}
token = object_new( *args );
argument_compiler_add( arg_comp, token, constant_builtin, -1 );
object_free( token );
}
arg = arg_compile_impl( arg_comp, constant_builtin, -1 );
dynamic_array_push( c->args, arg );
argument_compiler_free( arg_comp );
}
*num_arguments = c->args->size;
result = (struct arg_list *)BJAM_MALLOC( c->args->size * sizeof( struct arg_list ) );
if ( c->args->size != 0 )
memcpy( result, c->args->data,
c->args->size * sizeof( struct arg_list ) );
argument_list_compiler_free( c );
return result;
}
*num_arguments = 0;
return 0;
}
static void argument_list_print( struct arg_list * args, int32_t num_args )
{
if ( args )
{
int32_t i;
for ( i = 0; i < num_args; ++i )
{
int32_t j;
if ( i ) out_printf( " : " );
for ( j = 0; j < args[ i ].size; ++j )
{
struct argument * formal_arg = &args[ i ].args[ j ];
if ( j ) out_printf( " " );
if ( formal_arg->type_name )
out_printf( "%s ", object_str( formal_arg->type_name ) );
out_printf( "%s", object_str( formal_arg->arg_name ) );
switch ( formal_arg->flags )
{
case ARG_OPTIONAL: out_printf( " ?" ); break;
case ARG_PLUS: out_printf( " +" ); break;
case ARG_STAR: out_printf( " *" ); break;
}
}
}
}
}
struct arg_list * argument_list_bind_variables( struct arg_list * formal,
int32_t formal_count, module_t * module, int32_t * counter )
{
if ( formal )
{
struct arg_list * result = (struct arg_list *)BJAM_MALLOC( sizeof(
struct arg_list ) * formal_count );
int32_t i;
for ( i = 0; i < formal_count; ++i )
{
int32_t j;
struct argument * args = (struct argument *)BJAM_MALLOC( sizeof(
struct argument ) * formal[ i ].size );
for ( j = 0; j < formal[ i ].size; ++j )
{
args[ j ] = formal[ i ].args[ j ];
if ( args[ j ].type_name )
args[ j ].type_name = object_copy( args[ j ].type_name );
args[ j ].arg_name = object_copy( args[ j ].arg_name );
if ( args[ j ].flags != ARG_VARIADIC )
args[ j ].index = module_add_fixed_var( module,
args[ j ].arg_name, counter );
}
result[ i ].args = args;
result[ i ].size = formal[ i ].size;
}
return result;
}
return 0;
}
void argument_list_free( struct arg_list * args, int32_t args_count )
{
int32_t i;
for ( i = 0; i < args_count; ++i )
{
int32_t j;
for ( j = 0; j < args[ i ].size; ++j )
{
if ( args[ i ].args[ j ].type_name )
object_free( args[ i ].args[ j ].type_name );
object_free( args[ i ].args[ j ].arg_name );
}
BJAM_FREE( args[ i ].args );
}
BJAM_FREE( args );
}
FUNCTION * function_unbind_variables( FUNCTION * f )
{
if ( f->type == FUNCTION_JAM )
{
JAM_FUNCTION * const func = (JAM_FUNCTION *)f;
return func->generic ? func->generic : f;
}
assert( f->type == FUNCTION_BUILTIN );
return f;
}
FUNCTION * function_bind_variables( FUNCTION * f, module_t * module,
int32_t * counter )
{
if ( f->type == FUNCTION_BUILTIN )
return f;
{
JAM_FUNCTION * func = (JAM_FUNCTION *)f;
JAM_FUNCTION * new_func = (JAM_FUNCTION *)BJAM_MALLOC( sizeof( JAM_FUNCTION ) );
instruction * code;
int32_t i;
assert( f->type == FUNCTION_JAM );
memcpy( new_func, func, sizeof( JAM_FUNCTION ) );
new_func->base.reference_count = 1;
new_func->base.formal_arguments = argument_list_bind_variables(
f->formal_arguments, f->num_formal_arguments, module, counter );
new_func->code = (instruction *)BJAM_MALLOC( func->code_size * sizeof( instruction ) );
memcpy( new_func->code, func->code, func->code_size * sizeof(
instruction ) );
new_func->generic = (FUNCTION *)func;
func = new_func;
for ( i = 0; ; ++i )
{
OBJECT * key;
int32_t op_code;
code = func->code + i;
switch ( code->op_code )
{
case INSTR_PUSH_VAR: op_code = INSTR_PUSH_VAR_FIXED; break;
case INSTR_PUSH_LOCAL: op_code = INSTR_PUSH_LOCAL_FIXED; break;
case INSTR_POP_LOCAL: op_code = INSTR_POP_LOCAL_FIXED; break;
case INSTR_SET: op_code = INSTR_SET_FIXED; break;
case INSTR_APPEND: op_code = INSTR_APPEND_FIXED; break;
case INSTR_DEFAULT: op_code = INSTR_DEFAULT_FIXED; break;
case INSTR_RETURN:
if( code->arg == 1 ) return (FUNCTION *)new_func;
else continue;
case INSTR_CALL_MEMBER_RULE:
case INSTR_CALL_RULE: ++i; continue;
case INSTR_PUSH_MODULE:
{
int32_t depth = 1;
++i;
while ( depth > 0 )
{
code = func->code + i;
switch ( code->op_code )
{
case INSTR_PUSH_MODULE:
case INSTR_CLASS:
++depth;
break;
case INSTR_POP_MODULE:
--depth;
break;
case INSTR_CALL_RULE:
++i;
break;
}
++i;
}
--i;
}
default: continue;
}
key = func->constants[ code->arg ];
if ( !( object_equal( key, constant_TMPDIR ) ||
object_equal( key, constant_TMPNAME ) ||
object_equal( key, constant_TMPFILE ) ||
object_equal( key, constant_STDOUT ) ||
object_equal( key, constant_STDERR ) ) )
{
code->op_code = op_code;
code->arg = module_add_fixed_var( module, key, counter );
}
}
}
}
LIST * function_get_variables( FUNCTION * f )
{
if ( f->type == FUNCTION_BUILTIN )
return L0;
{
JAM_FUNCTION * func = (JAM_FUNCTION *)f;
LIST * result = L0;
instruction * code;
int32_t i;
assert( f->type == FUNCTION_JAM );
if ( func->generic ) func = ( JAM_FUNCTION * )func->generic;
for ( i = 0; ; ++i )
{
OBJECT * var;
code = func->code + i;
switch ( code->op_code )
{
case INSTR_PUSH_LOCAL: break;
case INSTR_RETURN: return result;
case INSTR_CALL_MEMBER_RULE:
case INSTR_CALL_RULE: ++i; continue;
case INSTR_PUSH_MODULE:
{
int32_t depth = 1;
++i;
while ( depth > 0 )
{
code = func->code + i;
switch ( code->op_code )
{
case INSTR_PUSH_MODULE:
case INSTR_CLASS:
++depth;
break;
case INSTR_POP_MODULE:
--depth;
break;
case INSTR_CALL_RULE:
++i;
break;
}
++i;
}
--i;
}
default: continue;
}
var = func->constants[ code->arg ];
if ( !( object_equal( var, constant_TMPDIR ) ||
object_equal( var, constant_TMPNAME ) ||
object_equal( var, constant_TMPFILE ) ||
object_equal( var, constant_STDOUT ) ||
object_equal( var, constant_STDERR ) ) )
{
result = list_push_back( result, var );
}
}
}
}
void function_refer( FUNCTION * func )
{
++func->reference_count;
}
void function_free( FUNCTION * function_ )
{
int32_t i;
if ( --function_->reference_count != 0 )
return;
if ( function_->formal_arguments )
argument_list_free( function_->formal_arguments,
function_->num_formal_arguments );
if ( function_->type == FUNCTION_JAM )
{
JAM_FUNCTION * func = (JAM_FUNCTION *)function_;
BJAM_FREE( func->code );
if ( func->generic )
function_free( func->generic );
else
{
if ( function_->rulename ) object_free( function_->rulename );
for ( i = 0; i < func->num_constants; ++i )
object_free( func->constants[ i ] );
BJAM_FREE( func->constants );
for ( i = 0; i < func->num_subfunctions; ++i )
{
object_free( func->functions[ i ].name );
function_free( func->functions[ i ].code );
}
BJAM_FREE( func->functions );
for ( i = 0; i < func->num_subactions; ++i )
{
object_free( func->actions[ i ].name );
function_free( func->actions[ i ].command );
}
BJAM_FREE( func->actions );
object_free( func->file );
}
}
else
{
assert( function_->type == FUNCTION_BUILTIN );
if ( function_->rulename ) object_free( function_->rulename );
BUILTIN_FUNCTION * func = (BUILTIN_FUNCTION *)function_;
func->func.~function_builtin_t();
}
BJAM_FREE( function_ );
}
/* Alignment check for stack */
struct align_var_edits
{
char ch;
VAR_EDITS e;
};
struct align_expansion_item
{
char ch;
expansion_item e;
};
static_assert(
sizeof(struct align_var_edits) <= sizeof(VAR_EDITS) + sizeof(void *),
"sizeof(struct align_var_edits) <= sizeof(VAR_EDITS) + sizeof(void *)" );
static_assert(
sizeof(struct align_expansion_item) <= sizeof(expansion_item) + sizeof(void *),
"sizeof(struct align_expansion_item) <= sizeof(expansion_item) + sizeof(void *)" );
static_assert( sizeof(LIST *) <= sizeof(void *), "sizeof(LIST *) <= sizeof(void *)" );
static_assert( sizeof(char *) <= sizeof(void *), "sizeof(char *) <= sizeof(void *)" );
void function_run_actions( FUNCTION * function, FRAME * frame, string * out )
{
stack_global()->push( out );
list_free( function_run( function, frame ) );
stack_global()->pop<string *>();
}
// Result is either the filename or contents depending on:
// 1. If the RESPONSE_FILE_SUB == f or not set (it's filename)
// 2. If the RESPONSE_FILE_SUB == c (it's contents)
// 3. If the RESPONSE_FILE_SUB == a (depends on the length of contents)
// Note, returns a *copy* of the filename or contents.
LIST * function_execute_write_file(
JAM_FUNCTION * function, FRAME * frame, STACK * s,
VAR_EXPANDED filename, LIST * contents )
{
LIST * filename_or_contents_result = nullptr;
char response_file_sub_c = 'f';
if ( filename.opt_file && filename.opt_content )
{
LIST * response_file_sub = function_get_named_variable(
function, frame, constant_RESPONSE_FILE_SUB );
if ( response_file_sub && list_front( response_file_sub ) )
response_file_sub_c = object_str( list_front( response_file_sub ) )[0];
list_free( response_file_sub );
const char * contents_str = object_str( list_front( contents ) );
if ( response_file_sub_c == 'a' )
{
if ( int32_t( strlen( contents_str ) + 256 ) > shell_maxline() )
response_file_sub_c = 'f';
else
response_file_sub_c = 'c';
}
}
else if ( filename.opt_file )
response_file_sub_c = 'f';
else if ( filename.opt_content )
response_file_sub_c = 'c';
if ( response_file_sub_c == 'c' )
{
filename_or_contents_result = list_copy( contents );
}
else
{
char const * out = object_str( list_front( filename.inner ) );
OBJECT * tmp_filename = nullptr;
FILE * out_file = nullptr;
bool out_debug = DEBUG_EXEC != 0;
/* For stdout/stderr we will create a temp file and generate a
* command that outputs the content as needed.
*/
if ( ( strcmp( "STDOUT", out ) == 0 ) ||
( strcmp( "STDERR", out ) == 0 ) )
{
int32_t err_redir = strcmp( "STDERR", out ) == 0;
string result[ 1 ];
tmp_filename = path_tmpfile();
/* Construct os-specific cat command. */
{
const char * command = "cat";
const char * quote = "\"";
const char * redirect = "1>&2";
#ifdef OS_NT
command = "type";
quote = "\"";
#elif defined( OS_VMS )
command = "pipe type";
quote = "";
/* Get tmp file name in os-format. */
{
string os_filename[ 1 ];
string_new( os_filename );
path_translate_to_os( object_str( tmp_filename ), os_filename );
object_free( tmp_filename );
tmp_filename = object_new( os_filename->value );
string_free( os_filename );
}
#endif
string_new( result );
string_append( result, command );
string_append( result, " " );
string_append( result, quote );
string_append( result, object_str( tmp_filename ) );
string_append( result, quote );
if ( err_redir )
{
string_append( result, " " );
string_append( result, redirect );
}
}
/* Replace STDXXX with the temporary file. */
filename_or_contents_result = list_new( object_new( result->value ) );
out = object_str( tmp_filename );
string_free( result );
/* Make sure temp files created by this get nuked eventually. */
file_remove_atexit( tmp_filename );
}
else
{
filename_or_contents_result = list_copy( filename.value );
}
if ( !globs.noexec )
{
string out_name[ 1 ];
/* Handle "path to file" filenames. */
if ( ( out[ 0 ] == '"' ) && ( out[ strlen( out ) - 1 ] == '"' )
)
{
string_copy( out_name, out + 1 );
string_truncate( out_name, out_name->size - 1 );
}
else
string_copy( out_name, out );
out_file = fopen( out_name->value, "w" );
if ( !out_file )
{
err_printf( "[errno %d] failed to write output file '%s': %s",
errno, out_name->value, strerror(errno) );
b2::clean_exit( EXITBAD );
}
string_free( out_name );
}
if ( out_debug ) out_printf( "\nfile %s\n", out );
if ( out_file ) fputs( object_str( list_front( contents ) ), out_file );
if ( out_debug ) out_puts( object_str( list_front( contents ) ) );
if ( out_file )
{
fflush( out_file );
fclose( out_file );
}
if ( tmp_filename )
object_free( tmp_filename );
if ( out_debug ) out_putc( '\n' );
}
return filename_or_contents_result;
}
/*
* WARNING: The instruction set is tuned for Jam and is not really generic. Be
* especially careful about stack push/pop.
*/
LIST * function_run( FUNCTION * function_, FRAME * frame )
{
STACK * s = stack_global();
JAM_FUNCTION * function;
instruction * code;
LIST * l;
LIST * r;
LIST * result = L0;
#ifndef NDEBUG
char * saved_stack = s->get<char>();
#endif
PROFILE_ENTER_LOCAL(function_run);
#ifdef JAM_DEBUGGER
frame->function = function_;
#endif
if ( function_->type == FUNCTION_BUILTIN )
{
PROFILE_ENTER_LOCAL(function_run_FUNCTION_BUILTIN);
BUILTIN_FUNCTION const * const f = (BUILTIN_FUNCTION *)function_;
if ( function_->formal_arguments )
argument_list_check( function_->formal_arguments,
function_->num_formal_arguments, function_, frame );
debug_on_enter_function( frame, f->base.rulename, NULL, -1 );
result = f->func( frame, f->flags );
debug_on_exit_function( f->base.rulename );
PROFILE_EXIT_LOCAL(function_run_FUNCTION_BUILTIN);
PROFILE_EXIT_LOCAL(function_run);
return result;
}
assert( function_->type == FUNCTION_JAM );
if ( function_->formal_arguments )
argument_list_push( function_->formal_arguments,
function_->num_formal_arguments, function_, frame, s );
function = (JAM_FUNCTION *)function_;
debug_on_enter_function( frame, function->base.rulename, function->file, function->line );
code = function->code;
for ( ; ; )
{
switch ( code->op_code )
{
/*
* Basic stack manipulation
*/
case INSTR_PUSH_EMPTY:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_EMPTY);
s->push( L0 );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_EMPTY);
break;
}
case INSTR_PUSH_CONSTANT:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_CONSTANT);
OBJECT * value = function_get_constant( function, code->arg );
s->push( list_new( object_copy( value ) ) );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_CONSTANT);
break;
}
case INSTR_PUSH_ARG:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_ARG);
s->push( frame_get_local( frame, code->arg ) );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_ARG);
break;
}
case INSTR_PUSH_VAR:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_VAR);
s->push( function_get_variable( function, frame, code->arg ) );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_VAR);
break;
}
case INSTR_PUSH_VAR_FIXED:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_VAR_FIXED);
s->push( list_copy( frame->module->fixed_variables[ code->arg
] ) );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_VAR_FIXED);
break;
}
case INSTR_PUSH_GROUP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_GROUP);
LIST * value = L0;
LISTITER iter;
LISTITER end;
l = s->pop<LIST *>();
for ( iter = list_begin( l ), end = list_end( l ); iter != end;
iter = list_next( iter ) )
value = list_append( value, function_get_named_variable(
function, frame, list_item( iter ) ) );
list_free( l );
s->push( value );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_GROUP);
break;
}
case INSTR_PUSH_APPEND:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_APPEND);
r = s->pop<LIST *>();
l = s->pop<LIST *>();
s->push( list_append( l, r ) );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_APPEND);
break;
}
case INSTR_SWAP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_SWAP);
std::swap( s->top<LIST*>(), s->top<LIST*>( code->arg ) );
PROFILE_EXIT_LOCAL(function_run_INSTR_SWAP);
break;
}
case INSTR_POP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_POP);
list_free( s->pop<LIST *>() );
PROFILE_EXIT_LOCAL(function_run_INSTR_POP);
break;
}
/*
* Branch instructions
*/
case INSTR_JUMP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP);
code += code->arg;
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP);
break;
}
case INSTR_JUMP_EMPTY:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_EMPTY);
l = s->pop<LIST *>();
if ( !list_cmp( l, L0 ) ) code += code->arg;
list_free( l );
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_EMPTY);
break;
}
case INSTR_JUMP_NOT_EMPTY:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_NOT_EMPTY);
l = s->pop<LIST *>();
if ( list_cmp( l, L0 ) ) code += code->arg;
list_free( l );
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_NOT_EMPTY);
break;
}
case INSTR_JUMP_LT:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_LT);
r = s->pop<LIST *>();
l = s->pop<LIST *>();
if ( list_cmp( l, r ) < 0 ) code += code->arg;
list_free( l );
list_free( r );
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_LT);
break;
}
case INSTR_JUMP_LE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_LE);
r = s->pop<LIST *>();
l = s->pop<LIST *>();
if ( list_cmp( l, r ) <= 0 ) code += code->arg;
list_free( l );
list_free( r );
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_LE);
break;
}
case INSTR_JUMP_GT:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_GT);
r = s->pop<LIST *>();
l = s->pop<LIST *>();
if ( list_cmp( l, r ) > 0 ) code += code->arg;
list_free( l );
list_free( r );
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_GT);
break;
}
case INSTR_JUMP_GE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_GE);
r = s->pop<LIST *>();
l = s->pop<LIST *>();
if ( list_cmp( l, r ) >= 0 ) code += code->arg;
list_free( l );
list_free( r );
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_GE);
break;
}
case INSTR_JUMP_EQ:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_EQ);
r = s->pop<LIST *>();
l = s->pop<LIST *>();
if ( list_cmp( l, r ) == 0 ) code += code->arg;
list_free( l );
list_free( r );
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_EQ);
break;
}
case INSTR_JUMP_NE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_NE);
r = s->pop<LIST *>();
l = s->pop<LIST *>();
if ( list_cmp(l, r) != 0 ) code += code->arg;
list_free(l);
list_free(r);
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_NE);
break;
}
case INSTR_JUMP_IN:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_IN);
r = s->pop<LIST *>();
l = s->pop<LIST *>();
if ( list_is_sublist( l, r ) ) code += code->arg;
list_free(l);
list_free(r);
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_IN);
break;
}
case INSTR_JUMP_NOT_IN:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_NOT_IN);
r = s->pop<LIST *>();
l = s->pop<LIST *>();
if ( !list_is_sublist( l, r ) ) code += code->arg;
list_free( l );
list_free( r );
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_NOT_IN);
break;
}
/*
* For
*/
case INSTR_FOR_INIT:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_FOR_INIT);
l = s->top<LIST*>();
s->push( list_begin( l ) );
PROFILE_EXIT_LOCAL(function_run_INSTR_FOR_INIT);
break;
}
case INSTR_FOR_LOOP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_FOR_LOOP);
LISTITER iter = s->pop<LISTITER>();
l = s->top<LIST*>();
if ( iter == list_end( l ) )
{
list_free( s->pop<LIST *>() );
code += code->arg;
}
else
{
r = list_new( object_copy( list_item( iter ) ) );
iter = list_next( iter );
s->push( iter );
s->push( r );
}
PROFILE_EXIT_LOCAL(function_run_INSTR_FOR_LOOP);
break;
}
case INSTR_FOR_POP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_FOR_POP);
s->pop<LISTITER>();
list_free( s->pop<LIST *>() );
PROFILE_EXIT_LOCAL(function_run_INSTR_FOR_POP);
break;
}
/*
* Switch
*/
case INSTR_JUMP_NOT_GLOB:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_JUMP_NOT_GLOB);
char const * pattern;
char const * match;
l = s->pop<LIST *>();
r = s->top<LIST*>();
pattern = list_empty( l ) ? "" : object_str( list_front( l ) );
match = list_empty( r ) ? "" : object_str( list_front( r ) );
if ( glob( pattern, match ) )
code += code->arg;
else
list_free( s->pop<LIST *>() );
list_free( l );
PROFILE_EXIT_LOCAL(function_run_INSTR_JUMP_NOT_GLOB);
break;
}
/*
* Return
*/
case INSTR_SET_RESULT:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_SET_RESULT);
list_free( result );
if ( !code->arg )
result = s->pop<LIST *>();
else
result = list_copy( s->top<LIST*>() );
PROFILE_EXIT_LOCAL(function_run_INSTR_SET_RESULT);
break;
}
case INSTR_PUSH_RESULT:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_RESULT);
s->push( result );
result = L0;
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_RESULT);
break;
}
case INSTR_RETURN:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_RETURN);
if ( function_->formal_arguments )
argument_list_pop( function_->formal_arguments,
function_->num_formal_arguments, frame, s );
#ifndef NDEBUG
if ( !( saved_stack == s->get<char>() ) )
{
frame->file = function->file;
frame->line = function->line;
backtrace_line( frame );
out_printf( "error: stack check failed.\n" );
backtrace( frame );
assert( saved_stack == s->get<char>() );
}
assert( saved_stack == s->get<char>() );
#endif
debug_on_exit_function( function->base.rulename );
PROFILE_EXIT_LOCAL(function_run_INSTR_RETURN);
PROFILE_EXIT_LOCAL(function_run);
return result;
}
/*
* Local variables
*/
case INSTR_PUSH_LOCAL:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_LOCAL);
LIST * value = s->pop<LIST *>();
s->push( function_swap_variable( function, frame, code->arg,
value ), frame );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_LOCAL);
break;
}
case INSTR_POP_LOCAL:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_POP_LOCAL);
function_set_variable( function, frame, code->arg, s->pop<LIST *>() );
PROFILE_EXIT_LOCAL(function_run_INSTR_POP_LOCAL);
break;
}
case INSTR_PUSH_LOCAL_FIXED:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_LOCAL_FIXED);
LIST * value = s->pop<LIST *>();
LIST * * ptr = &frame->module->fixed_variables[ code->arg ];
assert( code->arg < frame->module->num_fixed_variables );
s->push( *ptr );
*ptr = value;
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_LOCAL_FIXED);
break;
}
case INSTR_POP_LOCAL_FIXED:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_POP_LOCAL_FIXED);
LIST * value = s->pop<LIST *>();
LIST * * ptr = &frame->module->fixed_variables[ code->arg ];
assert( code->arg < frame->module->num_fixed_variables );
list_free( *ptr );
*ptr = value;
PROFILE_EXIT_LOCAL(function_run_INSTR_POP_LOCAL_FIXED);
break;
}
case INSTR_PUSH_LOCAL_GROUP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_LOCAL_GROUP);
LIST * const value = s->pop<LIST *>();
LISTITER iter;
LISTITER end;
l = s->pop<LIST *>();
for ( iter = list_begin( l ), end = list_end( l ); iter != end;
iter = list_next( iter ) )
s->push( function_swap_named_variable( function, frame,
list_item( iter ), list_copy( value ) ) );
list_free( value );
s->push( l );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_LOCAL_GROUP);
break;
}
case INSTR_POP_LOCAL_GROUP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_POP_LOCAL_GROUP);
LISTITER iter;
LISTITER end;
r = s->pop<LIST *>();
l = list_reverse( r );
list_free( r );
for ( iter = list_begin( l ), end = list_end( l ); iter != end;
iter = list_next( iter ) )
function_set_named_variable( function, frame, list_item( iter ),
s->pop<LIST *>() );
list_free( l );
PROFILE_EXIT_LOCAL(function_run_INSTR_POP_LOCAL_GROUP);
break;
}
/*
* on $(TARGET) variables
*/
case INSTR_PUSH_ON:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_ON);
LIST * targets = s->top<LIST*>();
if ( !list_empty( targets ) )
{
/* FIXME: push the state onto the stack instead of using
* pushsettings.
*/
TARGET * t = bindtarget( list_front( targets ) );
pushsettings( frame->module, t->settings );
}
else
{
/* [ on $(TARGET) ... ] is ignored if $(TARGET) is empty. */
list_free( s->pop<LIST *>() );
s->push( L0 );
code += code->arg;
}
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_ON);
break;
}
case INSTR_POP_ON:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_POP_ON);
LIST * result = s->pop<LIST *>();
LIST * targets = s->pop<LIST *>();
if ( !list_empty( targets ) )
{
TARGET * t = bindtarget( list_front( targets ) );
popsettings( frame->module, t->settings );
}
list_free( targets );
s->push( result );
PROFILE_EXIT_LOCAL(function_run_INSTR_POP_ON);
break;
}
case INSTR_SET_ON:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_SET_ON);
LIST * targets = s->pop<LIST *>();
LIST * value = s->pop<LIST *>();
LIST * vars = s->pop<LIST *>();
LISTITER iter = list_begin( targets );
LISTITER const end = list_end( targets );
for ( ; iter != end; iter = list_next( iter ) )
{
TARGET * t = bindtarget( list_item( iter ) );
LISTITER vars_iter = list_begin( vars );
LISTITER const vars_end = list_end( vars );
for ( ; vars_iter != vars_end; vars_iter = list_next( vars_iter
) )
t->settings = addsettings( t->settings, VAR_SET, list_item(
vars_iter ), list_copy( value ) );
}
list_free( vars );
list_free( targets );
s->push( value );
PROFILE_EXIT_LOCAL(function_run_INSTR_SET_ON);
break;
}
case INSTR_APPEND_ON:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPEND_ON);
LIST * targets = s->pop<LIST *>();
LIST * value = s->pop<LIST *>();
LIST * vars = s->pop<LIST *>();
LISTITER iter = list_begin( targets );
LISTITER const end = list_end( targets );
for ( ; iter != end; iter = list_next( iter ) )
{
TARGET * const t = bindtarget( list_item( iter ) );
LISTITER vars_iter = list_begin( vars );
LISTITER const vars_end = list_end( vars );
for ( ; vars_iter != vars_end; vars_iter = list_next( vars_iter
) )
t->settings = addsettings( t->settings, VAR_APPEND,
list_item( vars_iter ), list_copy( value ) );
}
list_free( vars );
list_free( targets );
s->push( value );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPEND_ON);
break;
}
case INSTR_DEFAULT_ON:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_DEFAULT_ON);
LIST * targets = s->pop<LIST *>();
LIST * value = s->pop<LIST *>();
LIST * vars = s->pop<LIST *>();
LISTITER iter = list_begin( targets );
LISTITER const end = list_end( targets );
for ( ; iter != end; iter = list_next( iter ) )
{
TARGET * t = bindtarget( list_item( iter ) );
LISTITER vars_iter = list_begin( vars );
LISTITER const vars_end = list_end( vars );
for ( ; vars_iter != vars_end; vars_iter = list_next( vars_iter
) )
t->settings = addsettings( t->settings, VAR_DEFAULT,
list_item( vars_iter ), list_copy( value ) );
}
list_free( vars );
list_free( targets );
s->push( value );
PROFILE_EXIT_LOCAL(function_run_INSTR_DEFAULT_ON);
break;
}
/* [ on $(target) return $(variable) ] */
case INSTR_GET_ON:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_GET_ON);
LIST * targets = s->pop<LIST *>();
LIST * result = L0;
if ( !list_empty( targets ) )
{
OBJECT * varname = function->constants[ code->arg ];
TARGET * t = bindtarget( list_front( targets ) );
SETTINGS * s = t->settings;
int32_t found = 0;
for ( ; s != 0; s = s->next )
{
if ( object_equal( s->symbol, varname ) )
{
result = s->value;
found = 1;
break;
}
}
if ( !found )
{
result = var_get( frame->module, varname ) ;
}
}
list_free( targets );
s->push( list_copy( result ) );
PROFILE_EXIT_LOCAL(function_run_INSTR_GET_ON);
break;
}
/*
* Variable setting
*/
case INSTR_SET:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_SET);
function_set_variable( function, frame, code->arg,
s->pop<LIST *>() );
PROFILE_EXIT_LOCAL(function_run_INSTR_SET);
break;
}
case INSTR_APPEND:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPEND);
function_append_variable( function, frame, code->arg,
s->pop<LIST *>() );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPEND);
break;
}
case INSTR_DEFAULT:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_DEFAULT);
function_default_variable( function, frame, code->arg,
s->pop<LIST *>() );
PROFILE_EXIT_LOCAL(function_run_INSTR_DEFAULT);
break;
}
case INSTR_SET_FIXED:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_SET_FIXED);
LIST * * ptr = &frame->module->fixed_variables[ code->arg ];
assert( code->arg < frame->module->num_fixed_variables );
list_free( *ptr );
*ptr = s->pop<LIST *>();
PROFILE_EXIT_LOCAL(function_run_INSTR_SET_FIXED);
break;
}
case INSTR_APPEND_FIXED:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPEND_FIXED);
LIST * * ptr = &frame->module->fixed_variables[ code->arg ];
assert( code->arg < frame->module->num_fixed_variables );
*ptr = list_append( *ptr, s->pop<LIST *>() );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPEND_FIXED);
break;
}
case INSTR_DEFAULT_FIXED:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_DEFAULT_FIXED);
LIST * * ptr = &frame->module->fixed_variables[ code->arg ];
LIST * value = s->pop<LIST *>();
assert( code->arg < frame->module->num_fixed_variables );
if ( list_empty( *ptr ) )
*ptr = value;
else
list_free( value );
PROFILE_EXIT_LOCAL(function_run_INSTR_DEFAULT_FIXED);
break;
}
case INSTR_SET_GROUP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_SET_GROUP);
LIST * value = s->pop<LIST *>();
LIST * vars = s->pop<LIST *>();
LISTITER iter = list_begin( vars );
LISTITER const end = list_end( vars );
for ( ; iter != end; iter = list_next( iter ) )
function_set_named_variable( function, frame, list_item( iter ),
list_copy( value ) );
list_free( vars );
list_free( value );
PROFILE_EXIT_LOCAL(function_run_INSTR_SET_GROUP);
break;
}
case INSTR_APPEND_GROUP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPEND_GROUP);
LIST * value = s->pop<LIST *>();
LIST * vars = s->pop<LIST *>();
LISTITER iter = list_begin( vars );
LISTITER const end = list_end( vars );
for ( ; iter != end; iter = list_next( iter ) )
function_append_named_variable( function, frame, list_item( iter
), list_copy( value ) );
list_free( vars );
list_free( value );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPEND_GROUP);
break;
}
case INSTR_DEFAULT_GROUP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_DEFAULT_GROUP);
LIST * value = s->pop<LIST *>();
LIST * vars = s->pop<LIST *>();
LISTITER iter = list_begin( vars );
LISTITER const end = list_end( vars );
for ( ; iter != end; iter = list_next( iter ) )
function_default_named_variable( function, frame, list_item(
iter ), list_copy( value ) );
list_free( vars );
list_free( value );
PROFILE_EXIT_LOCAL(function_run_INSTR_DEFAULT_GROUP);
break;
}
/*
* Rules
*/
case INSTR_CALL_RULE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_CALL_RULE);
char const * unexpanded = object_str( function_get_constant(
function, code[ 1 ].op_code ) );
LIST * result = function_call_rule( function, frame, s, code->arg,
unexpanded, function->file, code[ 1 ].arg );
s->push( result );
++code;
PROFILE_EXIT_LOCAL(function_run_INSTR_CALL_RULE);
break;
}
case INSTR_CALL_MEMBER_RULE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_CALL_MEMBER_RULE);
OBJECT * rule_name = function_get_constant( function, code[1].op_code );
LIST * result = function_call_member_rule( function, frame, s, code->arg, rule_name, function->file, code[1].arg );
s->push( result );
++code;
PROFILE_EXIT_LOCAL(function_run_INSTR_CALL_MEMBER_RULE);
break;
}
case INSTR_RULE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_RULE);
function_set_rule( function, frame, s, code->arg );
PROFILE_EXIT_LOCAL(function_run_INSTR_RULE);
break;
}
case INSTR_ACTIONS:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_ACTIONS);
function_set_actions( function, frame, s, code->arg );
PROFILE_EXIT_LOCAL(function_run_INSTR_ACTIONS);
break;
}
/*
* Variable expansion
*/
case INSTR_APPLY_MODIFIERS:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPLY_MODIFIERS);
int32_t n;
l = s->pop<LIST *>();
n = expand_modifiers( s, code->arg );
s->push( l );
VAR_EXPANDED m = apply_modifiers( s, n );
l = m.value;
list_free( m.inner );
list_free( s->pop<LIST *>() );
s->pop<VAR_EDITS>( n );
for ( int32_t i = 0; i < code->arg; ++i )
list_free( s->pop<LIST *>() ); /* pop modifiers */
s->push( l );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPLY_MODIFIERS);
break;
}
case INSTR_APPLY_INDEX:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPLY_INDEX);
l = apply_subscript( s );
list_free( s->pop<LIST *>() );
list_free( s->pop<LIST *>() );
s->push( l );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPLY_INDEX);
break;
}
case INSTR_APPLY_INDEX_MODIFIERS:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPLY_INDEX_MODIFIERS);
int32_t i;
int32_t n;
l = s->pop<LIST *>();
r = s->pop<LIST *>();
n = expand_modifiers( s, code->arg );
s->push( r );
s->push( l );
l = apply_subscript_and_modifiers( s, n );
list_free( s->pop<LIST *>() );
list_free( s->pop<LIST *>() );
s->pop<VAR_EDITS>( n );
for ( i = 0; i < code->arg; ++i )
list_free( s->pop<LIST *>() ); /* pop modifiers */
s->push( l );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPLY_INDEX_MODIFIERS);
break;
}
case INSTR_APPLY_MODIFIERS_GROUP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPLY_MODIFIERS_GROUP);
int32_t i;
LIST * const vars = s->pop<LIST *>();
int32_t const n = expand_modifiers( s, code->arg );
LIST * result = L0;
LISTITER iter = list_begin( vars );
LISTITER const end = list_end( vars );
for ( ; iter != end; iter = list_next( iter ) )
{
s->push( function_get_named_variable( function, frame,
list_item( iter ) ) );
VAR_EXPANDED m = apply_modifiers( s, n );
result = m.value;
list_free( m.inner );
list_free( s->pop<LIST *>() );
}
list_free( vars );
s->pop<VAR_EDITS>( n );
for ( i = 0; i < code->arg; ++i )
list_free( s->pop<LIST *>() ); /* pop modifiers */
s->push( result );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPLY_MODIFIERS_GROUP);
break;
}
case INSTR_APPLY_INDEX_GROUP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPLY_INDEX_GROUP);
LIST * vars = s->pop<LIST *>();
LIST * result = L0;
LISTITER iter = list_begin( vars );
LISTITER const end = list_end( vars );
for ( ; iter != end; iter = list_next( iter ) )
{
s->push( function_get_named_variable( function, frame,
list_item( iter ) ) );
result = list_append( result, apply_subscript( s ) );
list_free( s->pop<LIST *>() );
}
list_free( vars );
list_free( s->pop<LIST *>() );
s->push( result );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPLY_INDEX_GROUP);
break;
}
case INSTR_APPLY_INDEX_MODIFIERS_GROUP:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPLY_INDEX_MODIFIERS_GROUP);
int32_t i;
LIST * const vars = s->pop<LIST *>();
LIST * const r = s->pop<LIST *>();
int32_t const n = expand_modifiers( s, code->arg );
LIST * result = L0;
LISTITER iter = list_begin( vars );
LISTITER const end = list_end( vars );
s->push( r );
for ( ; iter != end; iter = list_next( iter ) )
{
s->push( function_get_named_variable( function, frame,
list_item( iter ) ) );
result = list_append( result, apply_subscript_and_modifiers( s,
n ) );
list_free( s->pop<LIST *>() );
}
list_free( s->pop<LIST *>() );
list_free( vars );
s->pop<VAR_EDITS>( n );
for ( i = 0; i < code->arg; ++i )
list_free( s->pop<LIST *>() ); /* pop modifiers */
s->push( result );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPLY_INDEX_MODIFIERS_GROUP);
break;
}
case INSTR_COMBINE_STRINGS:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_COMBINE_STRINGS);
LIST * * const stack_pos = s->get<LIST*>();
expansion_item * items = s->push( expansion_item(), code->arg );
LIST * result;
int32_t i;
for ( i = 0; i < code->arg; ++i )
items[ i ].values = stack_pos[ i ];
result = expand( items, code->arg );
s->pop<expansion_item>( code->arg );
for ( i = 0; i < code->arg; ++i )
list_free( s->pop<LIST *>() );
s->push( result );
PROFILE_EXIT_LOCAL(function_run_INSTR_COMBINE_STRINGS);
break;
}
case INSTR_GET_GRIST:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_GET_GRIST);
LIST * vals = s->pop<LIST *>();
LIST * result = L0;
LISTITER iter, end;
for ( iter = list_begin( vals ), end = list_end( vals ); iter != end; ++iter )
{
OBJECT * new_object;
const char * value = object_str( list_item( iter ) );
const char * p;
if ( value[ 0 ] == '<' && ( p = strchr( value, '>' ) ) )
{
if( p[ 1 ] )
new_object = object_new_range( value, int32_t(p - value + 1) );
else
new_object = object_copy( list_item( iter ) );
}
else
{
new_object = object_copy( constant_empty );
}
result = list_push_back( result, new_object );
}
list_free( vals );
s->push( result );
PROFILE_EXIT_LOCAL(function_run_INSTR_GET_GRIST);
break;
}
case INSTR_INCLUDE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_INCLUDE);
b2::list_ref nt( s->pop<LIST *>(), true );
if ( !nt.empty() )
{
parse_include( *nt.begin(), frame );
#ifdef JAM_DEBUGGER
frame->function = function_;
#endif
}
PROFILE_EXIT_LOCAL(function_run_INSTR_INCLUDE);
break;
}
/*
* Classes and modules
*/
case INSTR_PUSH_MODULE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_PUSH_MODULE);
LIST * const module_name = s->pop<LIST *>();
module_t * outer_module = frame->module;
frame->module = !list_empty( module_name )
? b2::ensure_valid(bindmodule( list_front( module_name ) ))
: b2::ensure_valid(root_module());
list_free( module_name );
s->push( b2::ensure_valid(outer_module) );
PROFILE_EXIT_LOCAL(function_run_INSTR_PUSH_MODULE);
break;
}
case INSTR_POP_MODULE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_POP_MODULE);
frame->module = b2::ensure_valid(s->pop<module_t *>());
PROFILE_EXIT_LOCAL(function_run_INSTR_POP_MODULE);
break;
}
case INSTR_CLASS:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_CLASS);
LIST * bases = s->pop<LIST *>();
LIST * name = s->pop<LIST *>();
OBJECT * class_module = make_class_module( name, bases );
module_t * outer_module = frame->module;
// out_printf("function_run: OUTER-CLASS = %s, %s\n",
// outer_module->name ? outer_module->name->str() : "<>",
// class_module->str());
frame->module = b2::ensure_valid(bindmodule( class_module ));
object_free( class_module );
s->push( b2::ensure_valid(outer_module) );
PROFILE_EXIT_LOCAL(function_run_INSTR_CLASS);
break;
}
case INSTR_BIND_MODULE_VARIABLES:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_BIND_MODULE_VARIABLES);
module_bind_variables( frame->module );
PROFILE_EXIT_LOCAL(function_run_INSTR_BIND_MODULE_VARIABLES);
break;
}
case INSTR_APPEND_STRINGS:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_APPEND_STRINGS);
string buf[ 1 ];
string_new( buf );
combine_strings( s, code->arg, buf );
s->push( list_new( object_new( buf->value ) ) );
string_free( buf );
PROFILE_EXIT_LOCAL(function_run_INSTR_APPEND_STRINGS);
break;
}
// WRITE_FILE( LIST*1 filename, LIST*1 modifiers[N], LIST*1 contents )
case INSTR_WRITE_FILE:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_WRITE_FILE);
// Get expanded filename.
LIST * filename = nullptr;
{
expansion_item ei = { s->pop<LIST *>() };
filename = expand( &ei, 1 );
list_free( ei.values );
}
// Apply modifiers to "raw" filename.
VAR_EXPANDED filename_mod = eval_modifiers( s, filename, code->arg );
// Get contents.
LIST * contents = s->pop<LIST *>();
// Write out the contents file, or expand the contents, as needed.
LIST * filename_or_contents = function_execute_write_file( function, frame, s, filename_mod, contents );
// The result that gets replaced into the @() space.
s->push( filename_or_contents );
list_free( filename_mod.value );
list_free( filename_mod.inner );
list_free( contents );
PROFILE_EXIT_LOCAL(function_run_INSTR_WRITE_FILE);
break;
}
case INSTR_OUTPUT_STRINGS:
{
PROFILE_ENTER_LOCAL(function_run_INSTR_OUTPUT_STRINGS);
string * const buf = s->top<LIST*, string*>( code->arg );
combine_strings( s, code->arg, buf );
PROFILE_EXIT_LOCAL(function_run_INSTR_OUTPUT_STRINGS);
break;
}
case INSTR_DEBUG_LINE:
{
debug_on_instruction( frame, function->file, code->arg );
break;
}
}
++code;
}
PROFILE_EXIT_LOCAL(function_run);
}
void function_done( void )
{
stack_global()->done();
}
b2::jam::module_scope_in_function::module_scope_in_function(
FRAME * frame_, const char * module_name_)
: module_frame(frame_)
{
auto stack = stack_global();
stack->push(b2::ensure_valid(module_frame->module));
module_frame->module = module_name_ == nullptr
? b2::ensure_valid(root_module())
: b2::ensure_valid(bindmodule(value_ref(module_name_)));
}
b2::jam::module_scope_in_function::~module_scope_in_function()
{
auto stack = stack_global();
module_frame->module = b2::ensure_valid(stack->pop<module_t *>());
}
std::string b2::jam::backtrace::to_string(frame * f)
{
std::string result;
for (auto i : backtrace::to_list(f))
{
if (!result.empty()) result += "\n";
result += i->str();
}
return result;
}
b2::list_ref b2::jam::backtrace::to_list(frame * f)
{
b2::list_ref result;
for (; f != nullptr; f = f->prev)
{
std::string line;
if (f->module->name != nullptr)
{
line += f->module->name->str();
line += ".";
}
line += f->rulename == nullptr ? "???" : f->rulename;
line += " at ";
line += f->file == nullptr ? "(builtin)" : f->file->str();
line += ":" + std::to_string(f->line);
result.push_back(line);
}
return result;
}