HomeSort by relevance Sort by last modified time
    Searched full:jsfunction (Results 26 - 50 of 267) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/v8/src/
mark-compact.h 411 // - JSFunction references either unoptimized or optimized code.
431 void AddCandidate(JSFunction* function) {
448 void EvictCandidate(JSFunction* function);
472 static JSFunction** GetNextCandidateSlot(JSFunction* candidate) {
473 return reinterpret_cast<JSFunction**>(
474 HeapObject::RawField(candidate, JSFunction::kNextFunctionLinkOffset));
477 static JSFunction* GetNextCandidate(JSFunction* candidate) {
479 return reinterpret_cast<JSFunction*>(next_candidate)
    [all...]
objects-visiting-inl.h 496 JSFunction* function = JSFunction::cast(object);
684 JSFunction* inlined = JSFunction::cast(literals->get(i));
705 Heap* heap, JSFunction* function) {
834 HeapObject::RawField(object, JSFunction::kPropertiesOffset);
836 HeapObject::RawField(object, JSFunction::kCodeEntryOffset);
839 VisitCodeEntry(heap, object->address() + JSFunction::kCodeEntryOffset);
840 STATIC_ASSERT(JSFunction::kCodeEntryOffset + kPointerSize ==
841 JSFunction::kPrototypeOrInitialMapOffset)
    [all...]
runtime-profiler.cc 126 void RuntimeProfiler::Optimize(JSFunction* function, const char* reason) {
161 void RuntimeProfiler::AttemptOnStackReplacement(JSFunction* function) {
198 int RuntimeProfiler::LookupSample(JSFunction* function) {
204 ? (function->shared() == JSFunction::cast(sample)->shared())
205 : (function == JSFunction::cast(sample));
215 void RuntimeProfiler::AddSample(JSFunction* function, int weight) {
234 JSFunction* samples[kSamplerFrameCount];
243 JSFunction* function = frame->function();
accessors.h 80 static Handle<Object> FunctionSetPrototype(Handle<JSFunction> object,
82 static Handle<Object> FunctionGetPrototype(Handle<JSFunction> object);
83 static Handle<Object> FunctionGetArguments(Handle<JSFunction> object);
messages.cc 163 Handle<JSFunction> fun =
164 Handle<JSFunction>(
165 JSFunction::cast(
type-info.cc 220 Handle<JSFunction> TypeFeedbackOracle::GetCallTarget(TypeFeedbackId id) {
223 return Handle<JSFunction>(isolate_->global_context()->array_function());
225 return Handle<JSFunction>::cast(info);
230 Handle<JSFunction> TypeFeedbackOracle::GetCallNewTarget(TypeFeedbackId id) {
233 return Handle<JSFunction>(isolate_->global_context()->array_function());
235 return Handle<JSFunction>::cast(info);
428 // If the constructor is not null or a JSFunction, we have to
432 if (CanRetainOtherContext(JSFunction::cast(constructor),
441 JSFunction* function = JSFunction::cast(constructor)
    [all...]
objects-visiting.h 96 V(JSFunction) \
302 HeapObject::RawField(object, JSFunction::kPropertiesOffset),
303 HeapObject::RawField(object, JSFunction::kCodeEntryOffset));
310 JSFunction::kCodeEntryOffset + kPointerSize),
312 JSFunction::kNonWeakFieldsEndOffset));
313 return JSFunction::kSize;
435 INLINE(static bool IsFlushable(Heap* heap, JSFunction* function));
compiler.h 58 CompilationInfo(Handle<JSFunction> closure, Zone* zone);
79 Handle<JSFunction> closure() const { return closure_; }
318 bool HasSameOsrEntry(Handle<JSFunction> function, uint32_t pc_offset) {
401 Handle<JSFunction> closure_;
468 explicit CompilationInfoWithZone(Handle<JSFunction> closure)
628 static bool RecompileConcurrent(Handle<JSFunction> function,
type-info.h 275 static bool CanRetainOtherContext(JSFunction* function,
279 Handle<JSFunction> GetCallTarget(TypeFeedbackId id);
280 Handle<JSFunction> GetCallNewTarget(TypeFeedbackId id);
code.h 49 explicit ParameterCount(Handle<JSFunction> f)
execution.h 81 static Handle<Object> New(Handle<JSFunction> func,
90 static Handle<Object> TryCall(Handle<JSFunction> func,
137 static Handle<JSFunction> InstantiateFunction(
146 Handle<JSFunction> fun,
optimizing-compiler-thread.cc 145 Handle<JSFunction> function = info->closure();
304 Handle<JSFunction> function, uint32_t osr_pc_offset) {
320 bool OptimizingCompilerThread::IsQueuedForOSR(Handle<JSFunction> function,
334 bool OptimizingCompilerThread::IsQueuedForOSR(JSFunction* function) {
property.h 422 JSFunction* GetConstantFunction() {
424 return JSFunction::cast(GetValue());
432 JSFunction* GetConstantFunctionFromMap(Map* map) {
433 return JSFunction::cast(GetConstantFromMap(map));
  /external/v8/src/
runtime-profiler.cc 111 static void GetICCounts(JSFunction* function,
130 void RuntimeProfiler::Optimize(JSFunction* function, const char* reason) {
150 void RuntimeProfiler::AttemptOnStackReplacement(JSFunction* function) {
211 int RuntimeProfiler::LookupSample(JSFunction* function) {
225 void RuntimeProfiler::AddSample(JSFunction* function, int weight) {
240 JSFunction* samples[kSamplerFrameCount];
249 JSFunction* function = JSFunction::cast(frame->function());
debug.cc 767 Handle<JSFunction> function =
923 Handle<SharedFunctionInfo>(JSFunction::cast(frame->function())->shared());
    [all...]
messages.cc 146 Handle<JSFunction> fun =
147 Handle<JSFunction>(
148 JSFunction::cast(
frames.cc 234 Object* script = JSFunction::cast(frame()->function())->shared()->script();
702 JSFunction* function = JSFunction::cast(this->function());
711 JSFunction* function = JSFunction::cast(this->function());
721 void JavaScriptFrame::GetFunctions(List<JSFunction*>* functions) {
723 functions->Add(JSFunction::cast(function()));
732 JSFunction::cast(function()),
754 JSFunction* fun = JSFunction::cast(maybe_fun)
    [all...]
handles.h 53 // Ex. Handle<JSFunction> can be passed when Handle<Object> is expected.
260 void SetExpectedNofProperties(Handle<JSFunction> func, int nof);
263 void SetPrototypeProperty(Handle<JSFunction> func, Handle<JSObject> value);
271 Handle<JSFunction> constructor,
274 Handle<Object> SetPrototype(Handle<JSFunction> function,
property.h 147 JSFunction* function,
351 JSFunction* GetConstantFunction() {
353 return JSFunction::cast(GetValue());
356 JSFunction* GetConstantFunctionFromMap(Map* map) {
359 return JSFunction::cast(map->instance_descriptors()->GetValue(number_));
type-info.cc 259 JSFunction* function = NULL;
279 Handle<JSFunction> TypeFeedbackOracle::GetCallTarget(Call* expr) {
280 return Handle<JSFunction>::cast(GetInfo(expr->id()));
284 Handle<JSFunction> TypeFeedbackOracle::GetCallNewTarget(CallNew* expr) {
285 return Handle<JSFunction>::cast(GetInfo(expr->id()));
526 // If the constructor is not null or a JSFunction, we have to
530 if (CanRetainOtherContext(JSFunction::cast(constructor),
539 JSFunction* function = JSFunction::cast(constructor);
544 bool TypeFeedbackOracle::CanRetainOtherContext(JSFunction* function
    [all...]
type-info.h 269 static bool CanRetainOtherContext(JSFunction* function,
275 Handle<JSFunction> GetCallTarget(Call* expr);
276 Handle<JSFunction> GetCallNewTarget(CallNew* expr);
apiutils.h 46 internal::JSFunction* callee,
  /external/chromium_org/v8/test/cctest/
test-heap.cc 272 Handle<JSFunction> function =
295 Handle<JSFunction> function(JSFunction::cast(func_value));
621 Handle<JSFunction> function =
650 JSFunction* object_function = JSFunction::cast(raw_object);
651 Handle<JSFunction> constructor(object_function);
719 Handle<JSFunction> function =
747 Handle<JSFunction> function = Handle<JSFunction>(
    [all...]
  /external/v8/test/cctest/
test-heap.cc 211 Handle<JSFunction> function =
237 Handle<JSFunction> function(JSFunction::cast(func_value));
541 Handle<JSFunction> function =
566 JSFunction* object_function = JSFunction::cast(raw_object);
567 Handle<JSFunction> constructor(object_function);
637 Handle<JSFunction> function =
663 Handle<JSFunction> function = Handle<JSFunction>(
    [all...]
  /external/chromium_org/v8/src/ia32/
builtins-ia32.cc 96 __ mov(eax, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
165 // Verified that the constructor is a JSFunction.
168 __ mov(eax, FieldOperand(edi, JSFunction::kPrototypeOrInitialMapOffset));
176 // Check that the constructor is not constructing a JSFunction (see
187 __ mov(ecx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
369 __ mov(esi, FieldOperand(edi, JSFunction::kContextOffset));
454 __ mov(esi, FieldOperand(ecx, JSFunction::kContextOffset));
716 __ mov(esi, FieldOperand(edi, JSFunction::kContextOffset));
719 __ mov(ebx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
837 __ mov(edx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset))
    [all...]

Completed in 1065 milliseconds

12 3 4 5 6 7 8 91011