/third_party/node/deps/v8/src/wasm/ |
D | function-compiler.h | 34 struct WasmFunction; 79 WasmFeatures* detected, const WasmFunction*,
|
D | wasm-module.h | 62 struct WasmFunction { struct 506 std::vector<WasmFunction> functions; 610 WasmName GetNameOrNull(const WasmFunction* function, 620 const WasmFunction* function) const { in GetFunctionBytes() 636 WasmFunctionName(const WasmFunction* function, WasmName name) in WasmFunctionName() 639 const WasmFunction* function_;
|
D | wasm-debug.h | 38 struct WasmFunction; 181 const wasm::WasmFunction& GetFunctionAtAddress(Address pc);
|
D | wasm-debug.cc | 154 const WasmFunction& GetFunctionAtAddress(Address pc) { in GetFunctionAtAddress() 804 const wasm::WasmFunction& DebugInfo::GetFunctionAtAddress(Address pc) { in GetFunctionAtAddress() 885 const wasm::WasmFunction& func = in FindNextBreakablePosition() 924 const wasm::WasmFunction& func = module->functions[func_index]; in SetBreakPoint() 971 const wasm::WasmFunction& func = module->functions[func_index]; in SetBreakPointForFunction() 1157 const std::vector<wasm::WasmFunction>& functions = module->functions; in GetPossibleBreakpoints() 1196 const wasm::WasmFunction& func = functions[func_idx]; in GetPossibleBreakpoints()
|
D | wasm-module.cc | 75 const std::vector<WasmFunction>& functions = module->functions; in GetWasmFunctionOffset() 83 const std::vector<WasmFunction>& functions = module->functions; in GetNearestWasmFunction() 107 const WasmFunction& func = module->functions[func_index]; in GetContainingWasmFunction() 202 WasmName ModuleWireBytes::GetNameOrNull(const WasmFunction* function, in GetNameOrNull()
|
D | module-decoder.cc | 808 WasmFunction* function = &module_->functions.back(); in DecodeImportSection() 899 WasmFunction* function = &module_->functions.back(); in DecodeFunctionSection() 984 WasmFunction* func = nullptr; in DecodeExportSection() 1067 WasmFunction* func; in DecodeStartSection() 1143 WasmFunction* function = in DecodeFunctionBody() 1540 std::unique_ptr<WasmFunction> function) { in DecodeSingleFunction() 1665 const WasmModule* module, WasmFunction* function) { in VerifyFunctionBody() 1725 uint32_t consume_func_index(WasmModule* module, WasmFunction** func, in consume_func_index() 2203 WasmFunction* func = nullptr; in consume_element_func_index() 2366 std::make_unique<WasmFunction>()); in DecodeWasmFunctionForTesting()
|
D | module-decoder.h | 38 using FunctionResult = Result<std::unique_ptr<WasmFunction>>;
|
D | function-compiler.cc | 154 const WasmFunction* function, in CompileWasmFunction()
|
D | wasm-objects.h | 35 struct WasmFunction; 208 const wasm::WasmFunction* func,
|
D | wasm-objects.cc | 44 using WasmFunction = wasm::WasmFunction; typedef 480 const wasm::WasmFunction* func, in UpdateDispatchTables() 1396 const WasmFunction& function = module->functions[function_index]; in GetOrCreateWasmInternalFunction()
|
D | module-compiler.cc | 1072 const WasmFunction* func, const WasmModule* module, in SetCompileError() 1093 const WasmFunction* func = &module->functions[func_index]; in ValidateSingleFunction() 1126 const WasmFunction* func = &module->functions[func_index]; in ValidateSequentially() 1193 const WasmFunction* func = &module->functions[func_index]; in CompileLazy() 2516 const WasmFunction* func = &module->functions[func_index]; in RunInBackground()
|
D | module-instantiate.cc | 1941 const WasmFunction* function = &module->functions[func_index]; in SetFunctionTablePlaceholder()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | Wasm.h | 149 ArrayRef<wasm::WasmFunction> functions() const { return Functions; } in functions() 225 wasm::WasmFunction &getDefinedFunction(uint32_t Index); 226 const wasm::WasmFunction &getDefinedFunction(uint32_t Index) const; 277 std::vector<wasm::WasmFunction> Functions;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | WasmObjectWriter.cpp | 117 struct WasmFunction { struct 315 void writeFunctionSection(ArrayRef<WasmFunction> Functions); 320 ArrayRef<WasmFunction> Functions); 333 updateCustomSectionRelocations(const SmallVector<WasmFunction, 4> &Functions, 743 void WasmObjectWriter::writeFunctionSection(ArrayRef<WasmFunction> Functions) { in writeFunctionSection() 751 for (const WasmFunction &Func : Functions) in writeFunctionSection() 824 ArrayRef<WasmFunction> Functions) { in writeCodeSection() 834 for (const WasmFunction &Func : Functions) { in writeCodeSection() 1112 SmallVector<WasmFunction, 4> Functions; in writeObject() 1316 WasmFunction Func; in writeObject()
|
/third_party/node/deps/v8/src/compiler/ |
D | wasm-inlining.h | 21 struct WasmFunction;
|
D | wasm-inlining.cc | 116 const wasm::WasmFunction* inlinee = &module()->functions[inlinee_index]; in ReduceCall() 167 const wasm::WasmFunction* inlinee = in Finalize()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | Wasm.h | 127 struct WasmFunction { struct
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 506 wasm::WasmFunction &Function = Functions[FuncIndex]; in parseLinkingSectionSymtab() 1108 wasm::WasmFunction &WasmObjectFile::getDefinedFunction(uint32_t Index) { in getDefinedFunction() 1113 const wasm::WasmFunction & 1147 wasm::WasmFunction& Function = Functions[i]; in parseCodeSection()
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-wasm.cc | 261 const wasm::WasmFunction& function = module->functions[function_index]; in RUNTIME_FUNCTION() 292 const wasm::WasmFunction& exp_function = module->functions[index]; in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/debug/ |
D | debug-interface.cc | 733 const i::wasm::WasmFunction& func = module->functions[function_index]; in GetFunctionRange() 759 const i::wasm::WasmFunction& func = module->functions[function_index]; in GetFunctionHash()
|