/* This file is part of the WebKit open source project. This file has been generated by generate-bindings.pl. DO NOT MODIFY! This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include "JSConsole.h" #include "Console.h" #include "ExceptionCode.h" #include "JSDOMBinding.h" #include "JSMemoryInfo.h" #include "MemoryInfo.h" #include "ScriptArguments.h" #include "ScriptCallStack.h" #include "ScriptCallStackFactory.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSConsole); /* Hash table */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSConsoleTableValues[3] = { { "profiles", DontDelete | ReadOnly, (intptr_t)static_cast(jsConsoleProfiles), (intptr_t)0 THUNK_GENERATOR(0) }, { "memory", DontDelete | ReadOnly, (intptr_t)static_cast(jsConsoleMemory), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSConsoleTable = { 4, 3, JSConsoleTableValues, 0 }; /* Hash table for prototype */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSConsolePrototypeTableValues[19] = { { "debug", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionDebug), (intptr_t)0 THUNK_GENERATOR(0) }, { "error", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionError), (intptr_t)0 THUNK_GENERATOR(0) }, { "info", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionInfo), (intptr_t)0 THUNK_GENERATOR(0) }, { "log", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionLog), (intptr_t)0 THUNK_GENERATOR(0) }, { "warn", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionWarn), (intptr_t)0 THUNK_GENERATOR(0) }, { "dir", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionDir), (intptr_t)0 THUNK_GENERATOR(0) }, { "dirxml", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionDirxml), (intptr_t)0 THUNK_GENERATOR(0) }, { "trace", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionTrace), (intptr_t)0 THUNK_GENERATOR(0) }, { "assert", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionAssert), (intptr_t)1 THUNK_GENERATOR(0) }, { "count", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionCount), (intptr_t)0 THUNK_GENERATOR(0) }, { "markTimeline", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionMarkTimeline), (intptr_t)0 THUNK_GENERATOR(0) }, { "profile", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionProfile), (intptr_t)1 THUNK_GENERATOR(0) }, { "profileEnd", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionProfileEnd), (intptr_t)1 THUNK_GENERATOR(0) }, { "time", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionTime), (intptr_t)1 THUNK_GENERATOR(0) }, { "timeEnd", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionTimeEnd), (intptr_t)1 THUNK_GENERATOR(0) }, { "group", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionGroup), (intptr_t)0 THUNK_GENERATOR(0) }, { "groupCollapsed", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionGroupCollapsed), (intptr_t)0 THUNK_GENERATOR(0) }, { "groupEnd", DontDelete | Function, (intptr_t)static_cast(jsConsolePrototypeFunctionGroupEnd), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSConsolePrototypeTable = { 65, 63, JSConsolePrototypeTableValues, 0 }; const ClassInfo JSConsolePrototype::s_info = { "ConsolePrototype", &JSC::JSObjectWithGlobalObject::s_info, &JSConsolePrototypeTable, 0 }; JSObject* JSConsolePrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSConsolePrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, &JSConsolePrototypeTable, this, propertyName, slot); } bool JSConsolePrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticFunctionDescriptor(exec, &JSConsolePrototypeTable, this, propertyName, descriptor); } const ClassInfo JSConsole::s_info = { "Console", &JSDOMWrapper::s_info, &JSConsoleTable, 0 }; JSConsole::JSConsole(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSDOMWrapper(structure, globalObject) , m_impl(impl) { ASSERT(inherits(&s_info)); } JSObject* JSConsole::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSConsolePrototype(exec->globalData(), globalObject, JSConsolePrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype())); } bool JSConsole::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSConsoleTable, this, propertyName, slot); } bool JSConsole::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSConsoleTable, this, propertyName, descriptor); } JSValue jsConsoleProfiles(ExecState* exec, JSValue slotBase, const Identifier&) { JSConsole* castedThis = static_cast(asObject(slotBase)); return castedThis->profiles(exec); } JSValue jsConsoleMemory(ExecState* exec, JSValue slotBase, const Identifier&) { JSConsole* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); Console* imp = static_cast(castedThis->impl()); JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->memory())); return result; } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionDebug(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->debug(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionError(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->error(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionInfo(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->info(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionLog(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->log(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionWarn(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->warn(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionDir(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->dir(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionDirxml(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->dirxml(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionTrace(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->trace(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionAssert(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 1)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); bool condition(exec->argument(0).toBoolean(exec)); if (exec->hadException()) return JSValue::encode(jsUndefined()); imp->assertCondition(condition, scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionCount(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->count(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionMarkTimeline(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->markTimeline(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionProfile(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); return JSValue::encode(castedThis->profile(exec)); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionProfileEnd(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); return JSValue::encode(castedThis->profileEnd(exec)); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionTime(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); const String& title(valueToStringWithUndefinedOrNullCheck(exec, exec->argument(0))); if (exec->hadException()) return JSValue::encode(jsUndefined()); imp->time(title); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionTimeEnd(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 1)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); const String& title(valueToStringWithUndefinedOrNullCheck(exec, exec->argument(0))); if (exec->hadException()) return JSValue::encode(jsUndefined()); imp->timeEnd(title, scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionGroup(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->group(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionGroupCollapsed(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); RefPtr scriptArguments(createScriptArguments(exec, 0)); size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1; RefPtr callStack(createScriptCallStack(exec, maxStackSize)); imp->groupCollapsed(scriptArguments, callStack); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsConsolePrototypeFunctionGroupEnd(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSConsole::s_info)) return throwVMTypeError(exec); JSConsole* castedThis = static_cast(asObject(thisValue)); Console* imp = static_cast(castedThis->impl()); imp->groupEnd(); return JSValue::encode(jsUndefined()); } static inline bool isObservable(JSConsole* jsConsole) { if (jsConsole->hasCustomProperties()) return true; return false; } bool JSConsoleOwner::isReachableFromOpaqueRoots(JSC::Handle handle, void*, SlotVisitor& visitor) { JSConsole* jsConsole = static_cast(handle.get().asCell()); if (!isObservable(jsConsole)) return false; Frame* root = jsConsole->impl()->frame(); if (!root) return false; return visitor.containsOpaqueRoot(root); } void JSConsoleOwner::finalize(JSC::Handle handle, void* context) { JSConsole* jsConsole = static_cast(handle.get().asCell()); DOMWrapperWorld* world = static_cast(context); uncacheWrapper(world, jsConsole->impl(), jsConsole); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Console* impl) { return wrap(exec, globalObject, impl); } Console* toConsole(JSC::JSValue value) { return value.inherits(&JSConsole::s_info) ? static_cast(asObject(value))->impl() : 0; } }