1 /* Cycript - The Truly Universal Scripting Language
2 * Copyright (C) 2009-2016 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "Replace.hpp"
28 CYFunctionExpression
*CYNonLocalize(CYContext
&context
, CYFunctionExpression
*function
) {
29 function
->nonlocal_
= context
.nextlocal_
;
33 CYFunctionExpression
*CYSuperize(CYContext
&context
, CYFunctionExpression
*function
) {
34 function
->super_
= context
.super_
;
38 CYStatement
*CYDefineProperty(CYExpression
*object
, CYExpression
*name
, bool configurable
, bool enumerable
, CYProperty
*descriptor
) {
39 return $
E($
C3($
M($
V("Object"), $
S("defineProperty")), object
, name
, $
CYObject(CYList
<CYProperty
>()
40 ->* (configurable
? $
CYPropertyValue($
S("configurable"), $
CYTrue()) : NULL
)
41 ->* (enumerable
? $
CYPropertyValue($
S("enumerable"), $
CYTrue()) : NULL
)
45 static void CYImplicitReturn(CYStatement
*&code
) {
46 if (CYStatement
*&last
= CYGetLast(code
))
47 last
= last
->Return();
50 CYExpression
*CYAdd::Replace(CYContext
&context
) {
51 CYInfix::Replace(context
);
53 CYString
*lhs(dynamic_cast<CYString
*>(lhs_
));
54 CYString
*rhs(dynamic_cast<CYString
*>(rhs_
));
56 if (lhs
!= NULL
|| rhs
!= NULL
) {
58 lhs
= lhs_
->String(context
);
61 } else if (rhs
== NULL
) {
62 rhs
= rhs_
->String(context
);
67 return lhs
->Concat(context
, rhs
);
70 if (CYNumber
*lhn
= lhs_
->Number(context
))
71 if (CYNumber
*rhn
= rhs_
->Number(context
))
72 return $
D(lhn
->Value() + rhn
->Value());
77 CYExpression
*CYAddressOf::Replace(CYContext
&context
) {
78 return $
C0($
M(rhs_
, $
S("$cya")));
81 CYTarget
*CYApply::AddArgument(CYContext
&context
, CYExpression
*value
) {
82 CYArgument
**argument(&arguments_
);
83 while (*argument
!= NULL
)
84 argument
= &(*argument
)->next_
;
85 *argument
= $
CYArgument(value
);
89 CYArgument
*CYArgument::Replace(CYContext
&context
) { $
T(NULL
)
90 context
.Replace(value_
);
91 next_
= next_
->Replace(context
);
103 CYTarget
*CYArray::Replace(CYContext
&context
) {
104 CYForEach (element
, elements_
)
105 element
->Replace(context
);
109 CYTarget
*CYArrayComprehension::Replace(CYContext
&context
) {
110 CYIdentifier
*cyv(context
.Unique());
112 return $
C0($
F(NULL
, $
P1($
B(cyv
), comprehensions_
->Parameters(context
)), $$
113 ->* $
E($
CYAssign($
V(cyv
), $
CYArray()))
114 ->* comprehensions_
->Replace(context
, $
E($
C1($
M($
V(cyv
), $
S("push")), expression_
)))
115 ->* $
CYReturn($
V(cyv
))
119 CYExpression
*CYAssignment::Replace(CYContext
&context
) {
120 // XXX: this is a horrible hack but I'm a month over schedule :(
121 if (CYSubscriptMember
*subscript
= dynamic_cast<CYSubscriptMember
*>(lhs_
))
122 return $
C2($
M(subscript
->object_
, $
S("$cys")), subscript
->property_
, rhs_
);
123 context
.Replace(lhs_
);
124 context
.Replace(rhs_
);
128 CYStatement
*CYBlock::Return() {
129 CYImplicitReturn(code_
);
133 CYStatement
*CYBlock::Replace(CYContext
&context
) {
134 CYScope
scope(true, context
);
135 context
.ReplaceAll(code_
);
136 scope
.Close(context
);
143 CYStatement
*CYBreak::Replace(CYContext
&context
) {
147 CYTarget
*CYCall::Replace(CYContext
&context
) {
148 context
.Replace(function_
);
149 arguments_
->Replace(context
);
156 void Catch::Replace(CYContext
&context
) { $
T()
157 CYScope
scope(true, context
);
159 name_
= name_
->Replace(context
, CYIdentifierCatch
);
161 context
.ReplaceAll(code_
);
162 scope
.Close(context
);
167 CYTarget
*CYClassExpression::Replace(CYContext
&context
) {
170 CYIdentifier
*super(context
.Unique());
172 CYIdentifier
*old(context
.super_
);
173 context
.super_
= super
;
175 CYIdentifier
*constructor(context
.Unique());
176 CYForEach (member
, tail_
->static_
)
177 member
->Replace(context
, builder
, $
V(constructor
), true);
179 CYIdentifier
*prototype(context
.Unique());
180 CYForEach (member
, tail_
->instance_
)
181 member
->Replace(context
, builder
, $
V(prototype
), true);
183 if (tail_
->constructor_
== NULL
)
184 tail_
->constructor_
= $
CYFunctionExpression(NULL
, NULL
, NULL
);
185 tail_
->constructor_
->name_
= name_
;
186 tail_
->constructor_
= CYSuperize(context
, tail_
->constructor_
);
188 context
.super_
= old
;
190 return $
C1($
CYFunctionExpression(NULL
, $
P($
B(super
)), $$
191 ->* $
CYVar($
B1($
B(constructor
, tail_
->constructor_
)))
192 ->* $
CYVar($
B1($
B(prototype
, $
CYFunctionExpression(NULL
, NULL
, NULL
))))
193 ->* $
E($
CYAssign($
M($
V(prototype
), $
S("prototype")), $
M($
V(super
), $
S("prototype"))))
194 ->* $
E($
CYAssign($
V(prototype
), $
N($
V(prototype
))))
195 ->* CYDefineProperty($
V(prototype
), $
S("constructor"), false, false, $
CYPropertyValue($
S("value"), $
V(constructor
)))
196 ->* $
CYVar(builder
.bindings_
)
197 ->* builder
.statements_
198 ->* CYDefineProperty($
V(constructor
), $
S("prototype"), false, false, $
CYPropertyValue($
S("value"), $
V(prototype
)))
199 ->* $
CYReturn($
V(constructor
))
200 ), tail_
->extends_
?: $
V($
I("Object")));
203 CYStatement
*CYClassStatement::Replace(CYContext
&context
) {
204 return $
CYVar($
B1($
B(name_
, $
CYClassExpression(name_
, tail_
))));
207 void CYClause::Replace(CYContext
&context
) { $
T()
208 context
.Replace(value_
);
209 context
.ReplaceAll(code_
);
210 next_
->Replace(context
);
213 CYExpression
*CYCompound::Replace(CYContext
&context
) {
214 context
.Replace(expression_
);
215 context
.Replace(next_
);
217 if (CYCompound
*compound
= dynamic_cast<CYCompound
*>(expression_
)) {
218 expression_
= compound
->expression_
;
219 compound
->expression_
= compound
->next_
;
220 compound
->next_
= next_
;
227 CYFunctionParameter
*CYCompound::Parameter() const {
228 CYFunctionParameter
*next(next_
->Parameter());
232 CYFunctionParameter
*parameter(expression_
->Parameter());
233 if (parameter
== NULL
)
236 parameter
->SetNext(next
);
240 CYFunctionParameter
*CYComprehension::Parameters(CYContext
&context
) const { $
T(NULL
)
241 CYFunctionParameter
*next(next_
->Parameters(context
));
242 if (CYFunctionParameter
*parameter
= Parameter(context
)) {
243 parameter
->SetNext(next
);
249 CYStatement
*CYComprehension::Replace(CYContext
&context
, CYStatement
*statement
) const {
250 return next_
== NULL
? statement
: next_
->Replace(context
, statement
);
253 CYExpression
*CYComputed::PropertyName(CYContext
&context
) {
257 CYExpression
*CYCondition::Replace(CYContext
&context
) {
258 context
.Replace(test_
);
259 context
.Replace(true_
);
260 context
.Replace(false_
);
264 void CYContext::NonLocal(CYStatement
*&statements
) {
265 CYContext
&context(*this);
267 if (nextlocal_
!= NULL
&& nextlocal_
->identifier_
!= NULL
) {
268 CYIdentifier
*cye($
I("$cye")->Replace(context
, CYIdentifierGlobal
));
269 CYIdentifier
*unique(nextlocal_
->identifier_
->Replace(context
, CYIdentifierGlobal
));
271 CYStatement
*declare(
272 $
CYVar($
B1($
B(unique
, $
CYObject()))));
274 cy::Syntax::Catch
*rescue(
275 $
cy::Syntax::Catch(cye
, $$
276 ->* $
CYIf($
CYIdentical($
M($
V(cye
), $
S("$cyk")), $
V(unique
)), $$
277 ->* $
CYReturn($
M($
V(cye
), $
S("$cyv"))))
278 ->* $
cy::Syntax::Throw($
V(cye
))));
280 context
.Replace(declare
);
281 rescue
->Replace(context
);
285 ->* $
cy::Syntax::Try(statements
, rescue
, NULL
);
289 CYIdentifier
*CYContext::Unique() {
290 return $
CYIdentifier($pool
.strcat("$cy", $pool
.itoa(unique_
++), NULL
));
293 CYStatement
*CYContinue::Replace(CYContext
&context
) {
297 CYStatement
*CYDebugger::Replace(CYContext
&context
) {
301 CYTarget
*CYBinding::Target(CYContext
&context
) {
302 return $
V(identifier_
);
305 CYAssignment
*CYBinding::Replace(CYContext
&context
, CYIdentifierKind kind
) {
306 identifier_
= identifier_
->Replace(context
, kind
);
308 if (initializer_
== NULL
)
311 CYAssignment
*value($
CYAssign(Target(context
), initializer_
));
316 CYExpression
*CYBindings::Replace(CYContext
&context
, CYIdentifierKind kind
) { $
T(NULL
)
317 CYAssignment
*assignment(binding_
->Replace(context
, kind
));
318 CYExpression
*compound(next_
->Replace(context
, kind
));
320 if (assignment
!= NULL
)
321 if (compound
== NULL
)
322 compound
= assignment
;
324 compound
= $
CYCompound(assignment
, compound
);
328 CYFunctionParameter
*CYBindings::Parameter(CYContext
&context
) { $
T(NULL
)
329 return $
CYFunctionParameter($
CYBinding(binding_
->identifier_
), next_
->Parameter(context
));
332 CYArgument
*CYBindings::Argument(CYContext
&context
) { $
T(NULL
)
333 return $
CYArgument(binding_
->initializer_
, next_
->Argument(context
));
336 CYTarget
*CYDirectMember::Replace(CYContext
&context
) {
337 context
.Replace(object_
);
338 context
.Replace(property_
);
342 CYStatement
*CYDoWhile::Replace(CYContext
&context
) {
343 context
.Replace(test_
);
344 context
.ReplaceAll(code_
);
348 void CYElementSpread::Replace(CYContext
&context
) {
349 context
.Replace(value_
);
352 void CYElementValue::Replace(CYContext
&context
) {
353 context
.Replace(value_
);
356 CYForInitializer
*CYEmpty::Replace(CYContext
&context
) {
360 CYTarget
*CYEncodedType::Replace(CYContext
&context
) {
361 return typed_
->Replace(context
);
364 CYTarget
*CYEval::Replace(CYContext
&context
) {
365 context
.scope_
->Damage();
366 if (arguments_
!= NULL
)
367 arguments_
->value_
= $
C1($
M($
V("Cycript"), $
S("compile")), arguments_
->value_
);
368 return $
C($
V("eval"), arguments_
);
371 CYStatement
*CYExpress::Return() {
372 return $
CYReturn(expression_
);
375 CYForInitializer
*CYExpress::Replace(CYContext
&context
) {
376 context
.Replace(expression_
);
380 CYTarget
*CYExpression::AddArgument(CYContext
&context
, CYExpression
*value
) {
381 return $
C1(this, value
);
384 CYFunctionParameter
*CYExpression::Parameter() const {
388 CYTarget
*CYExtend::Replace(CYContext
&context
) {
389 return object_
.Replace(context
, lhs_
);
392 CYStatement
*CYExternalDefinition::Replace(CYContext
&context
) {
393 return $
E($
CYAssign($
V(name_
), $
CYExternalExpression(abi_
, type_
, name_
)));
396 CYTarget
*CYExternalExpression::Replace(CYContext
&context
) {
397 return $
C1(type_
->Replace(context
), $
C2($
V("dlsym"), $
V("RTLD_DEFAULT"), name_
->PropertyName(context
)));
400 CYNumber
*CYFalse::Number(CYContext
&context
) {
404 CYString
*CYFalse::String(CYContext
&context
) {
408 CYExpression
*CYFatArrow::Replace(CYContext
&context
) {
409 CYFunctionExpression
*function($
CYFunctionExpression(NULL
, parameters_
, code_
));
410 function
->this_
.SetNext(context
.this_
);
414 void CYFinally::Replace(CYContext
&context
) { $
T()
415 CYScope
scope(true, context
);
416 context
.ReplaceAll(code_
);
417 scope
.Close(context
);
420 CYStatement
*CYFor::Replace(CYContext
&context
) {
421 CYScope
outer(true, context
);
422 context
.Replace(initializer_
);
424 context
.Replace(test_
);
427 CYScope
inner(true, context
);
428 context
.ReplaceAll(code_
);
429 inner
.Close(context
);
432 context
.Replace(increment_
);
434 outer
.Close(context
);
438 CYStatement
*CYForLexical::Initialize(CYContext
&context
, CYExpression
*value
) {
440 if (binding_
->initializer_
== NULL
)
442 value
= binding_
->initializer_
;
445 return $
CYLexical(constant_
, $
B1($
CYBinding(binding_
->identifier_
, value
)));
448 CYTarget
*CYForLexical::Replace(CYContext
&context
) {
449 _assert(binding_
->Replace(context
, CYIdentifierLexical
) == NULL
);
450 return binding_
->Target(context
);
453 CYStatement
*CYForIn::Replace(CYContext
&context
) {
454 CYScope
scope(true, context
);
455 context
.Replace(initializer_
);
456 context
.Replace(iterable_
);
457 context
.ReplaceAll(code_
);
458 scope
.Close(context
);
462 CYStatement
*CYForInitialized::Replace(CYContext
&context
) {
463 CYAssignment
*assignment(binding_
->Replace(context
, CYIdentifierVariable
));
465 ->* (assignment
== NULL
? NULL
: $
CYExpress(assignment
))
466 ->* $
CYForIn(binding_
->Target(context
), iterable_
, code_
));
469 CYFunctionParameter
*CYForInComprehension::Parameter(CYContext
&context
) const {
470 return $
CYFunctionParameter(binding_
);
473 CYStatement
*CYForInComprehension::Replace(CYContext
&context
, CYStatement
*statement
) const {
474 return $
CYForIn(binding_
->Target(context
), iterable_
, CYComprehension::Replace(context
, statement
));
477 CYStatement
*CYForOf::Replace(CYContext
&context
) {
478 CYIdentifier
*item(context
.Unique()), *list(context
.Unique());
481 ->* initializer_
->Initialize(context
, NULL
)
482 ->* $
CYLexical(false, $
B2($
B(list
, iterable_
), $
B(item
)))
483 ->* $
CYForIn($
V(item
), $
V(list
), $
CYBlock($$
484 ->* initializer_
->Initialize(context
, $
M($
V(list
), $
V(item
)))
489 CYFunctionParameter
*CYForOfComprehension::Parameter(CYContext
&context
) const {
490 return $
CYFunctionParameter(binding_
);
493 CYStatement
*CYForOfComprehension::Replace(CYContext
&context
, CYStatement
*statement
) const {
494 CYIdentifier
*cys(context
.Unique());
497 ->* $
CYLexical(false, $
B1($
B(cys
, iterable_
)))
498 ->* $
CYForIn(binding_
->Target(context
), $
V(cys
), $
CYBlock($$
499 ->* $
E($
CYAssign(binding_
->Target(context
), $
M($
V(cys
), binding_
->Target(context
))))
500 ->* CYComprehension::Replace(context
, statement
)
504 CYStatement
*CYForVariable::Initialize(CYContext
&context
, CYExpression
*value
) {
506 if (binding_
->initializer_
== NULL
)
508 value
= binding_
->initializer_
;
511 return $
CYVar($
B1($
CYBinding(binding_
->identifier_
, value
)));
514 CYTarget
*CYForVariable::Replace(CYContext
&context
) {
515 _assert(binding_
->Replace(context
, CYIdentifierVariable
) == NULL
);
516 return binding_
->Target(context
);
519 // XXX: this is evil evil black magic. don't ask, don't tell... don't believe!
520 #define MappingSet "0etnirsoalfucdphmgyvbxTwSNECAFjDLkMOIBPqzRH$_WXUVGYKQJZ"
521 //#define MappingSet "0abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_"
523 void CYFunction::Replace(CYContext
&context
) {
524 CYThisScope
*_this(context
.this_
);
525 context
.this_
= &this_
;
526 context
.this_
= CYGetLast(context
.this_
);
528 CYIdentifier
*super(context
.super_
);
529 context
.super_
= super_
;
531 CYNonLocal
*nonlocal(context
.nonlocal_
);
532 CYNonLocal
*nextlocal(context
.nextlocal_
);
535 if (nonlocal_
!= NULL
) {
537 context
.nonlocal_
= nonlocal_
;
540 nonlocal_
= $
CYNonLocal();
541 context
.nextlocal_
= nonlocal_
;
544 CYScope
scope(!localize
, context
);
546 $
I("arguments")->Replace(context
, CYIdentifierMagic
);
548 parameters_
->Replace(context
, code_
);
550 context
.ReplaceAll(code_
);
553 CYImplicitReturn(code_
);
555 if (CYIdentifier
*identifier
= this_
.identifier_
) {
556 context
.scope_
->Declare(context
, identifier
, CYIdentifierVariable
);
558 ->* $
E($
CYAssign($
V(identifier
), $
CYThis()))
563 context
.NonLocal(code_
);
565 context
.nextlocal_
= nextlocal
;
566 context
.nonlocal_
= nonlocal
;
568 context
.super_
= super
;
569 context
.this_
= _this
;
571 scope
.Close(context
, code_
);
574 CYTarget
*CYFunctionExpression::Replace(CYContext
&context
) {
575 CYScope
scope(false, context
);
577 name_
= name_
->Replace(context
, CYIdentifierOther
);
579 CYFunction::Replace(context
);
580 scope
.Close(context
);
584 void CYFunctionParameter::Replace(CYContext
&context
, CYStatement
*&statements
) { $
T()
585 CYAssignment
*assignment(binding_
->Replace(context
, CYIdentifierArgument
));
587 next_
->Replace(context
, statements
);
589 if (assignment
!= NULL
)
591 ->* $
CYIf($
CYIdentical($
CYTypeOf(binding_
->Target(context
)), $
S("undefined")), $$
596 CYStatement
*CYFunctionStatement::Replace(CYContext
&context
) {
597 name_
= name_
->Replace(context
, CYIdentifierOther
);
598 CYFunction::Replace(context
);
602 CYIdentifier
*CYIdentifier::Replace(CYContext
&context
, CYIdentifierKind kind
) {
606 return next_
->Replace(context
, kind
);
607 next_
= context
.scope_
->Declare(context
, this, kind
)->identifier_
;
611 CYStatement
*CYIf::Return() {
612 CYImplicitReturn(true_
);
613 CYImplicitReturn(false_
);
617 CYStatement
*CYIf::Replace(CYContext
&context
) {
618 context
.Replace(test_
);
619 context
.ReplaceAll(true_
);
620 context
.ReplaceAll(false_
);
624 CYFunctionParameter
*CYIfComprehension::Parameter(CYContext
&context
) const {
628 CYStatement
*CYIfComprehension::Replace(CYContext
&context
, CYStatement
*statement
) const {
629 return $
CYIf(test_
, CYComprehension::Replace(context
, statement
));
632 CYStatement
*CYImport::Replace(CYContext
&context
) {
633 return $
CYVar($
B1($
B($
I(module_
->part_
->Word()), $
C1($
V("require"), module_
->Replace(context
, "/")))));
636 CYStatement
*CYImportDeclaration::Replace(CYContext
&context
) {
637 CYIdentifier
*module(context
.Unique());
639 CYList
<CYStatement
> statements
;
640 CYForEach (specifier
, specifiers_
)
641 statements
->*specifier
->Replace(context
, module);
644 ->* $
CYLexical(false, $
B1($
B(module, $
C1($
V("require"), module_
))))
648 CYStatement
*CYImportSpecifier::Replace(CYContext
&context
, CYIdentifier
*module) {
649 binding_
= binding_
->Replace(context
, CYIdentifierLexical
);
651 CYExpression
*import($
V(module));
653 import = $
M(import, $
S(name_
));
654 return $
E($
CYAssign($
V(binding_
), import));
657 CYTarget
*CYIndirect::Replace(CYContext
&context
) {
658 return $
M(rhs_
, $
S("$cyi"));
661 CYTarget
*CYIndirectMember::Replace(CYContext
&context
) {
662 return $
M($
CYIndirect(object_
), property_
);
665 CYExpression
*CYInfix::Replace(CYContext
&context
) {
666 context
.Replace(lhs_
);
667 context
.Replace(rhs_
);
671 CYStatement
*CYLabel::Replace(CYContext
&context
) {
672 context
.Replace(statement_
);
676 CYTarget
*CYLambda::Replace(CYContext
&context
) {
677 return $
N2($
V("Functor"), $
CYFunctionExpression(NULL
, parameters_
->Parameters(context
), code_
), parameters_
->TypeSignature(context
, typed_
->Replace(context
)));
680 CYForInitializer
*CYLexical::Replace(CYContext
&context
) {
681 if (CYExpression
*expression
= bindings_
->Replace(context
, CYIdentifierLexical
))
682 return $
E(expression
);
686 CYFunctionExpression
*CYMethod::Constructor() {
690 void CYMethod::Replace(CYContext
&context
) {
691 CYFunction::Replace(context
);
694 CYString
*CYModule::Replace(CYContext
&context
, const char *separator
) const {
696 return $
CYString(part_
);
697 return $
CYString($pool
.strcat(next_
->Replace(context
, separator
)->Value(), separator
, part_
->Word(), NULL
));
700 CYExpression
*CYMultiply::Replace(CYContext
&context
) {
701 CYInfix::Replace(context
);
703 if (CYNumber
*lhn
= lhs_
->Number(context
))
704 if (CYNumber
*rhn
= rhs_
->Number(context
))
705 return $
D(lhn
->Value() * rhn
->Value());
713 CYTarget
*New::AddArgument(CYContext
&context
, CYExpression
*value
) {
714 CYSetLast(arguments_
) = $
CYArgument(value
);
718 CYTarget
*New::Replace(CYContext
&context
) {
719 context
.Replace(constructor_
);
720 arguments_
->Replace(context
);
726 CYNumber
*CYNull::Number(CYContext
&context
) {
730 CYString
*CYNull::String(CYContext
&context
) {
734 CYNumber
*CYNumber::Number(CYContext
&context
) {
738 CYString
*CYNumber::String(CYContext
&context
) {
739 // XXX: there is a precise algorithm for this
740 return $
S($pool
.sprintf(24, "%.17g", Value()));
743 CYExpression
*CYNumber::PropertyName(CYContext
&context
) {
744 return String(context
);
747 CYTarget
*CYObject::Replace(CYContext
&context
, CYTarget
*seed
) {
749 if (properties_
!= NULL
)
750 properties_
= properties_
->ReplaceAll(context
, builder
, $
CYThis(), seed
!= this);
753 return $
C1($
M($
CYFunctionExpression(NULL
, builder
.bindings_
->Parameter(context
),
755 ->* $
CYReturn($
CYThis())
756 ), $
S("call")), seed
, builder
.bindings_
->Argument(context
));
759 CYForEach (property
, properties_
)
760 property
->Replace(context
);
764 CYTarget
*CYObject::Replace(CYContext
&context
) {
765 return Replace(context
, this);
768 CYTarget
*CYParenthetical::Replace(CYContext
&context
) {
769 // XXX: return expression_;
770 context
.Replace(expression_
);
774 CYExpression
*CYPostfix::Replace(CYContext
&context
) {
775 context
.Replace(lhs_
);
779 CYExpression
*CYPrefix::Replace(CYContext
&context
) {
780 context
.Replace(rhs_
);
784 CYProperty
*CYProperty::ReplaceAll(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, bool update
) {
787 Replace(context
, builder
, self
, false);
789 next_
= next_
->ReplaceAll(context
, builder
, self
, update
);
790 return update
? next_
: this;
793 void CYProperty::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, bool protect
) {
794 CYExpression
*name(name_
->PropertyName(context
));
795 if (name_
->Computed()) {
796 CYIdentifier
*unique(context
.Unique());
798 ->* $
B1($
B(unique
, name
));
802 Replace(context
, builder
, self
, name
, protect
);
805 bool CYProperty::Update() const {
806 return name_
->Computed();
809 void CYPropertyGetter::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, CYExpression
*name
, bool protect
) {
810 CYIdentifier
*unique(context
.Unique());
812 ->* $
B1($
B(unique
, CYSuperize(context
, $
CYFunctionExpression(NULL
, parameters_
, code_
))));
814 ->* CYDefineProperty(self
, name
, true, !protect
, $
CYPropertyValue($
S("get"), $
V(unique
)));
817 CYFunctionExpression
*CYPropertyMethod::Constructor() {
818 return name_
->Constructor() ? $
CYFunctionExpression(NULL
, parameters_
, code_
) : NULL
;
821 void CYPropertyMethod::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, CYExpression
*name
, bool protect
) {
822 CYIdentifier
*unique(context
.Unique());
824 ->* $
B1($
B(unique
, CYSuperize(context
, $
CYFunctionExpression(NULL
, parameters_
, code_
))));
826 ->* (!protect
? $
E($
CYAssign($
M(self
, name
), $
V(unique
))) :
827 CYDefineProperty(self
, name
, true, !protect
, $
CYPropertyValue($
S("value"), $
V(unique
), $
CYPropertyValue($
S("writable"), $
CYTrue()))));
830 bool CYPropertyMethod::Update() const {
834 void CYPropertySetter::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, CYExpression
*name
, bool protect
) {
835 CYIdentifier
*unique(context
.Unique());
837 ->* $
B1($
B(unique
, CYSuperize(context
, $
CYFunctionExpression(NULL
, parameters_
, code_
))));
839 ->* CYDefineProperty(self
, name
, true, !protect
, $
CYPropertyValue($
S("set"), $
V(unique
)));
842 void CYPropertyValue::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, CYExpression
*name
, bool protect
) {
844 CYIdentifier
*unique(context
.Unique());
846 ->* $
B1($
B(unique
, value_
));
848 ->* $
E($
CYAssign($
M(self
, name
), $
V(unique
)));
851 void CYPropertyValue::Replace(CYContext
&context
) {
852 context
.Replace(value_
);
855 void CYScript::Replace(CYContext
&context
) {
856 CYScope
scope(false, context
);
857 context
.scope_
->Damage();
859 context
.nextlocal_
= $
CYNonLocal();
860 context
.ReplaceAll(code_
);
861 context
.NonLocal(code_
);
863 scope
.Close(context
, code_
);
867 for (std::vector
<CYIdentifier
*>::const_iterator
i(context
.replace_
.begin()); i
!= context
.replace_
.end(); ++i
) {
869 if (context
.options_
.verbose_
)
870 name
= $pool
.strcat("$", $pool
.itoa(offset
++), NULL
);
876 unsigned position(7), local(offset
++ + 1);
879 unsigned index(local
% (sizeof(MappingSet
) - 1));
880 local
/= sizeof(MappingSet
) - 1;
881 id
[--position
] = MappingSet
[index
];
882 } while (local
!= 0);
884 if (scope
.Lookup(context
, id
+ position
) != NULL
)
886 // XXX: at some point, this could become a keyword
888 name
= $pool
.strmemdup(id
+ position
, 7 - position
);
891 CYIdentifier
*identifier(*i
);
892 _assert(identifier
->next_
== identifier
);
893 identifier
->next_
= $
I(name
);
897 CYTarget
*CYResolveMember::Replace(CYContext
&context
) {
898 return $
M($
M(object_
, $
S("$cyr")), property_
);
901 CYStatement
*CYReturn::Replace(CYContext
&context
) {
902 if (context
.nonlocal_
!= NULL
) {
903 CYProperty
*value(value_
== NULL
? NULL
: $
CYPropertyValue($
S("$cyv"), value_
));
904 return $
cy::Syntax::Throw($
CYObject(
905 $
CYPropertyValue($
S("$cyk"), $
V(context
.nonlocal_
->Target(context
)), value
)
909 context
.Replace(value_
);
913 CYTarget
*CYRubyBlock::Replace(CYContext
&context
) {
914 return lhs_
->AddArgument(context
, proc_
->Replace(context
));
917 CYTarget
*CYRubyBlock::AddArgument(CYContext
&context
, CYExpression
*value
) {
918 return Replace(context
)->AddArgument(context
, value
);
921 CYTarget
*CYRubyProc::Replace(CYContext
&context
) {
922 CYFunctionExpression
*function($
CYFunctionExpression(NULL
, parameters_
, code_
));
923 function
= CYNonLocalize(context
, function
);
924 function
->implicit_
= true;
928 CYScope::CYScope(bool transparent
, CYContext
&context
) :
929 transparent_(transparent
),
930 parent_(context
.scope_
),
935 _assert(!transparent_
|| parent_
!= NULL
);
936 context
.scope_
= this;
939 void CYScope::Damage() {
945 CYIdentifierFlags
*CYScope::Lookup(CYContext
&context
, const char *word
) {
946 CYForEach (i
, internal_
)
947 if (strcmp(i
->identifier_
->Word(), word
) == 0)
952 CYIdentifierFlags
*CYScope::Lookup(CYContext
&context
, CYIdentifier
*identifier
) {
953 return Lookup(context
, identifier
->Word());
956 CYIdentifierFlags
*CYScope::Declare(CYContext
&context
, CYIdentifier
*identifier
, CYIdentifierKind kind
) {
957 _assert(identifier
->next_
== NULL
|| identifier
->next_
== identifier
);
959 CYIdentifierFlags
*existing(Lookup(context
, identifier
));
960 if (existing
== NULL
)
961 internal_
= $
CYIdentifierFlags(identifier
, kind
, internal_
);
963 if (existing
== NULL
)
966 if (kind
== CYIdentifierGlobal
);
967 else if (existing
->kind_
== CYIdentifierGlobal
|| existing
->kind_
== CYIdentifierMagic
)
968 existing
->kind_
= kind
;
969 else if (existing
->kind_
== CYIdentifierLexical
|| kind
== CYIdentifierLexical
)
970 _assert(false); // XXX: throw new SyntaxError()
975 void CYScope::Merge(CYContext
&context
, const CYIdentifierFlags
*flags
) {
976 _assert(flags
->identifier_
->next_
== flags
->identifier_
);
977 CYIdentifierFlags
*existing(Declare(context
, flags
->identifier_
, flags
->kind_
));
978 flags
->identifier_
->next_
= existing
->identifier_
;
980 existing
->count_
+= flags
->count_
;
981 if (existing
->offset_
< flags
->offset_
)
982 existing
->offset_
= flags
->offset_
;
985 void CYScope::Close(CYContext
&context
, CYStatement
*&statements
) {
988 CYList
<CYBindings
> bindings
;
990 CYForEach (i
, internal_
)
991 if (i
->kind_
== CYIdentifierVariable
)
993 ->* $
CYBindings($
CYBinding(i
->identifier_
));
996 CYVar
*var($
CYVar(bindings
));
997 var
->SetNext(statements
);
1002 void CYScope::Close(CYContext
&context
) {
1003 context
.scope_
= parent_
;
1005 CYForEach (i
, internal_
) {
1006 _assert(i
->identifier_
->next_
== i
->identifier_
);
1008 case CYIdentifierArgument
: {
1009 _assert(!transparent_
);
1012 case CYIdentifierLexical
: {
1014 CYIdentifier
*replace(context
.Unique());
1015 replace
->next_
= replace
;
1016 i
->identifier_
->next_
= replace
;
1017 i
->identifier_
= replace
;
1021 i
->kind_
= CYIdentifierVariable
;
1023 parent_
->Declare(context
, i
->identifier_
, CYIdentifierVariable
);
1026 case CYIdentifierVariable
: {
1028 parent_
->Declare(context
, i
->identifier_
, i
->kind_
);
1029 i
->kind_
= CYIdentifierGlobal
;
1037 typedef std::multimap
<unsigned, CYIdentifier
*> CYIdentifierOffsetMap
;
1038 CYIdentifierOffsetMap offsets
;
1040 CYForEach (i
, internal_
) {
1041 _assert(i
->identifier_
->next_
== i
->identifier_
);
1043 case CYIdentifierArgument
:
1044 case CYIdentifierVariable
:
1045 offsets
.insert(CYIdentifierOffsetMap::value_type(i
->offset_
, i
->identifier_
));
1051 for (CYIdentifierOffsetMap::const_iterator
i(offsets
.begin()); i
!= offsets
.end(); ++i
) {
1052 if (offset
< i
->first
)
1054 CYIdentifier
*identifier(i
->second
);
1056 if (offset
>= context
.replace_
.size())
1057 context
.replace_
.resize(offset
+ 1, NULL
);
1058 CYIdentifier
*&replace(context
.replace_
[offset
++]);
1060 if (replace
== NULL
)
1061 replace
= identifier
;
1063 _assert(replace
->next_
== replace
);
1064 identifier
->next_
= replace
;
1068 if (parent_
== NULL
)
1071 CYForEach (i
, internal_
) {
1073 case CYIdentifierGlobal
: {
1074 if (i
->offset_
< offset
)
1075 i
->offset_
= offset
;
1076 parent_
->Merge(context
, i
);
1081 CYTarget
*CYSubscriptMember::Replace(CYContext
&context
) {
1082 return $
C1($
M(object_
, $
S("$cyg")), property_
);
1085 CYElementValue
*CYSpan::Replace(CYContext
&context
) { $
T(NULL
)
1086 return $
CYElementValue(expression_
, $
CYElementValue(string_
, next_
->Replace(context
)));
1089 CYStatement
*CYStatement::Return() {
1093 CYString
*CYString::Concat(CYContext
&context
, CYString
*rhs
) const {
1094 size_t size(size_
+ rhs
->size_
);
1095 char *value($
char[size
+ 1]);
1096 memcpy(value
, value_
, size_
);
1097 memcpy(value
+ size_
, rhs
->value_
, rhs
->size_
);
1099 return $
S(value
, size
);
1102 CYIdentifier
*CYString::Identifier() const {
1103 if (const char *word
= Word())
1104 return $
CYIdentifier(word
);
1108 CYNumber
*CYString::Number(CYContext
&context
) {
1109 // XXX: there is a precise algorithm for this
1113 CYExpression
*CYString::PropertyName(CYContext
&context
) {
1117 CYString
*CYString::String(CYContext
&context
) {
1121 CYStatement
*CYStructDefinition::Replace(CYContext
&context
) {
1122 CYTarget
*target(tail_
->Replace(context
));
1124 target
= $
C1($
M(target
, $
S("withName")), $
S(name_
->Word()));
1125 return $
CYLexical(false, $
B1($
B($
I($pool
.strcat(name_
->Word(), "$cy", NULL
)), target
)));
1128 CYTarget
*CYStructTail::Replace(CYContext
&context
) {
1129 CYList
<CYElementValue
> types
;
1130 CYList
<CYElementValue
> names
;
1132 CYForEach (field
, fields_
) {
1133 types
->*$
CYElementValue(field
->type_
->Replace(context
));
1136 if (field
->name_
== NULL
)
1139 name
= field
->name_
->PropertyName(context
);
1140 names
->*$
CYElementValue(name
);
1143 return $
N2($
V("Type"), $
CYArray(types
), $
CYArray(names
));
1146 CYTarget
*CYSuperAccess::Replace(CYContext
&context
) {
1147 return $
C1($
M($
M($
M($
V(context
.super_
), $
S("prototype")), property_
), $
S("bind")), $
CYThis());
1150 CYTarget
*CYSuperCall::Replace(CYContext
&context
) {
1151 return $
C($
C1($
M($
V(context
.super_
), $
S("bind")), $
CYThis()), arguments_
);
1154 CYTarget
*CYSymbol::Replace(CYContext
&context
) {
1155 return $
C1($
M($
V("Symbol"), $
S("for")), $
S(name_
));
1158 CYStatement
*CYSwitch::Replace(CYContext
&context
) {
1159 context
.Replace(value_
);
1160 clauses_
->Replace(context
);
1164 CYStatement
*CYTarget::Initialize(CYContext
&context
, CYExpression
*value
) {
1167 return $
E($
CYAssign(this, value
));
1170 CYTarget
*CYTemplate::Replace(CYContext
&context
) {
1171 return $
C2($
M($
M($
M($
V("String"), $
S("prototype")), $
S("concat")), $
S("apply")), $
S(""), $
CYArray($
CYElementValue(string_
, spans_
->Replace(context
))));
1174 CYTarget
*CYThis::Replace(CYContext
&context
) {
1175 if (context
.this_
!= NULL
)
1176 return $
V(context
.this_
->Identifier(context
));
1183 CYStatement
*Throw::Replace(CYContext
&context
) {
1184 context
.Replace(value_
);
1190 CYTarget
*CYTrivial::Replace(CYContext
&context
) {
1194 CYNumber
*CYTrue::Number(CYContext
&context
) {
1198 CYString
*CYTrue::String(CYContext
&context
) {
1205 CYStatement
*Try::Replace(CYContext
&context
) {
1206 CYScope
scope(true, context
);
1207 context
.ReplaceAll(code_
);
1208 scope
.Close(context
);
1210 catch_
->Replace(context
);
1211 finally_
->Replace(context
);
1217 CYTarget
*CYTypeArrayOf::Replace_(CYContext
&context
, CYTarget
*type
) {
1218 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("arrayOf")), $
CYArgument(size_
)));
1221 CYTarget
*CYTypeBlockWith::Replace_(CYContext
&context
, CYTarget
*type
) {
1222 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("blockWith")), parameters_
->Argument(context
)));
1225 CYTarget
*CYTypeCharacter::Replace(CYContext
&context
) {
1227 case CYTypeNeutral
: return $
V("char");
1228 case CYTypeSigned
: return $
V("schar");
1229 case CYTypeUnsigned
: return $
V("uchar");
1230 default: _assert(false);
1234 CYTarget
*CYTypeConstant::Replace_(CYContext
&context
, CYTarget
*type
) {
1235 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("constant"))));
1238 CYStatement
*CYTypeDefinition::Replace(CYContext
&context
) {
1239 return $
CYLexical(false, $
B1($
B(name_
, $
CYTypeExpression(type_
))));
1242 CYTarget
*CYTypeEnum::Replace(CYContext
&context
) {
1243 CYList
<CYProperty
> properties
;
1244 CYForEach (constant
, constants_
)
1245 properties
->*$
CYPropertyValue($
S(constant
->name_
->Word()), constant
->value_
);
1246 CYObject
*constants($
CYObject(properties
));
1248 if (specifier_
== NULL
)
1249 return $
N1($
V("Type"), constants
);
1251 return $
C1($
M(specifier_
->Replace(context
), $
S("enumFor")), constants
);
1254 CYTarget
*CYTypeError::Replace(CYContext
&context
) {
1259 CYTarget
*CYTypeExpression::Replace(CYContext
&context
) {
1260 return typed_
->Replace(context
);
1263 CYTarget
*CYTypeInt128::Replace(CYContext
&context
) {
1264 return $
V(signing_
== CYTypeUnsigned
? "uint128" : "int128");
1267 CYTarget
*CYTypeIntegral::Replace(CYContext
&context
) {
1268 bool u(signing_
== CYTypeUnsigned
);
1270 case 0: return $
V(u
? "ushort" : "short");
1271 case 1: return $
V(u
? "uint" : "int");
1272 case 2: return $
V(u
? "ulong" : "long");
1273 case 3: return $
V(u
? "ulonglong" : "longlong");
1274 default: _assert(false);
1278 CYTarget
*CYTypeModifier::Replace(CYContext
&context
, CYTarget
*type
) { $
T(type
)
1279 return Replace_(context
, type
);
1282 CYTarget
*CYTypeFunctionWith::Replace_(CYContext
&context
, CYTarget
*type
) {
1283 CYList
<CYArgument
> arguments(parameters_
->Argument(context
));
1285 arguments
->*$
C_($
CYNull());
1286 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("functionWith")), arguments
));
1289 CYTarget
*CYTypePointerTo::Replace_(CYContext
&context
, CYTarget
*type
) {
1290 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("pointerTo"))));
1293 CYTarget
*CYTypeReference::Replace(CYContext
&context
) {
1296 case CYTypeReferenceStruct
: prefix
= "$cys"; break;
1297 case CYTypeReferenceEnum
: prefix
= "$cye"; break;
1298 default: _assert(false);
1301 return $
V($pool
.strcat(prefix
, name_
->Word(), NULL
));
1304 CYTarget
*CYTypeStruct::Replace(CYContext
&context
) {
1305 CYTarget
*target(tail_
->Replace(context
));
1307 target
= $
C1($
M(target
, $
S("withName")), $
S(name_
->Word()));
1311 CYTarget
*CYTypeVariable::Replace(CYContext
&context
) {
1315 CYTarget
*CYTypeVoid::Replace(CYContext
&context
) {
1316 return $
N1($
V("Type"), $
CYString("v"));
1319 CYTarget
*CYTypeVolatile::Replace_(CYContext
&context
, CYTarget
*type
) {
1320 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("volatile"))));
1323 CYTarget
*CYType::Replace(CYContext
&context
) {
1324 return modifier_
->Replace(context
, specifier_
->Replace(context
));
1327 CYTypeFunctionWith
*CYType::Function() {
1328 CYTypeModifier
*&modifier(CYGetLast(modifier_
));
1329 if (modifier
== NULL
)
1332 CYTypeFunctionWith
*function(modifier
->Function());
1333 if (function
== NULL
)
1340 CYArgument
*CYTypedParameter::Argument(CYContext
&context
) { $
T(NULL
)
1341 return $
CYArgument(type_
->Replace(context
), next_
->Argument(context
));
1344 CYFunctionParameter
*CYTypedParameter::Parameters(CYContext
&context
) { $
T(NULL
)
1345 return $
CYFunctionParameter($
CYBinding(name_
?: context
.Unique()), next_
->Parameters(context
));
1348 CYExpression
*CYTypedParameter::TypeSignature(CYContext
&context
, CYExpression
*prefix
) { $
T(prefix
)
1349 return next_
->TypeSignature(context
, $
CYAdd(prefix
, type_
->Replace(context
)));
1352 CYForInitializer
*CYVar::Replace(CYContext
&context
) {
1353 if (CYExpression
*expression
= bindings_
->Replace(context
, CYIdentifierVariable
))
1354 return $
E(expression
);
1358 CYTarget
*CYVariable::Replace(CYContext
&context
) {
1359 name_
= name_
->Replace(context
, CYIdentifierGlobal
);
1363 CYFunctionParameter
*CYVariable::Parameter() const {
1364 return $
CYFunctionParameter($
CYBinding(name_
));
1367 CYStatement
*CYWhile::Replace(CYContext
&context
) {
1368 context
.Replace(test_
);
1369 context
.ReplaceAll(code_
);
1373 CYStatement
*CYWith::Replace(CYContext
&context
) {
1374 context
.Replace(scope_
);
1375 CYScope
scope(true, context
);
1377 context
.ReplaceAll(code_
);
1378 scope
.Close(context
);
1382 CYExpression
*CYWord::PropertyName(CYContext
&context
) {