HomeSort by relevance Sort by last modified time
    Searched defs:func_index (Results 1 - 9 of 9) sorted by null

  /external/v8/src/inspector/
wasm-translation.cc 105 int func_index = GetFunctionIndexFromFakeScriptId(loc->script_id); variable
106 const OffsetTable* reverse_table = GetReverseTable(func_index);
141 script_.Get(isolate)->GetFunctionRange(func_index);
147 loc->line = func_index;
152 String16 GetFakeScriptUrl(v8::Isolate* isolate, int func_index) {
161 String16 thisCategory = String16::fromInteger((func_index / 100) * 100);
168 builder.appendNumber(func_index);
172 String16 GetFakeScriptId(const String16 script_id, int func_index) {
173 return String16::concat(script_id, '-', String16::fromInteger(func_index));
207 int func_index = fake_script_id.substring(last_dash_pos + 1).toInteger(&ok) local
213 int func_index = loc->line; local
    [all...]
  /external/v8/src/wasm/
wasm-code-specialization.cc 49 int func_index = Smi::cast(deopt_data->get(1))->value(); local
51 comp_mod->module()->functions[func_index].code_start_offset;
120 int func_index = module->num_imported_functions; local
124 func_index < num_wasm_functions; ++func_index) {
125 Code* wasm_function = Code::cast(code_table->get(func_index));
132 Code* export_wrapper = Code::cast(code_table->get(func_index));
155 func_index++;
157 DCHECK_EQ(code_table->length(), func_index);
wasm-debug.cc 80 void Execute(uint32_t func_index, uint8_t* arg_buffer) {
81 DCHECK_GE(module()->functions.size(), func_index); local
82 FunctionSig* sig = module()->functions[func_index].sig;
112 thread->PushFrame(&module()->functions[func_index], wasm_args.start());
247 return compiled_module->GetFunctionOffset(frame.function()->func_index) +
261 stack[i] = {frame.function()->func_index, frame.pc()};
391 int func_index, int offset) {
394 RedirectToInterpreter(debug_info, func_index);
395 const WasmFunction* func = &handle->module()->functions[func_index];
400 int func_index) {
    [all...]
wasm-module-builder.h 147 uint32_t func_index() { return func_index_; } function in class:v8::internal::wasm::WasmFunctionBuilder
module-decoder.cc 331 import->index, // func_index
396 uint32_t func_index = static_cast<uint32_t>(module->functions.size()); local
398 func_index, // func_index
660 uint32_t func_index = i; local
661 if (inner.ok() && func_index < module->functions.size()) {
662 module->functions[func_index].name_offset = name_offset;
663 module->functions[func_index].name_length = function_name_length;
    [all...]
wasm-module.h 75 uint32_t func_index; // index into the function table. member in struct:v8::internal::wasm::WasmFunction
384 int func_index);
wasm-objects.cc 199 int func_index, int offset_in_func) {
205 WasmFunction& func = compiled_module->module()->functions[func_index];
482 MaybeHandle<String> maybe_name, int func_index, int arity,
487 int length = SNPrintF(buffer, "%d", func_index);
505 function->SetInternalField(kIndex, Smi::FromInt(func_index));
731 int func_index = compiled_module->GetContainingFunction(position); local
732 DCHECK_LE(0, func_index);
733 WasmFunction& func = compiled_module->module()->functions[func_index];
735 WasmDebugInfo::SetBreakpoint(debug_info, func_index, offset_in_func);
857 DCHECK_GT(module()->functions.size(), func_index); local
900 int func_index = GetContainingFunction(position); local
1119 int func_index = compiled_module->GetContainingFunction(*position); local
    [all...]
wasm-module.cc 529 int func_index = 0; local
537 static_cast<int>(module_->functions.size() + func_index);
540 func_index++;
730 Handle<WasmCompiledModule> compiled_module, int func_index) {
732 if (func_index < 0 ||
733 static_cast<size_t>(func_index) > module->functions.size()) {
736 WasmFunction& func = module->functions[func_index];
812 os << "#" << name.function_->func_index;
854 int func_index = exported->function_index(); local
1804 int func_index = local
2004 uint32_t func_index = table_init.entries[i]; local
    [all...]
  /external/v8/src/
isolate.cc 1574 int func_index = elements->WasmFunctionIndex(i)->value(); local
    [all...]

Completed in 849 milliseconds