Searched defs:emitLoad (Results 1 - 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/jit/
H A DJITInlineMethods.h365 inline void JIT::emitLoad(const JSValue& v, RegisterID tag, RegisterID payload) function in class:JSC::JIT
371 inline void JIT::emitLoad(unsigned index, RegisterID tag, RegisterID payload, RegisterID base) function in class:JSC::JIT
395 emitLoad(index1, tag1, payload1);
396 emitLoad(index2, tag2, payload2);
399 emitLoad(index2, tag2, payload2);
400 emitLoad(index1, tag1, payload1);
603 emitLoad(src, scratch1, scratch2);
/external/webkit/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp272 emitLoad(newVars[i], jsUndefined());
960 RegisterID* BytecodeGenerator::emitLoad(RegisterID* dst, bool b) function in class:JSC::BytecodeGenerator
962 return emitLoad(dst, jsBoolean(b));
965 RegisterID* BytecodeGenerator::emitLoad(RegisterID* dst, double number) function in class:JSC::BytecodeGenerator
970 return emitLoad(dst, jsNumber(globalData(), number));
974 return emitLoad(dst, valueInMap);
977 RegisterID* BytecodeGenerator::emitLoad(RegisterID* dst, const Identifier& identifier) function in class:JSC::BytecodeGenerator
982 return emitLoad(dst, JSValue(stringInMap));
985 RegisterID* BytecodeGenerator::emitLoad(RegisterID* dst, JSValue v) function in class:JSC::BytecodeGenerator
1161 return emitLoad(ds
[all...]

Completed in 51 milliseconds