Searched refs:vm (Results 276 - 300 of 792) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGDesiredIdentifiers.cpp71 void DesiredIdentifiers::reallyAdd(VM& vm, CommonData* commonData) argument
76 commonData->dfgIdentifiers.append(Identifier(&vm, rep));
H A DDFGDesiredWeakReferences.cpp56 void DesiredWeakReferences::reallyAdd(VM& vm, CommonData* common) argument
60 common->weakReferences.append(WriteBarrier<JSCell>(vm, m_codeBlock->ownerExecutable(), target));
H A DDFGCommonData.h57 WeakReferenceTransition(VM& vm, JSCell* owner, JSCell* codeOrigin, JSCell* from, JSCell* to) argument
58 : m_from(vm, owner, from)
59 , m_to(vm, owner, to)
62 m_codeOrigin.set(vm, owner, codeOrigin);
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DLocalScope.h54 inline LocalScope::LocalScope(VM& vm) argument
55 : m_handleStack(vm.heap.handleStack())
H A DGCActivityCallback.cpp54 : GCActivityCallback(heap->vm(), CFRunLoopGetCurrent())
59 : GCActivityCallback(heap->vm(), runLoop)
64 : GCActivityCallback(heap->vm(), WTF::isMainThread())
150 : GCActivityCallback(heap->vm())
H A DIncrementalSweeper.cpp48 : HeapTimer(heap->vm(), runLoop)
123 IncrementalSweeper::IncrementalSweeper(VM* vm)
124 : HeapTimer(vm)
134 return adoptPtr(new IncrementalSweeper(heap->vm()));
H A DWeakSet.h48 VM* vm() const;
70 inline WeakSet::WeakSet(VM* vm) argument
73 , m_vm(vm)
77 inline VM* WeakSet::vm() const function in class:JSC::WeakSet
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DJSGlobalObjectScriptDebugServer.cpp77 JSC::Debugger::recompileAllJSFunctions(&m_globalObject.vm());
83 JSC::JSLock::DropAllLocks dropAllLocks(&m_globalObject.vm());
H A DJSInjectedScriptHostPrototype.cpp53 void JSInjectedScriptHostPrototype::finishCreation(VM& vm, JSGlobalObject* globalObject) argument
55 Base::finishCreation(vm);
57 vm.prototypeMap.addPrototype(this);
65 Identifier evaluateIdentifier(&vm, "evaluate");
66 GetterSetter* accessor = GetterSetter::create(vm);
67 JSFunction* function = JSFunction::create(vm, globalObject, 0, evaluateIdentifier.string(), jsInjectedScriptHostPrototypeAttributeEvaluate);
68 accessor->setGetter(vm, function);
69 putDirectNonIndexAccessor(vm, evaluateIdentifier, accessor, DontEnum | Accessor);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DInternalFunction.h44 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue proto) argument
46 return Structure::create(vm, globalObject, proto, TypeInfo(ObjectType, StructureFlags), info());
H A DJSFunction.h63 static JSFunction* create(VM& vm, FunctionExecutable* executable, JSScope* scope) argument
65 JSFunction* function = new (NotNull, allocateCell<JSFunction>(vm.heap)) JSFunction(vm, executable, scope);
67 function->finishCreation(vm);
93 void setScope(VM& vm, JSScope* scope) argument
96 m_scope.set(vm, this, scope);
110 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) argument
113 return Structure::create(vm, globalObject, prototype, TypeInfo(JSFunctionType, StructureFlags), info());
H A DJSPromiseReaction.h44 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) argument
46 return Structure::create(vm, globalObject, prototype, TypeInfo(CompoundType, StructureFlags), info());
H A DJSVariableObject.h61 VM& vm,
66 : Base(vm, structure, scope, symbolTable)
60 JSVariableObject( VM& vm, Structure* structure, Register* registers, JSScope* scope, SymbolTable* symbolTable = 0) argument
H A DWeakMapData.cpp41 WeakMapData::WeakMapData(VM& vm) argument
42 : Base(vm, vm.weakMapDataStructure.get())
47 void WeakMapData::finishCreation(VM& vm) argument
49 Base::finishCreation(vm);
70 void WeakMapData::set(VM& vm, JSObject* key, JSValue value) argument
73 auto result = m_map.add(WriteBarrier<JSObject>(vm, this, key).get(), WriteBarrier<Unknown>());
74 result.iterator->value.set(vm, this, value);
H A DStructure.h86 void finishCreation(VM& vm) argument
88 Base::finishCreation(vm);
93 void finishCreation(VM& vm, CreatingEarlyCellTag) argument
95 Base::finishCreation(vm, this, CreatingEarlyCell);
98 ASSERT(!vm.structureStructure);
144 void setPrototypeWithoutTransition(VM& vm, JSValue prototype) { m_prototype.set(vm, this, prototype); } argument
179 void setGlobalObject(VM& vm, JSGlobalObject* globalObject) { m_globalObject.set(vm, this, globalObject); } argument
318 void setObjectToStringValue(VM& vm, JSStrin argument
436 materializePropertyMapIfNecessary(VM& vm, DeferGC&) argument
444 materializePropertyMapIfNecessary(VM& vm, PropertyTable*& table) argument
456 materializePropertyMapIfNecessaryForPinning(VM& vm, DeferGC&) argument
464 setPreviousID(VM& vm, Structure* structure) argument
[all...]
H A DPropertyNameArray.h54 PropertyNameArray(VM* vm) argument
56 , m_vm(vm)
64 , m_vm(&exec->vm())
70 VM* vm() { return m_vm; } function in class:JSC::PropertyNameArray
/macosx-10.10.1/xnu-2782.1.97/bsd/vm/
H A Dvnode_pager.h46 #include <vm/vm_protos.h>
47 #include <vm/vm_pager.h>
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Dio_map.c60 #include <vm/vm_kern.h>
61 #include <vm/vm_map.h>
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dsyscall_emulation.c69 #include <vm/vm_map.h>
70 #include <vm/vm_kern.h>
/macosx-10.10.1/xnu-2782.1.97/osfmk/vm/
H A DMakefile24 INSTALL_MI_DIR = vm
28 EXPORT_MI_DIR = vm
/macosx-10.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLOSREntry.cpp45 VM& vm = exec->vm(); local
91 if (!vm.interpreter->stack().ensureCapacityFor(&exec->registers()[virtualRegisterForLocal(stackFrameSize - 1).offset()])) {
100 vm, executable, ArityCheckNotRequired,
H A DFTLThunks.h57 VM& vm, MapType& map, const typename MapType::KeyType& key, GeneratorType generator)
63 MacroAssemblerCodeRef result = generator(vm, key);
79 MacroAssemblerCodeRef getSlowPathCallThunk(VM& vm, const SlowPathCallKey& key) argument
82 vm, m_slowPathCallThunks, key, slowPathCallThunkGenerator);
56 generateIfNecessary( VM& vm, MapType& map, const typename MapType::KeyType& key, GeneratorType generator) argument
/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DCallFrameClosure.h38 VM* vm; member in struct:JSC::CallFrameClosure
/macosx-10.10.1/JavaScriptCore-7600.1.17/profiler/
H A DProfilerBytecodeSequence.cpp57 m_sequence.append(Bytecode(bytecodeIndex, codeBlock->vm()->interpreter->getOpcodeID(codeBlock->instructions()[bytecodeIndex].u.opcode), out.toCString()));
59 codeBlock->vm()->interpreter->getOpcodeID(
83 result->putDirect(exec->vm(), exec->propertyNames().header, header);
88 result->putDirect(exec->vm(), exec->propertyNames().bytecode, sequence);
H A DProfilerProfiledBytecodes.cpp49 result->putDirect(exec->vm(), exec->propertyNames().bytecodesID, jsNumber(m_bytecodes->id()));

Completed in 572 milliseconds

<<11121314151617181920>>