Changeset 212620 in webkit for trunk/Source/JavaScriptCore/jsc.cpp
- Timestamp:
- Feb 19, 2017, 7:59:19 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jsc.cpp
r212616 r212620 3070 3070 } 3071 3071 3072 static JSValue callWasmFunction(VM* vm, JSGlobalObject* globalObject, JSWebAssemblyCallee* wasmCallee, Vector<JSValue>& boxedArgs) 3072 // FIXME: https://bugs.webkit.org/show_bug.cgi?id=168582. 3073 static JSValue callWasmFunction(VM* vm, JSGlobalObject* globalObject, JSWebAssemblyCallee* wasmCallee, const ArgList& boxedArgs) 3073 3074 { 3074 3075 JSValue firstArgument; … … 3136 3137 JSArray* arguments = jsCast<JSArray*>(test->getIndexQuickly(1)); 3137 3138 3138 Vector<JSValue>boxedArgs;3139 MarkedArgumentBuffer boxedArgs; 3139 3140 for (unsigned argIndex = 0; argIndex < arguments->length(); ++argIndex) 3140 3141 boxedArgs.append(box(exec, vm, arguments->getIndexQuickly(argIndex))); … … 3151 3152 CommaPrinter comma(", "); 3152 3153 for (unsigned argIndex = 0; argIndex < arguments->length(); ++argIndex) 3153 dataLog(comma, valueWithTypeOfWasmValue(exec, vm, boxedArgs [argIndex], arguments->getIndexQuickly(argIndex)));3154 dataLog(comma, valueWithTypeOfWasmValue(exec, vm, boxedArgs.at(argIndex), arguments->getIndexQuickly(argIndex))); 3154 3155 dataLogLn(); 3155 3156
Note:
See TracChangeset
for help on using the changeset viewer.