]> git.saurik.com Git - cycript.git/blobdiff - Replace.cpp
Fixed make extra in cross-compile.
[cycript.git] / Replace.cpp
index 987122b2f46ffaff1163f83e7a7f0329e00ef558..fe935572086d0ae45f0dd0de494492696a044b9c 100644 (file)
@@ -1,9 +1,78 @@
+/* Cycript - Remove Execution Server and Disassembler
+ * Copyright (C) 2009  Jay Freeman (saurik)
+*/
+
+/* Modified BSD License {{{ */
+/*
+ *        Redistribution and use in source and binary
+ * forms, with or without modification, are permitted
+ * provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the
+ *    above copyright notice, this list of conditions
+ *    and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the
+ *    above copyright notice, this list of conditions
+ *    and the following disclaimer in the documentation
+ *    and/or other materials provided with the
+ *    distribution.
+ * 3. The name of the author may not be used to endorse
+ *    or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
+ * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+ * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+/* }}} */
+
 #include "Parser.hpp"
 
 #include <iomanip>
 
 #include "Replace.hpp"
 
+CYExpression *CYAdd::Replace(CYContext &context) {
+    CYInfix::Replace(context);
+
+    CYExpression *lhp(lhs_->Primitive(context));
+    CYExpression *rhp(rhs_->Primitive(context));
+
+    CYString *lhs(dynamic_cast<CYString *>(lhp));
+    CYString *rhs(dynamic_cast<CYString *>(rhp));
+
+    if (lhs != NULL || rhs != NULL) {
+        if (lhs == NULL) {
+            lhs = lhp->String(context);
+            if (lhs == NULL)
+                return NULL;
+        } else if (rhs == NULL) {
+            rhs = rhp->String(context);
+            if (rhs == NULL)
+                return NULL;
+        }
+
+        return lhs->Concat(context, rhs);
+    }
+
+    if (CYNumber *lhn = lhp->Number(context))
+        if (CYNumber *rhn = rhp->Number(context))
+            return $D(lhn->Value() + rhn->Value());
+
+    return NULL;
+}
+
 CYExpression *CYAddressOf::Replace(CYContext &context) {
     CYPrefix::Replace(context);
     return $C0($M(rhs_, $S("$cya")));
@@ -50,10 +119,15 @@ CYExpression *CYCall::Replace(CYContext &context) {
     return NULL;
 }
 
-void CYCatch::Replace(CYContext &context) { $T()
+namespace cy {
+namespace Syntax {
+
+void Catch::Replace(CYContext &context) { $T()
     code_.Replace(context);
 }
 
+} }
+
 void CYClause::Replace(CYContext &context) { $T()
     context.Replace(case_);
     statements_ = statements_->ReplaceAll(context);
@@ -97,6 +171,10 @@ void CYDeclaration::Replace(CYContext &context) {
     context.Replace(initialiser_);
 }
 
+CYProperty *CYDeclarations::Property(CYContext &context) { $T(NULL)
+    return $ CYProperty(declaration_->identifier_, declaration_->initialiser_ ?: $U, next_->Property(context));
+}
+
 void CYDeclarations::Replace(CYContext &context) { $T()
     declaration_->Replace(context);
     next_->Replace(context);
@@ -147,6 +225,14 @@ CYExpression *CYExpression::ReplaceAll(CYContext &context) { $T(NULL)
     return replace;
 }
 
+CYNumber *CYFalse::Number(CYContext &context) {
+    return $D(0);
+}
+
+CYString *CYFalse::String(CYContext &context) {
+    return $S("false");
+}
+
 void CYFinally::Replace(CYContext &context) { $T()
     code_.Replace(context);
 }
@@ -177,13 +263,12 @@ CYStatement *CYForInComprehension::Replace(CYContext &context, CYStatement *stat
 CYStatement *CYForEachIn::Replace(CYContext &context) {
     CYVariable *cys($V("$cys")), *cyt($V("$cyt"));
 
-    return $ CYWith($ CYObject($ CYProperty($S("$cys"), $D(0), $ CYProperty($S("$cyt"), $D(0)))), $ CYBlock($$->*
-        $E($ CYAssign(cys, set_))->*
+    return $ CYLet($L2($L($I("$cys"), set_), $L($I("$cyt"))), $$->*
         $ CYForIn(cyt, cys, $ CYBlock($$->*
             $E($ CYAssign(initialiser_->ForEachIn(context), $M(cys, cyt)))->*
             code_
         ))
-    ));
+    );
 }
 
 CYFunctionParameter *CYForEachInComprehension::Parameter(CYContext &context) const {
@@ -252,6 +337,10 @@ CYStatement *CYLabel::Replace(CYContext &context) {
     return NULL;
 }
 
+CYStatement *CYLet::Replace(CYContext &context) {
+    return $ CYWith($ CYObject(declarations_->Property(context)), &code_);
+}
+
 void CYMember::Replace_(CYContext &context) {
     context.Replace(object_);
     context.Replace(property_);
@@ -263,6 +352,23 @@ CYExpression *CYNew::Replace(CYContext &context) {
     return NULL;
 }
 
+CYNumber *CYNull::Number(CYContext &context) {
+    return $D(0);
+}
+
+CYString *CYNull::String(CYContext &context) {
+    return $S("null");
+}
+
+CYNumber *CYNumber::Number(CYContext &context) {
+    return this;
+}
+
+CYString *CYNumber::String(CYContext &context) {
+    // XXX: there is a precise algorithm for this
+    return $S(apr_psprintf(context.pool_, "%.17g", Value()));
+}
+
 CYExpression *CYObject::Replace(CYContext &context) {
     properties_->Replace(context);
     return NULL;
@@ -304,6 +410,24 @@ CYStatement *CYStatement::ReplaceAll(CYContext &context) { $T(NULL)
     return replace;
 }
 
+CYString *CYString::Concat(CYContext &context, CYString *rhs) const {
+    size_t size(size_ + rhs->size_);
+    char *value(new(context.pool_) char[size + 1]);
+    memcpy(value, value_, size_);
+    memcpy(value + size_, rhs->value_, rhs->size_);
+    value[size] = '\0';
+    return $S(value);
+}
+
+CYNumber *CYString::Number(CYContext &context) {
+    // XXX: there is a precise algorithm for this
+    return NULL;
+}
+
+CYString *CYString::String(CYContext &context) {
+    return this;
+}
+
 CYStatement *CYSwitch::Replace(CYContext &context) {
     context.Replace(value_);
     clauses_->Replace(context);
@@ -314,22 +438,40 @@ CYExpression *CYThis::Replace(CYContext &context) {
     return NULL;
 }
 
-CYStatement *CYThrow::Replace(CYContext &context) {
+namespace cy {
+namespace Syntax {
+
+CYStatement *Throw::Replace(CYContext &context) {
     context.Replace(value_);
     return NULL;
 }
 
+} }
+
 CYExpression *CYTrivial::Replace(CYContext &context) {
     return NULL;
 }
 
-CYStatement *CYTry::Replace(CYContext &context) {
+CYNumber *CYTrue::Number(CYContext &context) {
+    return $D(1);
+}
+
+CYString *CYTrue::String(CYContext &context) {
+    return $S("true");
+}
+
+namespace cy {
+namespace Syntax {
+
+CYStatement *Try::Replace(CYContext &context) {
     code_.Replace(context);
     catch_->Replace(context);
     finally_->Replace(context);
     return NULL;
 }
 
+} }
+
 CYStatement *CYVar::Replace(CYContext &context) {
     declarations_->Replace(context);
     return NULL;