Changeset 5404 in webkit
- Timestamp:
- Nov 6, 2003, 9:12:28 AM (21 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog-2005-08-23
r5403 r5404 1 2003-11-06 Maciej Stachowiak <mjs@apple.com> 2 3 Reviewed by Darin. 4 5 - fixed 3475366 - 4.5% of time spent making html event listeners on slow intel page. 6 7 6% speedup on intel page, 1% speedup on cvs-base PLT. 8 9 * khtml/ecma/kjs_events.cpp: 10 (JSEventListener::JSEventListener): Don't add self to hashtable if imp is null (which 11 can now happen in the lazy listener case). 12 (JSEventListener::~JSEventListener): Ditto on removing. 13 (JSEventListener::listenerObj): Made this virtual. 14 (JSLazyEventListener::JSLazyEventListener): New constructor. 15 (JSLazyEventListener::handleEvent): call parseCode, then 16 superclass if it appeared to succeed. 17 (JSLazyEventListener::listenerObj): call parseCode, then superclass. 18 (JSLazyEventListener::parseCode): 19 (KJS::getNodeEventListener): Check for null listenerObjImp in case of 20 lazy listener that failed to parse. 21 * khtml/ecma/kjs_dom.cpp: 22 (DOMNode::getListener): Ditto. 23 * khtml/ecma/kjs_html.cpp: 24 (Image::getValueProperty): Ditto. 25 * khtml/ecma/kjs_events.h: 26 (KJS::JSEventListener::listenerObjImp): call listenerObj() virtual 27 method and get imp from the result. 28 * khtml/ecma/kjs_proxy.cpp: 29 (KJSProxyImpl::createHTMLEventHandler): Don't parse the code here, make a lazy 30 listener. 31 * khtml/ecma/kjs_window.cpp: 32 (Window::getJSLazyEventListener): make a new JSLazyEventListener - no need 33 to check the listeners hashtable cause a brand new lazy listener won't have 34 a function anyway. 35 * khtml/ecma/kjs_window.h: Prototype new method. 36 1 37 2003-11-06 Maciej Stachowiak <mjs@apple.com> 2 38 -
trunk/WebCore/khtml/ecma/kjs_dom.cpp
r5296 r5404 416 416 { 417 417 DOM::EventListener *listener = node.handle()->getHTMLEventListener(eventId); 418 if (listener) 419 return static_cast<JSEventListener*>(listener)->listenerObj(); 418 JSEventListener *jsListener = static_cast<JSEventListener*>(listener); 419 if ( jsListener && jsListener->listenerObjImp() ) 420 return jsListener->listenerObj(); 420 421 else 421 422 return Null(); -
trunk/WebCore/khtml/ecma/kjs_events.cpp
r5402 r5404 44 44 html = _html; 45 45 win = _win; 46 static_cast<Window*>(win.imp())->jsEventListeners.insert(_listener.imp(), this); 46 if (_listener.imp()) { 47 static_cast<Window*>(win.imp())->jsEventListeners.insert(_listener.imp(), this); 48 } 47 49 } 48 50 49 51 JSEventListener::~JSEventListener() 50 52 { 51 static_cast<Window*>(win.imp())->jsEventListeners.remove(listener.imp()); 53 if (listener.imp()) { 54 static_cast<Window*>(win.imp())->jsEventListeners.remove(listener.imp()); 55 } 52 56 //fprintf(stderr,"JSEventListener::~JSEventListener this=%p listener=%p\n",this,listener.imp()); 53 57 } … … 60 64 #endif 61 65 KHTMLPart *part = static_cast<Window*>(win.imp())->part(); 62 KJSProxy *proxy = 0 L;66 KJSProxy *proxy = 0; 63 67 if (part) 64 68 proxy = KJSProxy::proxy( part ); … … 132 136 } 133 137 138 139 Object JSEventListener::listenerObj() const 140 { 141 return listener; 142 } 143 144 JSLazyEventListener::JSLazyEventListener(QString _code, const Object &_win, bool _html) 145 : JSEventListener(Object(), _win, _html), 146 code(_code), 147 parsed(false) 148 { 149 } 150 151 void JSLazyEventListener::handleEvent(DOM::Event &evt, bool isWindowEvent) 152 { 153 parseCode(); 154 if (!listener.isNull()) { 155 JSEventListener::handleEvent(evt, isWindowEvent); 156 } 157 } 158 159 160 Object JSLazyEventListener::listenerObj() const 161 { 162 parseCode(); 163 return listener; 164 } 165 166 void JSLazyEventListener::parseCode() const 167 { 168 if (!parsed) { 169 KHTMLPart *part = static_cast<Window*>(win.imp())->part(); 170 KJSProxy *proxy = 0L; 171 if (part) 172 proxy = KJSProxy::proxy( part ); 173 174 if (proxy) { 175 KJS::ScriptInterpreter *interpreter = static_cast<KJS::ScriptInterpreter *>(proxy->interpreter()); 176 ExecState *exec = interpreter->globalExec(); 177 178 //KJS::Constructor constr(KJS::Global::current().get("Function").imp()); 179 KJS::Object constr = interpreter->builtinFunction(); 180 KJS::List args; 181 182 static KJS::String eventString("event"); 183 184 args.append(eventString); 185 args.append(KJS::String(code)); 186 listener = constr.construct(exec, args); // ### is globalExec ok ? 187 188 if ( exec->hadException() ) { 189 exec->clearException(); 190 191 // failed to parse, so let's just make this listener a no-op 192 listener = Object(); 193 } 194 } 195 196 // no more need to keep the unparsed code around 197 code = QString(); 198 199 if (!listener.isNull()) { 200 static_cast<Window*>(win.imp())->jsEventListeners.insert(listener.imp(), 201 (KJS::JSEventListener *)(this)); 202 } 203 204 parsed = true; 205 } 206 } 207 134 208 Value KJS::getNodeEventListener(DOM::Node n, int eventId) 135 209 { 136 210 DOM::EventListener *listener = n.handle()->getHTMLEventListener(eventId); 137 if (listener) 138 return static_cast<JSEventListener*>(listener)->listenerObj(); 211 JSEventListener *jsListener = static_cast<JSEventListener*>(listener); 212 if ( jsListener && jsListener->listenerObjImp() ) 213 return jsListener->listenerObj(); 139 214 else 140 215 return Null(); 141 216 } 217 218 142 219 143 220 // ------------------------------------------------------------------------- -
trunk/WebCore/khtml/ecma/kjs_events.h
r5402 r5404 37 37 virtual void handleEvent(DOM::Event &evt, bool isWindowEvent); 38 38 virtual DOM::DOMString eventListenerType(); 39 Object listenerObj() const { return listener; }40 ObjectImp *listenerObjImp() const { return listener .imp(); }39 virtual Object listenerObj() const; 40 ObjectImp *listenerObjImp() const { return listenerObj().imp(); } 41 41 protected: 42 Object listener;42 mutable Object listener; 43 43 bool html; 44 44 Object win; 45 45 }; 46 47 class JSLazyEventListener : public JSEventListener { 48 public: 49 JSLazyEventListener(QString _code, const Object &_win, bool _html = false); 50 virtual void handleEvent(DOM::Event &evt, bool isWindowEvent); 51 Object listenerObj() const; 52 private: 53 void parseCode() const; 54 55 mutable QString code; 56 mutable bool parsed; 57 }; 58 46 59 47 60 Value getNodeEventListener(DOM::Node n, int eventId); -
trunk/WebCore/khtml/ecma/kjs_html.cpp
r5324 r5404 3186 3186 return Boolean(!img || img->status() >= khtml::CachedObject::Persistent); 3187 3187 case OnLoad: 3188 if (onLoadListener ) {3188 if (onLoadListener && onLoadListener->listenerObjImp()) { 3189 3189 return onLoadListener->listenerObj(); 3190 3190 } else { -
trunk/WebCore/khtml/ecma/kjs_proxy.cpp
r4666 r5404 165 165 166 166 initScript(); 167 //KJS::Constructor constr(KJS::Global::current().get("Function").imp()); 168 KJS::Object constr = m_script->builtinFunction(); 169 KJS::List args; 170 args.append(KJS::String("event")); 171 args.append(KJS::String(code)); 172 Object handlerFunc = constr.construct(m_script->globalExec(), args); // ### is globalExec ok ? 173 174 return KJS::Window::retrieveWindow(m_part)->getJSEventListener(handlerFunc,true); 167 168 return KJS::Window::retrieveWindow(m_part)->getJSLazyEventListener(code,true); 175 169 } 176 170 -
trunk/WebCore/khtml/ecma/kjs_window.cpp
r5394 r5404 1033 1033 } 1034 1034 1035 JSLazyEventListener *Window::getJSLazyEventListener(const QString& code, bool html) 1036 { 1037 return new JSLazyEventListener(code, Object(this), html); 1038 } 1039 1035 1040 void Window::clear( ExecState *exec ) 1036 1041 { -
trunk/WebCore/khtml/ecma/kjs_window.h
r5394 r5404 42 42 class FrameArray; 43 43 class JSEventListener; 44 class JSLazyEventListener; 44 45 45 46 class Screen : public ObjectImp { … … 101 102 Location *location() const; 102 103 JSEventListener *getJSEventListener(const Value &val, bool html = false); 104 JSLazyEventListener *getJSLazyEventListener(const QString &code, bool html = false); 103 105 void clear( ExecState *exec ); 104 106 virtual UString toString(ExecState *exec) const; -
trunk/WebCore/khtml/xml/dom_docimpl.cpp
r5391 r5404 2397 2397 QString DocumentImpl::completeURL(const QString &URL) 2398 2398 { 2399 return KURL(baseURL(), URL, m_decoder ? m_decoder->codec() : 0).url();2399 * return KURL(baseURL(), URL, m_decoder ? m_decoder->codec() : 0).url(); 2400 2400 } 2401 2401
Note:
See TracChangeset
for help on using the changeset viewer.