Searched refs:function_index (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/runtime/ |
D | runtime.cc | 82 int function_index = Smi::cast(smi_index)->value(); in FunctionForName() local 83 return &(kIntrinsicFunctions[function_index]); in FunctionForName()
|
/external/v8/test/cctest/wasm/ |
D | wasm-run-utils.h | 225 int function_index = module->function_table[i]; in PopulateIndirectFunctionTable() local 226 const WasmFunction* function = &module->functions[function_index]; in PopulateIndirectFunctionTable() 229 *instance->function_code[function_index]); in PopulateIndirectFunctionTable() 502 uint32_t function_index() { return function_->func_index; } in function_index() function 544 deopt_data->set(1, Smi::FromInt(static_cast<int>(function_index()))); in Compile() 562 testing_module_->SetFunctionCode(function_index(), code); 563 return function_index();
|
D | test-run-wasm.cc | 2256 WASM_CALL_FUNCTION2(t1.function_index(), WASM_GET_LOCAL(0), in WASM_EXEC_TEST() 2258 WASM_CALL_FUNCTION2(t1.function_index(), WASM_GET_LOCAL(1), in WASM_EXEC_TEST()
|
/external/v8/src/ |
D | contexts.cc | 351 int function_index = scope_info->FunctionContextSlotIndex(*name, &mode); in Lookup() local 352 if (function_index >= 0) { in Lookup() 355 function_index); in Lookup() 357 *index = function_index; in Lookup()
|
D | accessors.cc | 853 int function_index = FindFunctionInFrame(frame, function); in GetFunctionArguments() local 854 if (function_index < 0) continue; in GetFunctionArguments() 856 if (function_index > 0) { in GetFunctionArguments() 861 return ArgumentsForInlinedFunction(frame, function, function_index); in GetFunctionArguments()
|
D | isolate.cc | 438 elements->set(cursor++, Smi::FromInt(wasm_frame->function_index())); in CaptureSimpleStackTrace() 611 frame->function_index()); in NewStackFrameObject() 618 isolate_->factory()->NewNumberFromInt(frame->function_index()), NONE); in NewStackFrameObject()
|
D | frames.h | 1005 uint32_t function_index();
|
D | frames.cc | 1356 uint32_t WasmFrame::function_index() { in function_index() function in v8::internal::WasmFrame
|
/external/v8/src/ic/ |
D | handler-compiler.cc | 98 int function_index = map()->IsPrimitiveMap() in FrontendHeader() local 101 if (function_index != Map::kNoConstructorFunctionIndex) { in FrontendHeader() 102 GenerateDirectLoadGlobalFunctionPrototype(masm(), function_index, in FrontendHeader() 104 Object* function = isolate()->native_context()->get(function_index); in FrontendHeader()
|
/external/v8/src/wasm/ |
D | wasm-interpreter.cc | 894 InterpreterCode* GetCode(uint32_t function_index) { in GetCode() argument 895 CHECK_LT(function_index, interpreter_code_.size()); in GetCode() 896 return Preprocess(&interpreter_code_[function_index]); in GetCode() 1371 uint16_t function_index = module()->function_table[table_index]; in Execute() local 1372 InterpreterCode* target = codemap()->GetCode(function_index); in Execute()
|