1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2015 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 if (elements_
!= NULL
)
105 elements_
->Replace(context
);
109 CYTarget
*CYArrayComprehension::Replace(CYContext
&context
) {
110 CYVariable
*cyv($
V("$cyv"));
112 return $
C0($
F(NULL
, $
P1($
L($
I("$cyv")), comprehensions_
->Parameters(context
)), $$
->*
113 $
E($
CYAssign(cyv
, $
CYArray()))->*
114 comprehensions_
->Replace(context
, $
E($
C1($
M(cyv
, $
S("push")), expression_
)))->*
119 CYExpression
*CYAssignment::Replace(CYContext
&context
) {
120 context
.Replace(lhs_
);
121 context
.Replace(rhs_
);
125 CYStatement
*CYBlock::Return() {
126 CYImplicitReturn(code_
);
130 CYStatement
*CYBlock::Replace(CYContext
&context
) {
131 CYScope
scope(true, context
);
132 context
.ReplaceAll(code_
);
133 scope
.Close(context
);
140 CYStatement
*CYBreak::Replace(CYContext
&context
) {
144 CYTarget
*CYCall::Replace(CYContext
&context
) {
145 context
.Replace(function_
);
146 arguments_
->Replace(context
);
153 void Catch::Replace(CYContext
&context
) { $
T()
154 CYScope
scope(true, context
);
156 name_
= name_
->Replace(context
, CYIdentifierCatch
);
158 context
.ReplaceAll(code_
);
159 scope
.Close(context
);
164 CYTarget
*CYClassExpression::Replace(CYContext
&context
) {
167 CYIdentifier
*super(context
.Unique());
169 CYIdentifier
*old(context
.super_
);
170 context
.super_
= super
;
172 CYIdentifier
*constructor(context
.Unique());
173 CYForEach (member
, tail_
->static_
)
174 member
->Replace(context
, builder
, $
V(constructor
), true);
176 CYIdentifier
*prototype(context
.Unique());
177 CYForEach (member
, tail_
->instance_
)
178 member
->Replace(context
, builder
, $
V(prototype
), true);
180 if (tail_
->constructor_
== NULL
)
181 tail_
->constructor_
= $
CYFunctionExpression(NULL
, NULL
, NULL
);
182 tail_
->constructor_
= CYSuperize(context
, tail_
->constructor_
);
184 context
.super_
= old
;
186 return $
C1($
CYFunctionExpression(NULL
, $
P($
L(super
)), $$
187 ->* $
CYVar($
L1($
L(constructor
, tail_
->constructor_
)))
188 ->* $
CYVar($
L1($
L(prototype
, $
CYFunctionExpression(NULL
, NULL
, NULL
))))
189 ->* $
E($
CYAssign($
M($
V(prototype
), $
S("prototype")), $
M($
V(super
), $
S("prototype"))))
190 ->* $
E($
CYAssign($
V(prototype
), $
N($
V(prototype
))))
191 ->* CYDefineProperty($
V(prototype
), $
S("constructor"), false, false, $
CYPropertyValue($
S("value"), $
V(constructor
)))
192 ->* $
CYVar(builder
.declarations_
)
193 ->* builder
.statements_
194 ->* CYDefineProperty($
V(constructor
), $
S("prototype"), false, false, $
CYPropertyValue($
S("value"), $
V(prototype
)))
195 ->* $
CYReturn($
V(constructor
))
196 ), tail_
->extends_
?: $
V($
I("Object")));
199 CYStatement
*CYClassStatement::Replace(CYContext
&context
) {
200 return $
CYVar($
L1($
L(name_
, $
CYClassExpression(name_
, tail_
))));
203 void CYClause::Replace(CYContext
&context
) { $
T()
204 context
.Replace(case_
);
205 context
.ReplaceAll(code_
);
206 next_
->Replace(context
);
209 CYExpression
*CYCompound::Replace(CYContext
&context
) {
210 context
.Replace(expression_
);
211 context
.Replace(next_
);
213 if (CYCompound
*compound
= dynamic_cast<CYCompound
*>(expression_
)) {
214 expression_
= compound
->expression_
;
215 compound
->expression_
= compound
->next_
;
216 compound
->next_
= next_
;
223 CYFunctionParameter
*CYCompound::Parameter() const {
224 CYFunctionParameter
*next(next_
->Parameter());
228 CYFunctionParameter
*parameter(expression_
->Parameter());
229 if (parameter
== NULL
)
232 parameter
->SetNext(next
);
236 CYFunctionParameter
*CYComprehension::Parameters(CYContext
&context
) const { $
T(NULL
)
237 CYFunctionParameter
*next(next_
->Parameters(context
));
238 if (CYFunctionParameter
*parameter
= Parameter(context
)) {
239 parameter
->SetNext(next
);
245 CYStatement
*CYComprehension::Replace(CYContext
&context
, CYStatement
*statement
) const {
246 return next_
== NULL
? statement
: next_
->Replace(context
, statement
);
249 CYExpression
*CYComputed::PropertyName(CYContext
&context
) {
253 CYExpression
*CYCondition::Replace(CYContext
&context
) {
254 context
.Replace(test_
);
255 context
.Replace(true_
);
256 context
.Replace(false_
);
260 void CYContext::NonLocal(CYStatement
*&statements
) {
261 CYContext
&context(*this);
263 if (nextlocal_
!= NULL
&& nextlocal_
->identifier_
!= NULL
) {
264 CYIdentifier
*cye($
I("$cye")->Replace(context
, CYIdentifierGlobal
));
265 CYIdentifier
*unique(nextlocal_
->identifier_
->Replace(context
, CYIdentifierGlobal
));
267 CYStatement
*declare(
268 $
CYVar($
L1($
L(unique
, $
CYObject()))));
270 cy::Syntax::Catch
*rescue(
271 $
cy::Syntax::Catch(cye
, $$
->*
272 $
CYIf($
CYIdentical($
M($
V(cye
), $
S("$cyk")), $
V(unique
)), $$
->*
273 $
CYReturn($
M($
V(cye
), $
S("$cyv"))))->*
274 $
cy::Syntax::Throw($
V(cye
))));
276 context
.Replace(declare
);
277 rescue
->Replace(context
);
281 $
cy::Syntax::Try(statements
, rescue
, NULL
);
285 CYIdentifier
*CYContext::Unique() {
286 return $
CYIdentifier($pool
.strcat("$cy", $pool
.itoa(unique_
++), NULL
));
289 CYStatement
*CYContinue::Replace(CYContext
&context
) {
293 CYStatement
*CYDebugger::Replace(CYContext
&context
) {
297 CYTarget
*CYDeclaration::Target(CYContext
&context
) {
298 return $
V(identifier_
);
301 CYAssignment
*CYDeclaration::Replace(CYContext
&context
, CYIdentifierKind kind
) {
302 identifier_
= identifier_
->Replace(context
, kind
);
304 if (initialiser_
== NULL
)
307 CYAssignment
*value($
CYAssign(Target(context
), initialiser_
));
312 CYExpression
*CYDeclarations::Replace(CYContext
&context
, CYIdentifierKind kind
) { $
T(NULL
)
313 CYAssignment
*assignment(declaration_
->Replace(context
, kind
));
314 CYExpression
*compound(next_
->Replace(context
, kind
));
316 if (assignment
!= NULL
)
317 if (compound
== NULL
)
318 compound
= assignment
;
320 compound
= $
CYCompound(assignment
, compound
);
324 CYFunctionParameter
*CYDeclarations::Parameter(CYContext
&context
) { $
T(NULL
)
325 return $
CYFunctionParameter($
CYDeclaration(declaration_
->identifier_
), next_
->Parameter(context
));
328 CYArgument
*CYDeclarations::Argument(CYContext
&context
) { $
T(NULL
)
329 return $
CYArgument(declaration_
->initialiser_
, next_
->Argument(context
));
332 CYTarget
*CYDirectMember::Replace(CYContext
&context
) {
333 context
.Replace(object_
);
334 context
.Replace(property_
);
338 CYStatement
*CYDoWhile::Replace(CYContext
&context
) {
339 context
.Replace(test_
);
340 context
.ReplaceAll(code_
);
344 void CYElementSpread::Replace(CYContext
&context
) {
345 context
.Replace(value_
);
348 void CYElementValue::Replace(CYContext
&context
) {
349 context
.Replace(value_
);
351 next_
->Replace(context
);
354 CYStatement
*CYEmpty::Replace(CYContext
&context
) {
358 CYTarget
*CYEncodedType::Replace(CYContext
&context
) {
359 return typed_
->Replace(context
);
362 CYTarget
*CYEval::Replace(CYContext
&context
) {
363 context
.scope_
->Damage();
364 if (arguments_
!= NULL
)
365 arguments_
->value_
= $
C1($
M($
V("Cycript"), $
S("compile")), arguments_
->value_
);
366 return $
C($
V("eval"), arguments_
);
369 CYStatement
*CYExpress::Return() {
370 return $
CYReturn(expression_
);
373 CYStatement
*CYExpress::Replace(CYContext
&context
) {
374 context
.Replace(expression_
);
378 CYTarget
*CYExpression::AddArgument(CYContext
&context
, CYExpression
*value
) {
379 return $
C1(this, value
);
382 CYFunctionParameter
*CYExpression::Parameter() const {
386 CYStatement
*CYExternal::Replace(CYContext
&context
) {
387 return $
E($
CYAssign($
V(typed_
->identifier_
), $
C1(typed_
->Replace(context
), $
C2($
V("dlsym"), $
V("RTLD_DEFAULT"), $
S(typed_
->identifier_
->Word())))));
390 CYNumber
*CYFalse::Number(CYContext
&context
) {
394 CYString
*CYFalse::String(CYContext
&context
) {
398 CYExpression
*CYFatArrow::Replace(CYContext
&context
) {
399 CYFunctionExpression
*function($
CYFunctionExpression(NULL
, parameters_
, code_
));
400 function
->this_
.SetNext(context
.this_
);
404 void CYFinally::Replace(CYContext
&context
) { $
T()
405 CYScope
scope(true, context
);
406 context
.ReplaceAll(code_
);
407 scope
.Close(context
);
410 CYStatement
*CYFor::Replace(CYContext
&context
) {
411 CYScope
outer(true, context
);
412 context
.Replace(initialiser_
);
414 context
.Replace(test_
);
417 CYScope
inner(true, context
);
418 context
.ReplaceAll(code_
);
419 inner
.Close(context
);
422 context
.Replace(increment_
);
424 outer
.Close(context
);
428 CYExpression
*CYForDeclarations::Replace(CYContext
&context
) {
429 return declarations_
->Replace(context
, CYIdentifierVariable
);
432 CYStatement
*CYForLexical::Initialize(CYContext
&context
, CYExpression
*value
) {
434 if (declaration_
->initialiser_
== NULL
)
436 value
= declaration_
->initialiser_
;
439 return $
CYLet(constant_
, $
L1($
CYDeclaration(declaration_
->identifier_
, value
)));
442 CYTarget
*CYForLexical::Replace(CYContext
&context
) {
443 _assert(declaration_
->Replace(context
, CYIdentifierLexical
) == NULL
);
444 return declaration_
->Target(context
);
447 CYStatement
*CYForIn::Replace(CYContext
&context
) {
448 CYScope
scope(true, context
);
449 context
.Replace(initialiser_
);
450 context
.Replace(set_
);
451 context
.ReplaceAll(code_
);
452 scope
.Close(context
);
456 CYFunctionParameter
*CYForInComprehension::Parameter(CYContext
&context
) const {
457 return $
CYFunctionParameter(declaration_
);
460 CYStatement
*CYForInComprehension::Replace(CYContext
&context
, CYStatement
*statement
) const {
461 return $
CYForIn(declaration_
->Target(context
), set_
, CYComprehension::Replace(context
, statement
));
464 CYStatement
*CYForOf::Replace(CYContext
&context
) {
465 CYIdentifier
*item(context
.Unique()), *list(context
.Unique());
468 ->* initialiser_
->Initialize(context
, NULL
)
469 ->* $
CYLet(false, $
L2($
L(list
, set_
), $
L(item
)))
470 ->* $
CYForIn($
V(item
), $
V(list
), $
CYBlock($$
471 ->* initialiser_
->Initialize(context
, $
M($
V(list
), $
V(item
)))
476 CYFunctionParameter
*CYForOfComprehension::Parameter(CYContext
&context
) const {
477 return $
CYFunctionParameter(declaration_
);
480 CYStatement
*CYForOfComprehension::Replace(CYContext
&context
, CYStatement
*statement
) const {
481 CYIdentifier
*cys($
I("$cys"));
483 return $
E($
C0($
F(NULL
, $
P1($
L($
I("$cys"))), $$
->*
484 $
E($
CYAssign($
V(cys
), set_
))->*
485 $
CYForIn(declaration_
->Target(context
), $
V(cys
), $
CYBlock($$
->*
486 $
E($
CYAssign(declaration_
->Target(context
), $
M($
V(cys
), declaration_
->Target(context
))))->*
487 CYComprehension::Replace(context
, statement
)
492 CYStatement
*CYForVariable::Initialize(CYContext
&context
, CYExpression
*value
) {
494 if (declaration_
->initialiser_
== NULL
)
496 value
= declaration_
->initialiser_
;
499 return $
CYVar($
L1($
CYDeclaration(declaration_
->identifier_
, value
)));
502 CYTarget
*CYForVariable::Replace(CYContext
&context
) {
503 _assert(declaration_
->Replace(context
, CYIdentifierVariable
) == NULL
);
504 return declaration_
->Target(context
);
507 // XXX: this is evil evil black magic. don't ask, don't tell... don't believe!
508 #define MappingSet "0etnirsoalfucdphmgyvbxTwSNECAFjDLkMOIBPqzRH$_WXUVGYKQJZ"
509 //#define MappingSet "0abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_"
511 void CYFunction::Replace(CYContext
&context
) {
512 CYThisScope
*_this(context
.this_
);
513 context
.this_
= &this_
;
514 context
.this_
= CYGetLast(context
.this_
);
516 CYIdentifier
*super(context
.super_
);
517 context
.super_
= super_
;
519 CYNonLocal
*nonlocal(context
.nonlocal_
);
520 CYNonLocal
*nextlocal(context
.nextlocal_
);
523 if (nonlocal_
!= NULL
) {
525 context
.nonlocal_
= nonlocal_
;
528 nonlocal_
= $
CYNonLocal();
529 context
.nextlocal_
= nonlocal_
;
532 CYScope
scope(!localize
, context
);
534 parameters_
->Replace(context
, code_
);
536 context
.ReplaceAll(code_
);
539 CYImplicitReturn(code_
);
541 if (CYIdentifier
*identifier
= this_
.identifier_
) {
542 context
.scope_
->Declare(context
, identifier
, CYIdentifierVariable
);
544 ->*$
E($
CYAssign($
V(identifier
), $
CYThis()))
550 context
.NonLocal(code_
);
552 context
.nextlocal_
= nextlocal
;
553 context
.nonlocal_
= nonlocal
;
555 context
.super_
= super
;
556 context
.this_
= _this
;
558 scope
.Close(context
, code_
);
561 CYTarget
*CYFunctionExpression::Replace(CYContext
&context
) {
562 CYScope
scope(false, context
);
564 name_
= name_
->Replace(context
, CYIdentifierOther
);
566 CYFunction::Replace(context
);
567 scope
.Close(context
);
571 void CYFunctionParameter::Replace(CYContext
&context
, CYStatement
*&statements
) { $
T()
572 CYAssignment
*assignment(initialiser_
->Replace(context
, CYIdentifierArgument
));
574 next_
->Replace(context
, statements
);
576 if (assignment
!= NULL
)
578 $
CYIf($
CYIdentical($
CYTypeOf(initialiser_
->Target(context
)), $
S("undefined")), $$
->*
584 CYStatement
*CYFunctionStatement::Replace(CYContext
&context
) {
585 name_
= name_
->Replace(context
, CYIdentifierOther
);
586 CYFunction::Replace(context
);
590 CYIdentifier
*CYIdentifier::Replace(CYContext
&context
, CYIdentifierKind kind
) {
594 return next_
->Replace(context
, kind
);
595 next_
= context
.scope_
->Declare(context
, this, kind
)->identifier_
;
599 CYStatement
*CYIf::Return() {
600 CYImplicitReturn(true_
);
601 CYImplicitReturn(false_
);
605 CYStatement
*CYIf::Replace(CYContext
&context
) {
606 context
.Replace(test_
);
607 context
.ReplaceAll(true_
);
608 context
.ReplaceAll(false_
);
612 CYFunctionParameter
*CYIfComprehension::Parameter(CYContext
&context
) const {
616 CYStatement
*CYIfComprehension::Replace(CYContext
&context
, CYStatement
*statement
) const {
617 return $
CYIf(test_
, CYComprehension::Replace(context
, statement
));
620 CYStatement
*CYImport::Replace(CYContext
&context
) {
621 return $
CYVar($
L1($
L($
I(module_
->part_
->Word()), $
C1($
V("require"), module_
->Replace(context
, "/")))));
624 CYTarget
*CYIndirect::Replace(CYContext
&context
) {
625 return $
M(rhs_
, $
S("$cyi"));
628 CYTarget
*CYIndirectMember::Replace(CYContext
&context
) {
629 return $
M($
CYIndirect(object_
), property_
);
632 CYExpression
*CYInfix::Replace(CYContext
&context
) {
633 context
.Replace(lhs_
);
634 context
.Replace(rhs_
);
638 CYStatement
*CYLabel::Replace(CYContext
&context
) {
639 context
.Replace(statement_
);
643 CYTarget
*CYLambda::Replace(CYContext
&context
) {
644 return $
N2($
V("Functor"), $
CYFunctionExpression(NULL
, parameters_
->Parameters(context
), code_
), parameters_
->TypeSignature(context
, typed_
->Replace(context
)));
647 CYStatement
*CYLet::Replace(CYContext
&context
) {
648 if (CYExpression
*expression
= declarations_
->Replace(context
, CYIdentifierLexical
))
649 return $
E(expression
);
653 CYFunctionExpression
*CYMethod::Constructor() {
657 void CYMethod::Replace(CYContext
&context
) {
658 CYFunction::Replace(context
);
661 CYString
*CYModule::Replace(CYContext
&context
, const char *separator
) const {
663 return $
CYString(part_
);
664 return $
CYString($pool
.strcat(next_
->Replace(context
, separator
)->Value(), separator
, part_
->Word(), NULL
));
667 CYExpression
*CYMultiply::Replace(CYContext
&context
) {
668 CYInfix::Replace(context
);
670 if (CYNumber
*lhn
= lhs_
->Number(context
))
671 if (CYNumber
*rhn
= rhs_
->Number(context
))
672 return $
D(lhn
->Value() * rhn
->Value());
680 CYTarget
*New::AddArgument(CYContext
&context
, CYExpression
*value
) {
681 CYSetLast(arguments_
) = $
CYArgument(value
);
685 CYTarget
*New::Replace(CYContext
&context
) {
686 context
.Replace(constructor_
);
687 arguments_
->Replace(context
);
693 CYNumber
*CYNull::Number(CYContext
&context
) {
697 CYString
*CYNull::String(CYContext
&context
) {
701 CYNumber
*CYNumber::Number(CYContext
&context
) {
705 CYString
*CYNumber::String(CYContext
&context
) {
706 // XXX: there is a precise algorithm for this
707 return $
S($pool
.sprintf(24, "%.17g", Value()));
710 CYExpression
*CYNumber::PropertyName(CYContext
&context
) {
711 return String(context
);
714 CYTarget
*CYObject::Replace(CYContext
&context
) {
716 if (properties_
!= NULL
)
717 properties_
= properties_
->ReplaceAll(context
, builder
, $
CYThis(), false);
720 return $
C1($
M($
CYFunctionExpression(NULL
, builder
.declarations_
->Parameter(context
),
721 builder
.statements_
->*
722 $
CYReturn($
CYThis())
723 ), $
S("call")), this, builder
.declarations_
->Argument(context
));
726 CYForEach (property
, properties_
)
727 property
->Replace(context
);
731 CYTarget
*CYParenthetical::Replace(CYContext
&context
) {
732 // XXX: return expression_;
733 context
.Replace(expression_
);
737 CYExpression
*CYPostfix::Replace(CYContext
&context
) {
738 context
.Replace(lhs_
);
742 CYExpression
*CYPrefix::Replace(CYContext
&context
) {
743 context
.Replace(rhs_
);
747 CYProperty
*CYProperty::ReplaceAll(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, bool update
) {
748 update
|= name_
->Computed();
750 Replace(context
, builder
, self
, false);
752 next_
= next_
->ReplaceAll(context
, builder
, self
, update
);
753 return update
? next_
: this;
756 void CYProperty::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, bool protect
) {
757 CYExpression
*name(name_
->PropertyName(context
));
758 if (name_
->Computed()) {
759 CYIdentifier
*unique(context
.Unique());
760 builder
.declarations_
->*$
L1($
L(unique
, name
));
764 Replace(context
, builder
, self
, name
, protect
);
767 void CYPropertyGetter::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, CYExpression
*name
, bool protect
) {
768 CYIdentifier
*unique(context
.Unique());
769 builder
.declarations_
770 ->* $
L1($
L(unique
, CYSuperize(context
, $
CYFunctionExpression(NULL
, parameters_
, code_
))));
772 ->* CYDefineProperty(self
, name
, true, !protect
, $
CYPropertyValue($
S("get"), $
V(unique
)));
775 CYFunctionExpression
*CYPropertyMethod::Constructor() {
776 return name_
->Constructor() ? $
CYFunctionExpression(NULL
, parameters_
, code_
) : NULL
;
779 void CYPropertyMethod::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, CYExpression
*name
, bool protect
) {
780 CYIdentifier
*unique(context
.Unique());
781 builder
.declarations_
782 ->* $
L1($
L(unique
, CYSuperize(context
, $
CYFunctionExpression(NULL
, parameters_
, code_
))));
784 ->* (!protect
? $
E($
CYAssign($
M(self
, name
), $
V(unique
))) :
785 CYDefineProperty(self
, name
, true, !protect
, $
CYPropertyValue($
S("value"), $
V(unique
), $
CYPropertyValue($
S("writable"), $
CYTrue()))));
788 void CYPropertySetter::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, CYExpression
*name
, bool protect
) {
789 CYIdentifier
*unique(context
.Unique());
790 builder
.declarations_
791 ->* $
L1($
L(unique
, CYSuperize(context
, $
CYFunctionExpression(NULL
, parameters_
, code_
))));
793 ->* CYDefineProperty(self
, name
, true, !protect
, $
CYPropertyValue($
S("set"), $
V(unique
)));
796 void CYPropertyValue::Replace(CYContext
&context
, CYBuilder
&builder
, CYExpression
*self
, CYExpression
*name
, bool protect
) {
798 CYIdentifier
*unique(context
.Unique());
799 builder
.declarations_
800 ->* $
L1($
L(unique
, value_
));
802 ->* $
E($
CYAssign($
M(self
, name
), $
V(unique
)));
805 void CYPropertyValue::Replace(CYContext
&context
) {
806 context
.Replace(value_
);
809 void CYScript::Replace(CYContext
&context
) {
810 CYScope
scope(false, context
);
811 context
.scope_
->Damage();
813 context
.nextlocal_
= $
CYNonLocal();
814 context
.ReplaceAll(code_
);
815 context
.NonLocal(code_
);
817 scope
.Close(context
, code_
);
821 for (std::vector
<CYIdentifier
*>::const_iterator
i(context
.replace_
.begin()); i
!= context
.replace_
.end(); ++i
) {
823 if (context
.options_
.verbose_
)
824 name
= $pool
.strcat("$", $pool
.itoa(offset
++), NULL
);
830 unsigned position(7), local(offset
++ + 1);
833 unsigned index(local
% (sizeof(MappingSet
) - 1));
834 local
/= sizeof(MappingSet
) - 1;
835 id
[--position
] = MappingSet
[index
];
836 } while (local
!= 0);
838 if (scope
.Lookup(context
, id
+ position
) != NULL
)
840 // XXX: at some point, this could become a keyword
842 name
= $pool
.strmemdup(id
+ position
, 7 - position
);
845 CYIdentifier
*identifier(*i
);
846 _assert(identifier
->next_
== identifier
);
847 identifier
->next_
= $
I(name
);
851 CYStatement
*CYReturn::Replace(CYContext
&context
) {
852 if (context
.nonlocal_
!= NULL
) {
853 CYProperty
*value(value_
== NULL
? NULL
: $
CYPropertyValue($
S("$cyv"), value_
));
854 return $
cy::Syntax::Throw($
CYObject(
855 $
CYPropertyValue($
S("$cyk"), $
V(context
.nonlocal_
->Target(context
)), value
)
859 context
.Replace(value_
);
863 CYTarget
*CYRubyBlock::Replace(CYContext
&context
) {
864 return call_
->AddArgument(context
, proc_
->Replace(context
));
867 CYTarget
*CYRubyBlock::AddArgument(CYContext
&context
, CYExpression
*value
) {
868 return Replace(context
)->AddArgument(context
, value
);
871 CYTarget
*CYRubyProc::Replace(CYContext
&context
) {
872 CYFunctionExpression
*function($
CYFunctionExpression(NULL
, parameters_
, code_
));
873 function
= CYNonLocalize(context
, function
);
874 function
->implicit_
= true;
878 CYScope::CYScope(bool transparent
, CYContext
&context
) :
879 transparent_(transparent
),
880 parent_(context
.scope_
),
885 _assert(!transparent_
|| parent_
!= NULL
);
886 context
.scope_
= this;
889 void CYScope::Damage() {
895 CYIdentifierFlags
*CYScope::Lookup(CYContext
&context
, const char *word
) {
896 CYForEach (i
, internal_
)
897 if (strcmp(i
->identifier_
->Word(), word
) == 0)
902 CYIdentifierFlags
*CYScope::Lookup(CYContext
&context
, CYIdentifier
*identifier
) {
903 return Lookup(context
, identifier
->Word());
906 CYIdentifierFlags
*CYScope::Declare(CYContext
&context
, CYIdentifier
*identifier
, CYIdentifierKind kind
) {
907 _assert(identifier
->next_
== NULL
|| identifier
->next_
== identifier
);
909 CYIdentifierFlags
*existing(Lookup(context
, identifier
));
910 if (existing
== NULL
)
911 internal_
= $
CYIdentifierFlags(identifier
, kind
, internal_
);
913 if (existing
== NULL
)
917 case CYIdentifierArgument
:
918 case CYIdentifierCatch
:
919 case CYIdentifierMagic
:
925 if (existing
->kind_
== CYIdentifierGlobal
)
926 existing
->kind_
= kind
;
927 else if (kind
== CYIdentifierGlobal
)
929 else if (existing
->kind_
== CYIdentifierLexical
|| kind
== CYIdentifierLexical
)
930 _assert(false); // XXX: throw new SyntaxError()
935 void CYScope::Merge(CYContext
&context
, const CYIdentifierFlags
*flags
) {
936 _assert(flags
->identifier_
->next_
== flags
->identifier_
);
937 CYIdentifierFlags
*existing(Declare(context
, flags
->identifier_
, flags
->kind_
));
938 flags
->identifier_
->next_
= existing
->identifier_
;
940 existing
->count_
+= flags
->count_
;
941 if (existing
->offset_
< flags
->offset_
)
942 existing
->offset_
= flags
->offset_
;
945 void CYScope::Close(CYContext
&context
, CYStatement
*&statements
) {
948 CYList
<CYDeclarations
> declarations
;
950 CYForEach (i
, internal_
)
951 if (i
->kind_
== CYIdentifierVariable
)
952 declarations
->* $
CYDeclarations($
CYDeclaration(i
->identifier_
));
955 CYVar
*var($
CYVar(declarations
));
956 var
->SetNext(statements
);
961 void CYScope::Close(CYContext
&context
) {
962 context
.scope_
= parent_
;
964 CYForEach (i
, internal_
) {
965 _assert(i
->identifier_
->next_
== i
->identifier_
);
967 case CYIdentifierArgument
: {
968 _assert(!transparent_
);
971 case CYIdentifierLexical
: {
973 CYIdentifier
*replace(context
.Unique());
974 replace
->next_
= replace
;
975 i
->identifier_
->next_
= replace
;
976 i
->identifier_
= replace
;
980 i
->kind_
= CYIdentifierVariable
;
982 parent_
->Declare(context
, i
->identifier_
, CYIdentifierVariable
);
985 case CYIdentifierVariable
: {
987 parent_
->Declare(context
, i
->identifier_
, i
->kind_
);
988 i
->kind_
= CYIdentifierGlobal
;
996 typedef std::multimap
<unsigned, CYIdentifier
*> CYIdentifierOffsetMap
;
997 CYIdentifierOffsetMap offsets
;
999 CYForEach (i
, internal_
) {
1000 _assert(i
->identifier_
->next_
== i
->identifier_
);
1002 case CYIdentifierArgument
:
1003 case CYIdentifierVariable
:
1004 offsets
.insert(CYIdentifierOffsetMap::value_type(i
->offset_
, i
->identifier_
));
1010 for (CYIdentifierOffsetMap::const_iterator
i(offsets
.begin()); i
!= offsets
.end(); ++i
) {
1011 if (offset
< i
->first
)
1013 CYIdentifier
*identifier(i
->second
);
1015 if (offset
>= context
.replace_
.size())
1016 context
.replace_
.resize(offset
+ 1, NULL
);
1017 CYIdentifier
*&replace(context
.replace_
[offset
++]);
1019 if (replace
== NULL
)
1020 replace
= identifier
;
1022 _assert(replace
->next_
== replace
);
1023 identifier
->next_
= replace
;
1027 if (parent_
== NULL
)
1030 CYForEach (i
, internal_
) {
1032 case CYIdentifierGlobal
: {
1033 if (i
->offset_
< offset
)
1034 i
->offset_
= offset
;
1035 parent_
->Merge(context
, i
);
1040 CYElementValue
*CYSpan::Replace(CYContext
&context
) { $
T(NULL
)
1041 return $
CYElementValue(expression_
, $
CYElementValue(string_
, next_
->Replace(context
)));
1044 CYStatement
*CYStatement::Return() {
1048 CYString
*CYString::Concat(CYContext
&context
, CYString
*rhs
) const {
1049 size_t size(size_
+ rhs
->size_
);
1050 char *value($
char[size
+ 1]);
1051 memcpy(value
, value_
, size_
);
1052 memcpy(value
+ size_
, rhs
->value_
, rhs
->size_
);
1054 return $
S(value
, size
);
1057 CYNumber
*CYString::Number(CYContext
&context
) {
1058 // XXX: there is a precise algorithm for this
1062 CYExpression
*CYString::PropertyName(CYContext
&context
) {
1066 CYString
*CYString::String(CYContext
&context
) {
1070 CYTarget
*CYSuperAccess::Replace(CYContext
&context
) {
1071 return $
C1($
M($
M($
M($
V(context
.super_
), $
S("prototype")), property_
), $
S("bind")), $
CYThis());
1074 CYTarget
*CYSuperCall::Replace(CYContext
&context
) {
1075 return $
C($
C1($
M($
V(context
.super_
), $
S("bind")), $
CYThis()), arguments_
);
1078 CYStatement
*CYSwitch::Replace(CYContext
&context
) {
1079 context
.Replace(value_
);
1080 clauses_
->Replace(context
);
1084 CYStatement
*CYTarget::Initialize(CYContext
&context
, CYExpression
*value
) {
1087 return $
E($
CYAssign(this, value
));
1090 CYTarget
*CYTemplate::Replace(CYContext
&context
) {
1091 return $
C2($
M($
M($
M($
V("String"), $
S("prototype")), $
S("concat")), $
S("apply")), $
S(""), $
CYArray($
CYElementValue(string_
, spans_
->Replace(context
))));
1094 CYTarget
*CYThis::Replace(CYContext
&context
) {
1095 if (context
.this_
!= NULL
)
1096 return $
V(context
.this_
->Identifier(context
));
1103 CYStatement
*Throw::Replace(CYContext
&context
) {
1104 context
.Replace(value_
);
1110 CYTarget
*CYTrivial::Replace(CYContext
&context
) {
1114 CYNumber
*CYTrue::Number(CYContext
&context
) {
1118 CYString
*CYTrue::String(CYContext
&context
) {
1125 CYStatement
*Try::Replace(CYContext
&context
) {
1126 CYScope
scope(true, context
);
1127 context
.ReplaceAll(code_
);
1128 scope
.Close(context
);
1130 catch_
->Replace(context
);
1131 finally_
->Replace(context
);
1137 CYTarget
*CYTypeArrayOf::Replace_(CYContext
&context
, CYTarget
*type
) {
1138 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("arrayOf")), $
CYArgument(size_
)));
1141 CYTarget
*CYTypeBlockWith::Replace_(CYContext
&context
, CYTarget
*type
) {
1142 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("blockWith")), parameters_
->Argument(context
)));
1145 CYTarget
*CYTypeConstant::Replace_(CYContext
&context
, CYTarget
*type
) {
1146 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("constant"))));
1149 CYStatement
*CYTypeDefinition::Replace(CYContext
&context
) {
1150 return $
E($
CYAssign($
V(typed_
->identifier_
), typed_
->Replace(context
)));
1153 CYTarget
*CYTypeError::Replace(CYContext
&context
) {
1158 CYTarget
*CYTypeModifier::Replace(CYContext
&context
, CYTarget
*type
) { $
T(type
)
1159 return Replace_(context
, type
);
1162 CYTarget
*CYTypeFunctionWith::Replace_(CYContext
&context
, CYTarget
*type
) {
1163 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("functionWith")), parameters_
->Argument(context
)));
1166 CYTarget
*CYTypeLong::Replace(CYContext
&context
) {
1167 return $
CYCall($
CYDirectMember(specifier_
->Replace(context
), $
CYString("long")));
1170 CYTarget
*CYTypePointerTo::Replace_(CYContext
&context
, CYTarget
*type
) {
1171 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("pointerTo"))));
1174 CYTarget
*CYTypeShort::Replace(CYContext
&context
) {
1175 return $
CYCall($
CYDirectMember(specifier_
->Replace(context
), $
CYString("short")));
1178 CYTarget
*CYTypeSigned::Replace(CYContext
&context
) {
1179 return $
CYCall($
CYDirectMember(specifier_
->Replace(context
), $
CYString("signed")));
1182 CYTarget
*CYTypeUnsigned::Replace(CYContext
&context
) {
1183 return $
CYCall($
CYDirectMember(specifier_
->Replace(context
), $
CYString("unsigned")));
1186 CYTarget
*CYTypeVariable::Replace(CYContext
&context
) {
1190 CYTarget
*CYTypeVoid::Replace(CYContext
&context
) {
1191 return $
N1($
V("Type"), $
CYString("v"));
1194 CYTarget
*CYTypeVolatile::Replace_(CYContext
&context
, CYTarget
*type
) {
1195 return next_
->Replace(context
, $
CYCall($
CYDirectMember(type
, $
CYString("volatile"))));
1198 CYTarget
*CYTypedIdentifier::Replace(CYContext
&context
) {
1199 return modifier_
->Replace(context
, specifier_
->Replace(context
));
1202 CYTypeFunctionWith
*CYTypedIdentifier::Function() {
1203 CYTypeModifier
**modifier(&modifier_
);
1204 if (*modifier
== NULL
)
1206 while ((*modifier
)->next_
!= NULL
)
1207 modifier
= &(*modifier
)->next_
;
1208 CYTypeFunctionWith
*function((*modifier
)->Function());
1209 if (function
== NULL
)
1215 CYArgument
*CYTypedParameter::Argument(CYContext
&context
) { $
T(NULL
)
1216 return $
CYArgument(typed_
->Replace(context
), next_
->Argument(context
));
1219 CYFunctionParameter
*CYTypedParameter::Parameters(CYContext
&context
) { $
T(NULL
)
1220 return $
CYFunctionParameter($
CYDeclaration(typed_
->identifier_
?: context
.Unique()), next_
->Parameters(context
));
1223 CYExpression
*CYTypedParameter::TypeSignature(CYContext
&context
, CYExpression
*prefix
) { $
T(prefix
)
1224 return next_
->TypeSignature(context
, $
CYAdd(prefix
, typed_
->Replace(context
)));
1227 CYStatement
*CYVar::Replace(CYContext
&context
) {
1228 if (CYExpression
*expression
= declarations_
->Replace(context
, CYIdentifierVariable
))
1229 return $
E(expression
);
1233 CYTarget
*CYVariable::Replace(CYContext
&context
) {
1234 name_
= name_
->Replace(context
, CYIdentifierGlobal
);
1238 CYFunctionParameter
*CYVariable::Parameter() const {
1239 return $
CYFunctionParameter($
CYDeclaration(name_
));
1242 CYStatement
*CYWhile::Replace(CYContext
&context
) {
1243 context
.Replace(test_
);
1244 context
.ReplaceAll(code_
);
1248 CYStatement
*CYWith::Replace(CYContext
&context
) {
1249 context
.Replace(scope_
);
1250 context
.ReplaceAll(code_
);
1254 CYExpression
*CYWord::PropertyName(CYContext
&context
) {