| /llvm-project-15.0.7/mlir/test/Dialect/LLVMIR/ |
| H A D | func.mlir | 7 // GENERIC: function_type = !llvm.func<void ()> 12 }) {sym_name = "foo", function_type = !llvm.func<void ()>} : () -> () 15 // GENERIC: function_type = !llvm.func<i64 (i64, i64)> 20 }) {sym_name = "bar", function_type = !llvm.func<i64 (i64, i64)>} : () -> () 30 // GENERIC: function_type = !llvm.func<i64 (i64)> 33 }) {sym_name = "baz", function_type = !llvm.func<i64 (i64)>} : () -> () 38 }) {sym_name = "qux", function_type = !llvm.func<void (ptr<i64>, i64)>, 179 // expected-error@+1 {{requires attribute 'function_type'}} 187 "llvm.func"() ({}) {sym_name = "non_llvm_type", function_type = i64} : () -> () 194 "llvm.func"() ({}) {sym_name = "non_function_type", function_type = i64} : () -> () [all …]
|
| /llvm-project-15.0.7/mlir/python/mlir/dialects/ |
| H A D | _func_ops_ext.py | 179 function_type = FunctionType.get( 181 func_op = FuncOp(name=symbol_name, type=function_type) 213 function_type = FunctionType.get(inputs=inputs, results=return_types) 214 func_op.attributes["function_type"] = TypeAttr.get(function_type)
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBFunction.cpp | 197 Type *function_type = m_opaque_ptr->GetType(); in GetType() local 198 if (function_type) in GetType() 199 sb_type.ref().SetType(function_type->shared_from_this()); in GetType()
|
| /llvm-project-15.0.7/lldb/examples/functions/ |
| H A D | main.cpp | 248 SBType function_type = function.GetType(); in main() local 249 SBType return_type = function_type.GetFunctionReturnType(); in main() 260 function_type.GetFunctionArgumentTypes(); in main()
|
| /llvm-project-15.0.7/llvm/test/Bindings/OCaml/ |
| H A D | executionengine.ml | 31 let fty = function_type i32_type [||] in 39 let fn = define_function "plus" (function_type i32_type [| i32_type; 65 (* let g = declare_function "g" (function_type i32_type [||]) m2 in
|
| H A D | core.ml | 580 let ty = function_type i32_type [| i32_type; i32_type |] in 607 let ty = function_type i32_type [| i32_type; i32_type |] in 641 let ty = function_type i32_type [| i32_type; i64_type |] in 642 let ty2 = function_type i8_type [| i8_type; i64_type |] in 776 let ty = function_type void_type [| |] in 884 let fty = function_type void_type [| i32_type |] in 911 let fty = function_type void_type [| i32_type |] in 929 let fty = function_type void_type [| |] in 940 let fty = function_type sty [| |] in 948 let fty = function_type i32_type [| i32_type; i32_type |] in [all …]
|
| H A D | vectorize.ml | 40 let fty = function_type void_type [| |] in
|
| H A D | linker.ml | 35 let fty = function_type void_type [| |] in
|
| H A D | analysis.ml | 24 let fty = function_type (void_type context) [| |] in
|
| H A D | scalar_opts.ml | 40 let fty = function_type void_type [| |] in
|
| H A D | ipo.ml | 41 let fty = function_type i8_type [| |] in
|
| /llvm-project-15.0.7/mlir/test/IR/ |
| H A D | invalid-func-op.mlir | 94 // expected-error@+1 {{'function_type' is an inferred attribute and should not be specified in the … 95 func.func private @invalid_symbol_type_attr() attributes { function_type = "x" }
|
| /llvm-project-15.0.7/lldb/unittests/Symbol/ |
| H A D | TestTypeSystemClang.cpp | 819 CompilerType function_type = in TEST_F() local 829 t.GetOpaqueQualType(), class_name, nullptr, function_type, in TEST_F() 863 CompilerType function_type = in TEST_F() local 867 t.GetOpaqueQualType(), class_name, nullptr, function_type, in TEST_F() 874 CompilerType function_type = in TEST_F() local 878 t.GetOpaqueQualType(), class_name, nullptr, function_type, in TEST_F()
|
| /llvm-project-15.0.7/mlir/test/mlir-lsp-server/ |
| H A D | hover.test | 117 …\" : public @foo\n\nGeneric Form:\n\n```mlir\n\"func.func\"() ({\n}) {function_type = (i1) -> (), … 141 …\" : public @foo\n\nGeneric Form:\n\n```mlir\n\"func.func\"() ({\n}) {function_type = (i1) -> (), …
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | Function.cpp | 522 Type *function_type = GetType(); in GetCompilerType() local 523 if (function_type) in GetCompilerType() 524 return function_type->GetFullCompilerType(); in GetCompilerType()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.cpp | 1824 Type *function_type = function->GetType(); in AddOneFunction() local 1890 if (!function_type) { in AddOneFunction() 1895 function_clang_type = function_type->GetFullCompilerType(); in AddOneFunction() 1910 function_type->GetName(), function_type->GetID()); in AddOneFunction() 1919 function_type->GetName(), function_type->GetID()); in AddOneFunction()
|
| /llvm-project-15.0.7/llvm/utils/unittest/googlemock/include/gmock/ |
| H A D | gmock-generated-actions.h | 667 typedef F function_type;\ 728 typedef F function_type;\ 777 typedef F function_type;\ 832 typedef F function_type;\ 892 typedef F function_type;\ 959 typedef F function_type;\ 1034 typedef F function_type;\ 1114 typedef F function_type;\ 1200 typedef F function_type;\ 1294 typedef F function_type;\ [all …]
|
| /llvm-project-15.0.7/mlir/test/Dialect/GPU/ |
| H A D | invalid.mlir | 334 …// expected-error @+1 {{attribute 'function_type' failed to satisfy constraint: type attribute of … 337 }) {sym_name="kernel_1", function_type=f32} : () -> () 418 …} ) {function_type = (f32, memref<?xf32>) -> (), gpu.kernel, sym_name = "kernel_1", workgroup_attr…
|
| H A D | ops.mlir | 195 …} ) {function_type = (f32, memref<?xf32>) -> (), gpu.kernel, sym_name = "kernel_1", workgroup_attr…
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/MLProgram/IR/ |
| H A D | MLProgramOps.td | 54 TypeAttrOf<FunctionType>:$function_type, 403 TypeAttrOf<FunctionType>:$function_type,
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | StackFrame.cpp | 1584 CompilerType function_type = sc.function->GetCompilerType(); in DoGuessValueAt() local 1585 if (!function_type.IsFunctionType()) { in DoGuessValueAt() 1588 CompilerType return_type = function_type.GetFunctionReturnType(); in DoGuessValueAt()
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/ |
| H A D | SPIRVStructureOps.td | 290 TypeAttrOf<FunctionType>:$function_type, 313 FunctionType getFunctionType() { return function_type(); }
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch3/include/toy/ |
| H A D | Ops.td | 137 TypeAttrOf<FunctionType>:$function_type
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch2/include/toy/ |
| H A D | Ops.td | 138 TypeAttrOf<FunctionType>:$function_type
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/Func/IR/ |
| H A D | FuncOps.td | 254 TypeAttrOf<FunctionType>:$function_type,
|