HomeSort by relevance Sort by last modified time
    Searched refs:function_index (Results 1 - 10 of 10) sorted by null

  /external/v8/src/
contexts.cc 333 int function_index = scope_info->FunctionContextSlotIndex(*name); local
334 if (function_index >= 0) {
337 function_index);
339 *index = function_index;
accessors.cc 869 int function_index = FindFunctionInFrame(frame, function); local
870 if (function_index < 0) continue;
872 if (function_index > 0) {
877 return ArgumentsForInlinedFunction(frame, function, function_index);
    [all...]
frames.h     [all...]
frames.cc 1512 uint32_t WasmFrame::function_index() const { function in class:v8::internal::WasmFrame
    [all...]
isolate.cc 515 const int wasm_function_index = wasm_frame->function_index();
706 frame->function_index());
713 isolate_->factory()->NewNumberFromInt(frame->function_index() + 1),
    [all...]
  /external/v8/src/wasm/
wasm-objects.h 134 int function_index();
wasm-objects.cc 265 int WasmExportedFunction::function_index() { function in class:WasmExportedFunction
wasm-interpreter.cc 914 InterpreterCode* GetCode(uint32_t function_index) {
915 CHECK_LT(function_index, interpreter_code_.size());
916 return Preprocess(&interpreter_code_[function_index]);
    [all...]
wasm-module.cc     [all...]
  /external/v8/src/runtime/
runtime-debug.cc 555 int func_index = it.wasm_frame()->function_index();
    [all...]

Completed in 250 milliseconds