2009-05-04 02:46:13 -04:00
|
|
|
namespace factor
|
|
|
|
{
|
|
|
|
|
2009-05-02 05:04:19 -04:00
|
|
|
typedef unsigned char u8;
|
|
|
|
typedef unsigned short u16;
|
|
|
|
typedef unsigned int u32;
|
|
|
|
typedef unsigned long long u64;
|
|
|
|
typedef signed char s8;
|
|
|
|
typedef signed short s16;
|
|
|
|
typedef signed int s32;
|
|
|
|
typedef signed long long s64;
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
2009-05-04 05:50:24 -04:00
|
|
|
typedef long long fixnum;
|
|
|
|
typedef unsigned long long cell;
|
2009-05-02 05:04:19 -04:00
|
|
|
#else
|
2009-05-04 05:50:24 -04:00
|
|
|
typedef long fixnum;
|
|
|
|
typedef unsigned long cell;
|
2009-05-02 05:04:19 -04:00
|
|
|
#endif
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
inline static cell align(cell a, cell b)
|
2009-05-04 02:00:30 -04:00
|
|
|
{
|
|
|
|
return (a + (b-1)) & ~(b-1);
|
|
|
|
}
|
|
|
|
|
2009-10-20 13:45:00 -04:00
|
|
|
static const cell data_alignment = 16;
|
2009-05-08 16:05:55 -04:00
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
#define WORD_SIZE (signed)(sizeof(cell)*8)
|
2009-05-02 05:04:19 -04:00
|
|
|
|
|
|
|
#define TAG_MASK 7
|
|
|
|
#define TAG_BITS 3
|
2009-05-04 05:50:24 -04:00
|
|
|
#define TAG(x) ((cell)(x) & TAG_MASK)
|
|
|
|
#define UNTAG(x) ((cell)(x) & ~TAG_MASK)
|
|
|
|
#define RETAG(x,tag) (UNTAG(x) | (tag))
|
2009-05-02 05:04:19 -04:00
|
|
|
|
|
|
|
/*** Tags ***/
|
|
|
|
#define FIXNUM_TYPE 0
|
|
|
|
#define BIGNUM_TYPE 1
|
|
|
|
#define ARRAY_TYPE 2
|
|
|
|
#define FLOAT_TYPE 3
|
|
|
|
#define QUOTATION_TYPE 4
|
|
|
|
#define F_TYPE 5
|
|
|
|
#define OBJECT_TYPE 6
|
|
|
|
#define TUPLE_TYPE 7
|
|
|
|
|
|
|
|
#define HEADER_TYPE 8 /* anything less than this is a tag */
|
|
|
|
|
|
|
|
#define GC_COLLECTED 5 /* can be anything other than FIXNUM_TYPE */
|
|
|
|
|
|
|
|
/*** Header types ***/
|
|
|
|
#define WRAPPER_TYPE 8
|
|
|
|
#define BYTE_ARRAY_TYPE 9
|
|
|
|
#define CALLSTACK_TYPE 10
|
|
|
|
#define STRING_TYPE 11
|
|
|
|
#define WORD_TYPE 12
|
|
|
|
#define DLL_TYPE 13
|
|
|
|
#define ALIEN_TYPE 14
|
|
|
|
|
|
|
|
#define TYPE_COUNT 15
|
|
|
|
|
2009-10-20 10:37:24 -04:00
|
|
|
enum code_block_type
|
|
|
|
{
|
|
|
|
code_block_unoptimized,
|
|
|
|
code_block_optimized,
|
|
|
|
code_block_profiling,
|
|
|
|
code_block_pic
|
|
|
|
};
|
2009-05-02 05:04:19 -04:00
|
|
|
|
2009-09-14 00:37:28 -04:00
|
|
|
/* Constants used when floating-point trap exceptions are thrown */
|
|
|
|
enum
|
|
|
|
{
|
2009-09-14 04:09:03 -04:00
|
|
|
FP_TRAP_INVALID_OPERATION = 1 << 0,
|
|
|
|
FP_TRAP_OVERFLOW = 1 << 1,
|
|
|
|
FP_TRAP_UNDERFLOW = 1 << 2,
|
|
|
|
FP_TRAP_ZERO_DIVIDE = 1 << 3,
|
|
|
|
FP_TRAP_INEXACT = 1 << 4,
|
2009-09-14 00:37:28 -04:00
|
|
|
};
|
|
|
|
|
2009-10-18 21:26:21 -04:00
|
|
|
/* What Factor calls 'f' */
|
|
|
|
static const cell false_object = F_TYPE;
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
inline static bool immediate_p(cell obj)
|
2009-05-02 05:04:19 -04:00
|
|
|
{
|
2009-10-18 21:26:21 -04:00
|
|
|
return (obj == false_object || TAG(obj) == FIXNUM_TYPE);
|
2009-05-02 05:04:19 -04:00
|
|
|
}
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
inline static fixnum untag_fixnum(cell tagged)
|
2009-05-02 05:04:19 -04:00
|
|
|
{
|
2009-05-02 21:47:29 -04:00
|
|
|
#ifdef FACTOR_DEBUG
|
|
|
|
assert(TAG(tagged) == FIXNUM_TYPE);
|
|
|
|
#endif
|
2009-05-04 05:50:24 -04:00
|
|
|
return ((fixnum)tagged) >> TAG_BITS;
|
2009-05-02 05:04:19 -04:00
|
|
|
}
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
inline static cell tag_fixnum(fixnum untagged)
|
2009-05-02 05:04:19 -04:00
|
|
|
{
|
|
|
|
return RETAG(untagged << TAG_BITS,FIXNUM_TYPE);
|
|
|
|
}
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
inline static cell tag_for(cell type)
|
2009-05-04 02:00:30 -04:00
|
|
|
{
|
|
|
|
return type < HEADER_TYPE ? type : OBJECT_TYPE;
|
|
|
|
}
|
|
|
|
|
2009-05-13 02:08:16 -04:00
|
|
|
struct object;
|
2009-05-04 02:00:30 -04:00
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
struct header {
|
|
|
|
cell value;
|
2009-05-04 02:00:30 -04:00
|
|
|
|
2009-05-05 15:17:02 -04:00
|
|
|
/* Default ctor to make gcc 3.x happy */
|
2009-10-03 09:47:05 -04:00
|
|
|
explicit header() { abort(); }
|
2009-05-05 15:17:02 -04:00
|
|
|
|
2009-10-03 09:47:05 -04:00
|
|
|
explicit header(cell value_) : value(value_ << TAG_BITS) {}
|
2009-05-04 02:00:30 -04:00
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
void check_header() const
|
2009-10-20 14:13:39 -04:00
|
|
|
{
|
2009-05-04 02:00:30 -04:00
|
|
|
#ifdef FACTOR_DEBUG
|
2009-05-04 05:50:24 -04:00
|
|
|
assert(TAG(value) == FIXNUM_TYPE && untag_fixnum(value) < TYPE_COUNT);
|
2009-05-04 02:00:30 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
cell hi_tag() const
|
2009-10-20 14:13:39 -04:00
|
|
|
{
|
2009-05-04 02:00:30 -04:00
|
|
|
check_header();
|
2009-05-04 05:50:24 -04:00
|
|
|
return value >> TAG_BITS;
|
2009-05-04 02:00:30 -04:00
|
|
|
}
|
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
bool forwarding_pointer_p() const
|
2009-10-20 14:13:39 -04:00
|
|
|
{
|
2009-05-04 05:50:24 -04:00
|
|
|
return TAG(value) == GC_COLLECTED;
|
2009-05-04 02:00:30 -04:00
|
|
|
}
|
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
object *forwarding_pointer() const
|
2009-10-20 14:13:39 -04:00
|
|
|
{
|
2009-05-04 05:50:24 -04:00
|
|
|
return (object *)UNTAG(value);
|
2009-05-04 02:00:30 -04:00
|
|
|
}
|
|
|
|
|
2009-10-20 14:13:39 -04:00
|
|
|
void forward_to(object *pointer)
|
|
|
|
{
|
2009-05-04 05:50:24 -04:00
|
|
|
value = RETAG(pointer,GC_COLLECTED);
|
2009-05-04 02:00:30 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
#define NO_TYPE_CHECK static const cell type_number = TYPE_COUNT
|
2009-05-02 21:47:29 -04:00
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
struct object {
|
2009-05-02 21:47:29 -04:00
|
|
|
NO_TYPE_CHECK;
|
2009-05-04 05:50:24 -04:00
|
|
|
header h;
|
2009-10-20 14:47:04 -04:00
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
cell size() const;
|
2009-10-24 05:27:45 -04:00
|
|
|
cell binary_payload_start() const;
|
2009-10-20 14:47:04 -04:00
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
cell *slots() const { return (cell *)this; }
|
2009-10-20 14:47:04 -04:00
|
|
|
|
|
|
|
/* Only valid for objects in tenured space; must fast to free_heap_block
|
|
|
|
to do anything with it if its free */
|
2009-10-21 21:12:57 -04:00
|
|
|
bool free_p() const
|
2009-10-20 14:47:04 -04:00
|
|
|
{
|
|
|
|
return h.value & 1 == 1;
|
|
|
|
}
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Assembly code makes assumptions about the layout of this struct */
|
2009-05-04 05:50:24 -04:00
|
|
|
struct array : public object {
|
|
|
|
static const cell type_number = ARRAY_TYPE;
|
|
|
|
static const cell element_size = sizeof(cell);
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell capacity;
|
2009-05-04 02:00:30 -04:00
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
cell *data() const { return (cell *)(this + 1); }
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* These are really just arrays, but certain elements have special
|
|
|
|
significance */
|
2009-05-04 05:50:24 -04:00
|
|
|
struct tuple_layout : public array {
|
2009-05-02 21:47:29 -04:00
|
|
|
NO_TYPE_CHECK;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell klass;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged fixnum */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell size;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged fixnum */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell echelon;
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
struct bignum : public object {
|
|
|
|
static const cell type_number = BIGNUM_TYPE;
|
|
|
|
static const cell element_size = sizeof(cell);
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell capacity;
|
2009-05-04 02:00:30 -04:00
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
cell *data() const { return (cell *)(this + 1); }
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
struct byte_array : public object {
|
|
|
|
static const cell type_number = BYTE_ARRAY_TYPE;
|
|
|
|
static const cell element_size = 1;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell capacity;
|
2009-05-04 02:00:30 -04:00
|
|
|
|
2009-10-20 13:45:00 -04:00
|
|
|
#ifndef FACTOR_64
|
|
|
|
cell padding0;
|
|
|
|
cell padding1;
|
|
|
|
#endif
|
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
template<typename Scalar> Scalar *data() const { return (Scalar *)(this + 1); }
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Assembly code makes assumptions about the layout of this struct */
|
2009-05-04 05:50:24 -04:00
|
|
|
struct string : public object {
|
|
|
|
static const cell type_number = STRING_TYPE;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged num of chars */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell length;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell aux;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell hashcode;
|
2009-05-04 02:00:30 -04:00
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
u8 *data() const { return (u8 *)(this + 1); }
|
|
|
|
|
|
|
|
cell nth(cell i) const;
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* The compiled code heap is structured into blocks. */
|
2009-10-24 22:24:06 -04:00
|
|
|
struct code_block
|
2009-05-02 05:04:19 -04:00
|
|
|
{
|
2009-10-06 06:52:45 -04:00
|
|
|
cell header;
|
2009-10-06 07:25:07 -04:00
|
|
|
cell owner; /* tagged pointer to word, quotation or f */
|
|
|
|
cell literals; /* tagged pointer to array or f */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell relocation; /* tagged pointer to byte-array or f */
|
2009-10-06 06:52:45 -04:00
|
|
|
|
2009-10-24 22:24:06 -04:00
|
|
|
bool free_p() const
|
2009-10-20 10:37:24 -04:00
|
|
|
{
|
2009-10-24 22:24:06 -04:00
|
|
|
return header & 1 == 1;
|
2009-10-20 10:37:24 -04:00
|
|
|
}
|
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
code_block_type type() const
|
2009-10-20 10:37:24 -04:00
|
|
|
{
|
2009-10-20 13:45:00 -04:00
|
|
|
return (code_block_type)((header >> 1) & 0x3);
|
2009-10-20 10:37:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_type(code_block_type type)
|
|
|
|
{
|
|
|
|
header = ((header & ~0x7) | (type << 1));
|
|
|
|
}
|
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
bool pic_p() const
|
2009-10-20 10:37:24 -04:00
|
|
|
{
|
|
|
|
return type() == code_block_pic;
|
|
|
|
}
|
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
bool optimized_p() const
|
2009-10-20 10:37:24 -04:00
|
|
|
{
|
|
|
|
return type() == code_block_optimized;
|
|
|
|
}
|
2009-10-24 22:24:06 -04:00
|
|
|
|
|
|
|
cell size() const
|
|
|
|
{
|
|
|
|
return header >> 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *xt() const
|
|
|
|
{
|
|
|
|
return (void *)(this + 1);
|
|
|
|
}
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Assembly code makes assumptions about the layout of this struct */
|
2009-05-04 05:50:24 -04:00
|
|
|
struct word : public object {
|
|
|
|
static const cell type_number = WORD_TYPE;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* TAGGED hashcode */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell hashcode;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* TAGGED word name */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell name;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* TAGGED word vocabulary */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell vocabulary;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* TAGGED definition */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell def;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* TAGGED property assoc for library code */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell props;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* TAGGED alternative entry point for direct non-tail calls. Used for inline caching */
|
2009-05-06 20:22:22 -04:00
|
|
|
cell pic_def;
|
|
|
|
/* TAGGED alternative entry point for direct tail calls. Used for inline caching */
|
|
|
|
cell pic_tail_def;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* TAGGED call count for profiling */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell counter;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* TAGGED machine code for sub-primitive */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell subprimitive;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* UNTAGGED execution token: jump here to execute word */
|
2009-05-04 05:50:24 -04:00
|
|
|
void *xt;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* UNTAGGED compiled code block */
|
2009-05-04 05:50:24 -04:00
|
|
|
code_block *code;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* UNTAGGED profiler stub */
|
2009-05-04 05:50:24 -04:00
|
|
|
code_block *profiling;
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Assembly code makes assumptions about the layout of this struct */
|
2009-05-04 05:50:24 -04:00
|
|
|
struct wrapper : public object {
|
|
|
|
static const cell type_number = WRAPPER_TYPE;
|
|
|
|
cell object;
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Assembly code makes assumptions about the layout of this struct */
|
2009-05-04 05:50:24 -04:00
|
|
|
struct boxed_float : object {
|
|
|
|
static const cell type_number = FLOAT_TYPE;
|
2009-05-04 02:00:30 -04:00
|
|
|
|
|
|
|
#ifndef FACTOR_64
|
2009-05-04 05:50:24 -04:00
|
|
|
cell padding;
|
2009-05-04 02:00:30 -04:00
|
|
|
#endif
|
|
|
|
|
2009-05-02 05:04:19 -04:00
|
|
|
double n;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Assembly code makes assumptions about the layout of this struct */
|
2009-05-04 05:50:24 -04:00
|
|
|
struct quotation : public object {
|
|
|
|
static const cell type_number = QUOTATION_TYPE;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell array;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell cached_effect;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell cache_counter;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* UNTAGGED */
|
2009-05-04 05:50:24 -04:00
|
|
|
void *xt;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* UNTAGGED compiled code block */
|
2009-05-04 05:50:24 -04:00
|
|
|
code_block *code;
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Assembly code makes assumptions about the layout of this struct */
|
2009-05-04 05:50:24 -04:00
|
|
|
struct alien : public object {
|
|
|
|
static const cell type_number = ALIEN_TYPE;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-10-09 04:20:50 -04:00
|
|
|
cell base;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell expired;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* untagged */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell displacement;
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
struct dll : public object {
|
|
|
|
static const cell type_number = DLL_TYPE;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged byte array holding a C string */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell path;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* OS-specific handle */
|
|
|
|
void *dll;
|
|
|
|
};
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
struct stack_frame
|
2009-05-02 05:04:19 -04:00
|
|
|
{
|
2009-05-04 05:50:24 -04:00
|
|
|
void *xt;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* Frame size in bytes */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell size;
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
|
|
|
|
2009-05-08 16:05:55 -04:00
|
|
|
struct callstack : public object {
|
|
|
|
static const cell type_number = CALLSTACK_TYPE;
|
|
|
|
/* tagged */
|
|
|
|
cell length;
|
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
stack_frame *frame_at(cell offset) const
|
2009-05-20 19:52:21 -04:00
|
|
|
{
|
|
|
|
return (stack_frame *)((char *)(this + 1) + offset);
|
|
|
|
}
|
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
stack_frame *top() const { return (stack_frame *)(this + 1); }
|
|
|
|
stack_frame *bottom() const { return (stack_frame *)((cell)(this + 1) + untag_fixnum(length)); }
|
2009-05-08 16:05:55 -04:00
|
|
|
};
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
struct tuple : public object {
|
|
|
|
static const cell type_number = TUPLE_TYPE;
|
2009-05-02 05:04:19 -04:00
|
|
|
/* tagged layout */
|
2009-05-04 05:50:24 -04:00
|
|
|
cell layout;
|
2009-05-04 02:00:30 -04:00
|
|
|
|
2009-10-21 21:12:57 -04:00
|
|
|
cell *data() const { return (cell *)(this + 1); }
|
2009-05-02 05:04:19 -04:00
|
|
|
};
|
2009-05-04 02:46:13 -04:00
|
|
|
|
|
|
|
}
|