/external/webkit/JavaScriptCore/interpreter/ |
D | Interpreter.h | 111 …NEVER_INLINE JSValue callEval(CallFrame*, RegisterFile*, Register* argv, int argc, int registerOff… 112 … NEVER_INLINE HandlerInfo* throwException(CallFrame*&, JSValue&, unsigned bytecodeOffset, bool); 113 NEVER_INLINE void debug(CallFrame*, DebugHookID, int firstLine, int lastLine); 125 NEVER_INLINE bool resolve(CallFrame*, Instruction*, JSValue& exceptionValue); 126 NEVER_INLINE bool resolveSkip(CallFrame*, Instruction*, JSValue& exceptionValue); 127 NEVER_INLINE bool resolveGlobal(CallFrame*, Instruction*, JSValue& exceptionValue); 128 NEVER_INLINE void resolveBase(CallFrame*, Instruction* vPC); 129 NEVER_INLINE bool resolveBaseAndProperty(CallFrame*, Instruction*, JSValue& exceptionValue); 130 NEVER_INLINE bool resolveBaseAndFunc(CallFrame*, Instruction*, JSValue& exceptionValue); 131 NEVER_INLINE ScopeChainNode* createExceptionScope(CallFrame*, const Instruction* vPC); [all …]
|
D | Interpreter.cpp | 92 NEVER_INLINE bool Interpreter::resolve(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionVa… in resolve() 120 NEVER_INLINE bool Interpreter::resolveSkip(CallFrame* callFrame, Instruction* vPC, JSValue& excepti… in resolveSkip() 153 NEVER_INLINE bool Interpreter::resolveGlobal(CallFrame* callFrame, Instruction* vPC, JSValue& excep… in resolveGlobal() 193 NEVER_INLINE void Interpreter::resolveBase(CallFrame* callFrame, Instruction* vPC) in resolveBase() 200 NEVER_INLINE bool Interpreter::resolveBaseAndProperty(CallFrame* callFrame, Instruction* vPC, JSVal… in resolveBaseAndProperty() 236 NEVER_INLINE bool Interpreter::resolveBaseAndFunc(CallFrame* callFrame, Instruction* vPC, JSValue& … in resolveBaseAndFunc() 321 static NEVER_INLINE bool isInvalidParamForIn(CallFrame* callFrame, CodeBlock* codeBlock, const Inst… in isInvalidParamForIn() 329 static NEVER_INLINE bool isInvalidParamForInstanceOf(CallFrame* callFrame, CodeBlock* codeBlock, co… in isInvalidParamForInstanceOf() 338 NEVER_INLINE JSValue Interpreter::callEval(CallFrame* callFrame, RegisterFile* registerFile, Regist… in callEval() 485 NEVER_INLINE bool Interpreter::unwindCallFrame(CallFrame*& callFrame, JSValue exceptionValue, unsig… in unwindCallFrame() [all …]
|
/external/webkit/JavaScriptCore/wtf/ |
D | AlwaysInline.h | 33 #ifndef NEVER_INLINE 35 #define NEVER_INLINE __attribute__((__noinline__)) macro 37 #define NEVER_INLINE macro
|
/external/webkit/JavaScriptCore/runtime/ |
D | Operations.cpp | 48 NEVER_INLINE JSValue throwOutOfMemoryError(ExecState* exec) in throwOutOfMemoryError() 55 NEVER_INLINE JSValue jsAddSlowCase(CallFrame* callFrame, JSValue v1, JSValue v2) in jsAddSlowCase()
|
D | JSActivation.h | 83 NEVER_INLINE PropertySlot::GetValueFunc getArgumentsGetter();
|
D | StringConstructor.cpp | 31 static NEVER_INLINE JSValue stringFromCharCodeSlowCase(ExecState* exec, const ArgList& args) in stringFromCharCodeSlowCase()
|
D | Operations.h | 32 NEVER_INLINE JSValue throwOutOfMemoryError(ExecState*); 33 NEVER_INLINE JSValue jsAddSlowCase(CallFrame*, JSValue, JSValue);
|
D | JSValue.cpp | 172 NEVER_INLINE double nonInlineNaN() in nonInlineNaN()
|
D | Collector.cpp | 213 static NEVER_INLINE CollectorBlock* allocateBlock() in allocateBlock() 699 void NEVER_INLINE Heap::markCurrentThreadConservativelyInternal(MarkStack& markStack) in markCurrentThreadConservativelyInternal()
|
D | JSObject.cpp | 512 NEVER_INLINE void JSObject::fillGetterPropertySlot(PropertySlot& slot, JSValue* location) in fillGetterPropertySlot()
|
D | UString.cpp | 1738 NEVER_INLINE void UString::makeNull() in makeNull() 1744 NEVER_INLINE UString::Rep* UString::nullRep() in nullRep()
|
D | JSONObject.cpp | 617 NEVER_INLINE JSValue Walker::walk(JSValue unfiltered) in walk()
|
D | JSArray.cpp | 292 NEVER_INLINE void JSArray::putSlowCase(ExecState* exec, unsigned i, JSValue value) in putSlowCase()
|
/external/webkit/JavaScriptCore/parser/ |
D | Lexer.cpp | 218 static NEVER_INLINE bool isNonASCIIIdentStart(int c) in isNonASCIIIdentStart() 228 static NEVER_INLINE bool isNonASCIIIdentPart(int c) in isNonASCIIIdentPart()
|
/external/webkit/JavaScriptCore/jit/ |
D | JITStubs.cpp | 660 NEVER_INLINE void JITThunks::tryCachePutByID(CallFrame* callFrame, CodeBlock* codeBlock, ReturnAddr… in tryCachePutByID() 706 NEVER_INLINE void JITThunks::tryCacheGetByID(CallFrame* callFrame, CodeBlock* codeBlock, ReturnAddr… in tryCacheGetByID() 840 static NEVER_INLINE void returnToThrowTrampoline(JSGlobalData* globalData, ReturnAddressPtr excepti… in returnToThrowTrampoline() 847 static NEVER_INLINE void throwStackOverflowError(CallFrame* callFrame, JSGlobalData* globalData, Re… in throwStackOverflowError()
|
/external/webkit/JavaScriptCore/bytecode/ |
D | CodeBlock.cpp | 115 NEVER_INLINE static const char* debugHookName(int debugHookID) in debugHookName()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2008-08-10 | 5167 (KJS::allocateBlock): Marked NEVER_INLINE, as this is a rare case that uses a PIC branch. 8462 (KJS::debugHookName): I had to mark this function NEVER_INLINE to avoid 9781 NEVER_INLINE function to avoid a stunning 10% performance regression. 16454 (KJS::allocateBlock): Added NEVER_INLINE, because this function uses a PIC branch, so 18065 … The fix for this is to move the calculation of the top of the stack into a NEVER_INLINE function 22888 * kjs/nodes.h: Use the new NEVER_INLINE here and eliminate the old 22919 (KJS::Node::rethrowException): Added NEVER_INLINE, because this was getting inlined 22972 * wtf/AlwaysInline.h: Added NEVER_INLINE.
|
D | ChangeLog-2009-06-16 | 31895 (JSC::jsAddSlowCase): Make this NEVER_INLINE because somehow otherwise 37021 Move cross-compilation unit call into NEVER_INLINE function.
|