]> git.saurik.com Git - cycript.git/commitdiff
Add a new ?gc to run GC without running a script.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 20 Jan 2014 12:42:39 +0000 (04:42 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 20 Jan 2014 12:42:39 +0000 (04:42 -0800)
Console.cpp
Execute.cpp
JavaScript.hpp

index ec849fe8639258bd5014a48787be41bd475c99d9..f7c6a0ade49aebeab228956d107efbf51c389d59 100644 (file)
@@ -499,6 +499,8 @@ static void Console(CYOptions &options) {
                     *out_ << "debug == " << (debug ? "true" : "false") << std::endl;
                 } else if (data == "destroy") {
                     CYDestroyContext();
                     *out_ << "debug == " << (debug ? "true" : "false") << std::endl;
                 } else if (data == "destroy") {
                     CYDestroyContext();
+                } else if (data == "gc") {
+                    CYGarbageCollect(CYGetJSContext());
                 } else if (data == "expand") {
                     expand = !expand;
                     *out_ << "expand == " << (expand ? "true" : "false") << std::endl;
                 } else if (data == "expand") {
                     expand = !expand;
                     *out_ << "expand == " << (expand ? "true" : "false") << std::endl;
index b2e0e0a467a674de79b9e14f2e8d444f8a7f9337..a71d29f29ef9268aeeb67eb1845eb95ae2801318 100644 (file)
@@ -342,8 +342,13 @@ static JSValueRef $cyq(JSContextRef context, JSObjectRef object, JSObjectRef _th
     return CYCastJSValue(context, name);
 } CYCatch(NULL) }
 
     return CYCastJSValue(context, name);
 } CYCatch(NULL) }
 
-static JSValueRef Cycript_gc_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
+
+void CYGarbageCollect(JSContextRef context) {
     JSGarbageCollect(context);
     JSGarbageCollect(context);
+}
+
+static JSValueRef Cycript_gc_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
+    CYGarbageCollect(context);
     return CYJSUndefined(context);
 } CYCatch(NULL) }
 
     return CYJSUndefined(context);
 } CYCatch(NULL) }
 
index b863a93bf25949d82b41215989fb7819cc8ff257..c8a8fd89bf4ba34dae75042be2338140f759ecde 100644 (file)
@@ -143,6 +143,7 @@ JSStringRef CYCopyJSString(JSStringRef value);
 JSStringRef CYCopyJSString(CYUTF8String value);
 JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value);
 
 JSStringRef CYCopyJSString(CYUTF8String value);
 JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value);
 
+void CYGarbageCollect(JSContextRef context);
 void CYDestroyContext();
 
 class CYJSString {
 void CYDestroyContext();
 
 class CYJSString {