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

  /external/v8/src/inspector/
wasm-translation.cc 165 int func_index = GetFunctionIndexFromFakeScriptId(loc->script_id); variable
166 const OffsetTable& reverse_table = GetReverseTable(isolate, func_index);
178 script_.Get(isolate)->GetFunctionRange(func_index);
190 loc->line = func_index;
220 String16 GetFakeScriptUrl(v8::Isolate* isolate, int func_index) {
230 String16 thisCategory = String16::fromInteger((func_index / 100) * 100);
237 builder.appendNumber(func_index);
241 String16 GetFakeScriptId(const String16 script_id, int func_index) {
242 return String16::concat(script_id, '-', String16::fromInteger(func_index));
267 int func_index = fake_script_id.substring(last_dash_pos + 1).toInteger(&ok) local
273 int func_index = loc->line; local
    [all...]
  /external/v8/src/runtime/
runtime-test.cc 1016 int func_index = frame->function_index(); local
1051 uint32_t func_index = exp_fun->function_index(); local
    [all...]
  /external/v8/src/wasm/
wasm-module-builder.h 190 uint32_t func_index() { return func_index_; } function in class:v8::internal::wasm::WasmFunctionBuilder
wasm-module.h 30 uint32_t func_index; // index into the function table. member in struct:v8::internal::wasm::WasmFunction
wasm-debug.cc 69 int func_index, int local_index) {
70 DCHECK_LE(0, func_index);
80 if (func_index >= locals_names->length() ||
81 locals_names->get(func_index)->IsUndefined(isolate)) {
86 FixedArray::cast(locals_names->get(func_index)), isolate);
169 Address frame_pointer, uint32_t func_index, Address arg_buffer) {
170 DCHECK_GE(module()->functions.size(), func_index); local
171 FunctionSig* sig = module()->functions[func_index].sig;
199 thread->InitFrame(&module()->functions[func_index], wasm_args.start());
347 return module_object->GetFunctionOffset(frame->function()->func_index)
    [all...]
module-decoder.cc 465 import->index, // func_index
543 uint32_t func_index = static_cast<uint32_t>(module_->functions.size()); local
545 func_index, // func_index
736 DCHECK_EQ(index, func->func_index);
1688 uint32_t func_index = decoder.consume_u32v("function index"); local
    [all...]
wasm-objects.cc 150 bool IsBreakablePosition(wasm::NativeModule* native_module, int func_index,
156 const WasmFunction& func = native_module->module()->functions[func_index];
246 int func_index = module_object->GetContainingFunction(*position); local
247 if (func_index < 0) return false;
248 const WasmFunction& func = module_object->module()->functions[func_index];
253 DCHECK(IsBreakablePosition(module_object->native_module(), func_index,
271 WasmDebugInfo::SetBreakpoint(debug_info, func_index, offset_in_func);
390 int func_index = module_object->GetContainingFunction(position); local
391 DCHECK_LE(0, func_index);
392 const WasmFunction& func = module_object->module()->functions[func_index];
689 DCHECK_GT(module()->functions.size(), func_index); local
731 int func_index = GetContainingFunction(position); local
827 int func_index = exported_function->function_index(); local
    [all...]
module-compiler.cc 185 uint32_t func_index,
188 const WasmFunction* func = &module->functions[func_index];
189 bool is_import = func_index < module->num_imported_functions;
344 int func_index) {
346 DCHECK(!native_module->has_code(static_cast<uint32_t>(func_index)));
357 module_env->module->LookupFunctionName(wire_bytes, func_index);
362 func_name.start(), func_index);
366 const WasmFunction* func = &module_env->module->functions[func_index];
373 body, func_name, func_index, isolate->counters());
402 uint32_t func_index) {
1490 uint32_t func_index = import.index; local
2062 uint32_t func_index = table_init.entries[i]; local
    [all...]
wasm-interpreter.cc 966 InterpreterCode* code = GetCode(function->func_index);
2829 uint32_t func_index = local
    [all...]
  /external/v8/src/
frames.cc 1777 int func_index = function_index(); local
    [all...]
isolate.cc 1739 uint32_t func_index = local
    [all...]

Completed in 452 milliseconds