/external/swiftshader/third_party/llvm-7.0/llvm/utils/UpdateTestChecks/ |
D | common.py | 212 func_body = str(func_dict[checkprefix][func_name]).splitlines() 216 output_lines.append('%s %s: %s' % (comment_marker, checkprefix, func_body[0])) 217 for func_line in func_body[1:]: 223 func_body = genericize_check_lines(func_body, is_analyze) 238 for func_line in func_body:
|
/external/v8/src/wasm/ |
D | function-compiler.cc | 164 wasm::FunctionBody func_body{func->sig, func->code.offset(), code.begin(), in ExecuteFunctionCompilation() local 172 static_cast<int>(func_body.end - func_body.start)); in ExecuteFunctionCompilation() 196 func_body, func_index_, in ExecuteFunctionCompilation() 208 wasm_engine, env, func_body, func_index_, counters, detected); in ExecuteFunctionCompilation()
|
D | wasm-debug.cc | 660 FunctionBody func_body{function->sig, 0, function_bytes.begin(), in GetDebugSideTable() local 663 GenerateLiftoffDebugSideTable(allocator, &env, func_body, in GetDebugSideTable()
|
/external/llvm/utils/ |
D | update_test_checks.py | 208 func_body = func_dict[checkprefix][func_name].splitlines() 213 func_body = genericize_check_lines(func_body) 233 for func_line in func_body:
|
D | update_llc_test_checks.py | 113 func_body = func_dict[checkprefix][func_name].splitlines() 114 output_lines.append('; %s: %s' % (checkprefix, func_body[0])) 115 for func_line in func_body[1:]:
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/ |
D | update_mir_test_checks.py | 218 func_body): argument 221 func_body.pop(0) 223 if not func_body: 228 first_line = func_body[0] 236 for func_line in func_body:
|
/external/vulkan-validation-layers/scripts/ |
D | dispatch_table_helper_generator.py | 200 func_body = ' { ' + return_type + ' };' 201 decl = decl.replace (';', func_body)
|
/external/v8/src/wasm/baseline/ |
D | liftoff-compiler.cc | 4112 const FunctionBody& func_body, int func_index, ForDebugging for_debugging, in ExecuteLiftoffCompilation() argument 4115 int func_body_size = static_cast<int>(func_body.end - func_body.start); in ExecuteLiftoffCompilation() 4121 auto call_descriptor = compiler::GetWasmCallDescriptor(&zone, func_body.sig); in ExecuteLiftoffCompilation() 4135 &zone, env->module, env->enabled_features, detected, func_body, in ExecuteLiftoffCompilation() 4182 const FunctionBody& func_body, int func_index) { in GenerateLiftoffDebugSideTable() argument 4184 auto call_descriptor = compiler::GetWasmCallDescriptor(&zone, func_body.sig); in GenerateLiftoffDebugSideTable() 4188 &zone, env->module, env->enabled_features, &detected, func_body, in GenerateLiftoffDebugSideTable()
|
/external/tensorflow/tensorflow/core/framework/ |
D | function.cc | 1647 const auto& func_body = func->node_def(); in ReachableFunctions() local 1648 std::for_each(func_body.begin(), func_body.end(), process_node); in ReachableFunctions()
|
/external/v8/src/compiler/ |
D | wasm-compiler.cc | 7742 const wasm::FunctionBody& func_body, in BuildGraphForWasmFunction() argument 7748 WasmGraphBuilder builder(env, mcgraph->zone(), mcgraph, func_body.sig, in BuildGraphForWasmFunction() 7752 &builder, detected, func_body, node_origins); in BuildGraphForWasmFunction() 7764 auto sig = CreateMachineSignature(mcgraph->zone(), func_body.sig, in BuildGraphForWasmFunction() 7808 PrintRawWasmCode(allocator, func_body, env->module, wasm::kPrintLocals); in BuildGraphForWasmFunction() 7830 const wasm::FunctionBody& func_body, int func_index, Counters* counters, in ExecuteTurbofanWasmCompilation() argument 7834 func_body.end - func_body.start); in ExecuteTurbofanWasmCompilation() 7859 if (!BuildGraphForWasmFunction(wasm_engine->allocator(), env, func_body, in ExecuteTurbofanWasmCompilation() 7870 auto call_descriptor = GetWasmCallDescriptor(&zone, func_body.sig); in ExecuteTurbofanWasmCompilation() 7875 if (ContainsSimd(func_body.sig) && in ExecuteTurbofanWasmCompilation() [all …]
|