Home
last modified time | relevance | path

Searched refs:Returns (Results 1 – 25 of 174) sorted by relevance

1234567

/llvm-project-15.0.7/mlir/include/mlir/Dialect/Affine/IR/
H A DAffineMemoryOpInterfaces.td26 /*desc=*/"Returns the memref operand to read from.",
37 /*desc=*/"Returns the type of the memref operand.",
48 /*desc=*/"Returns affine map operands.",
60 Returns the affine map used to index the memref for this operation.
72 /*desc=*/"Returns the value read by this operation.",
92 /*desc=*/"Returns the memref operand to write to.",
103 /*desc=*/"Returns the type of the memref operand.",
114 /*desc=*/"Returns affine map operands.",
126 Returns the affine map used to index the memref for this operation.
138 /*desc=*/"Returns the value to store.",
[all …]
H A DAffineOps.td259 /// Returns operands for the lower bound map.
262 /// Returns operands for the upper bound map.
275 /// Returns loop step.
280 /// Returns affine map for the lower bound.
323 /// Returns true if the lower bound is constant.
327 /// Returns true if both bounds are constant.
447 /// Returns true if an else block exists.
488 /// Returns the operand index of the memref.
715 /// Returns elements of the loop lower bound.
724 /// Returns elements of the loop upper bound.
[all …]
/llvm-project-15.0.7/mlir/test/lib/Dialect/Test/
H A DTestInterfaces.td60 InterfaceMethod<"Returns the bitwidth of the type plus 'arg'.",
62 StaticInterfaceMethod<"Returns some value plus 'arg'.",
64 InterfaceMethod<"Returns the argument doubled.",
67 StaticInterfaceMethod<"Returns the argument.",
77 InterfaceMethod<"Returns the bitwidth of the given integer type.",
87 StaticInterfaceMethod<"Returns some number.", "int", "getSomeNumber">,
94 InterfaceMethod<"Returns the length of the operation name plus arg.",
97 "Returns the length of the operation name plus arg twice.", "unsigned",
100 "Returns the length of the product of the operation name and arg.",
103 StaticInterfaceMethod<"Returns the length of the operation name minus arg.",
/llvm-project-15.0.7/llvm/bindings/ocaml/target/
H A Dllvm_target.mli69 (** Returns the byte order of a target, either [Endian.Big] or
74 (** Returns the pointer size in bytes for a target.
156 (** Returns the name of a target. See [llvm::Target::getName]. *)
159 (** Returns the description of a target.
163 (** Returns [true] if the target has a JIT. *)
166 (** Returns [true] if the target has a target machine associated. *)
169 (** Returns [true] if the target has an ASM backend (required for
185 (** Returns the Target used in a TargetMachine *)
188 (** Returns the triple used while creating this target machine. See
192 (** Returns the CPU used while creating this target machine. See
[all …]
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp143 SmallVector<wasm::ValType, 1> &&Returns, in lowerTypeIndexOperand() argument
145 auto Signature = std::make_unique<wasm::WasmSignature>(std::move(Returns), in lowerTypeIndexOperand()
158 SmallVectorImpl<wasm::ValType> &Returns) { in getFunctionReturns() argument
164 valTypesFromMVTs(CallerRetTys, Returns); in getFunctionReturns()
199 SmallVector<wasm::ValType, 4> Returns; in lower() local
205 Returns.push_back( in lower()
220 getFunctionReturns(MI, Returns); in lower()
222 MCOp = lowerTypeIndexOperand(std::move(Returns), std::move(Params)); in lower()
228 SmallVector<wasm::ValType, 1> Returns; in lower() local
229 getFunctionReturns(MI, Returns); in lower()
[all …]
/llvm-project-15.0.7/clang/docs/
H A DLibFormat.rst47 /// Returns a format style complying with the LLVM coding standards:
51 /// Returns a format style complying with Google's C++ style guide:
55 /// Returns a format style complying with Chromium's style guide:
59 /// Returns a format style complying with the GNU coding standards:
63 /// Returns a format style complying with Mozilla's style guide
67 /// Returns a format style complying with Webkit's style guide:
71 /// Returns a format style complying with Microsoft's style guide:
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DUseAnyOfAllOfCheck.cpp44 auto Returns = [](bool V) { in registerMatchers() local
55 nextStmt(Returns(false).bind("final_return")), in registerMatchers()
56 hasBody(allOf(hasDescendant(Returns(true)), in registerMatchers()
65 nextStmt(Returns(true).bind("final_return")), in registerMatchers()
66 hasBody(allOf(hasDescendant(Returns(false)), in registerMatchers()
/llvm-project-15.0.7/mlir/include/mlir/Interfaces/
H A DDataLayoutInterfaces.td41 /*description=*/"Returns the key of the this layout entry.",
47 /*description=*/"Returns the value of this layout entry.",
64 /// Returns `true` if the key of this entry is a type.
98 "innermost (newest). Returns null on failure.",
104 /*description=*/"Returns the list of layout entries.",
112 /*description=*/"Returns a copy of the entries related to a specific "
245 /*description=*/"Returns the alignment preferred by the given type "
297 /*description=*/"Returns the size of this type in bytes.",
309 /*description=*/"Returns the size of this type in bits.",
316 /*description=*/"Returns the ABI-required alignment for this type, "
[all …]
H A DCallInterfaces.td36 Returns the callee of this call-like operation. A `callee` is either a
44 Returns the operands within this call that are used as arguments to the
75 Returns the region on the current operation that is callable. This may
82 Returns the results types that the callable region produces when
H A DCopyOpInterface.td26 /*desc=*/"Returns the source value for this copy operation",
31 /*desc=*/"Returns the target value for this copy operation",
H A DControlFlowInterfaces.td39 Returns the operands that correspond to the arguments of the successor
69 Returns the `BlockArgument` corresponding to operand `operandIndex` in
86 Returns the successor that would be chosen with the given constant
87 operands. Returns nullptr if a single successor could not be chosen.
135 Returns the operands of this operation used as the entry arguments when
150 Returns the viable successors of a region at `index`, or the possible
236 Returns a mutable range of operands that are semantically "returned" by
245 Returns a range of operands that are semantically "returned" by passing
H A DDerivedAttributeOpInterface.td30 /*desc=*/"Returns whether name corresponds to a derived attribute.",
37 Materializes the derived attributes. Returns null attribute where
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmTypeCheck.cpp54 ReturnTypes.assign(Sig.Returns.begin(), Sig.Returns.end()); in funcDecl()
126 if (LastSig.Returns.size() > Stack.size()) in checkEnd()
130 for (auto VT : llvm::reverse(LastSig.Returns)) { in checkEnd()
137 for (size_t i = 0; i < LastSig.Returns.size(); i++) { in checkEnd()
138 auto EVT = LastSig.Returns[i]; in checkEnd()
139 auto PVT = Stack[Stack.size() - LastSig.Returns.size() + i]; in checkEnd()
152 Stack.insert(Stack.end(), Sig.Returns.begin(), Sig.Returns.end()); in checkSig()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DBuiltinTypeInterfaces.td62 Returns a clone of this type with the given shape and element
71 Returns the element type of this shaped type.
76 Returns if this type is ranked, i.e. it has a known number of dimensions.
81 Returns the shape of this type if it is ranked, otherwise asserts.
105 /// Returns the total amount of bits occupied by a value of this type. This
147 /// Returns true if this dimension has a dynamic size (for ranked types);
154 /// Returns if this type has a static shape, i.e. if the type is ranked and
161 /// Returns if this type has a static shape and the shape is equal to
180 /// Returns the position of the dynamic dimension relative to just the dynamic
H A DSymbolInterfaces.td33 InterfaceMethod<"Returns the name of this symbol.",
55 InterfaceMethod<"Returns true if this symbol has nested visibility.",
61 InterfaceMethod<"Returns true if this symbol has private visibility.",
67 InterfaceMethod<"Returns true if this symbol has public visibility.",
132 Returns true if this operation optionally defines a symbol based on the
139 Returns true if this operation can be discarded if it has no remaining
151 Returns true if this operation is a declaration of a symbol (as opposed
H A DSubElementInterfaces.td57 /// provided map functions. Returns nullptr in the case of failure.
72 /// provided map functions. Returns nullptr in the case of failure.
81 /// provided map functions. Returns nullptr in the case of failure.
99 /// map function. Returns nullptr in the case of failure.
106 /// function. Returns nullptr in the case of failure.
/llvm-project-15.0.7/llvm/bindings/ocaml/bitwriter/
H A Dllvm_bitwriter.mli15 [path]. Returns [true] if successful, [false] otherwise. *)
22 will be flushed. Returns [true] if successful, [false] otherwise. *)
35 will be flushed. Returns [true] if successful, [false] otherwise. *)
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVControlFlowOps.td67 /// Returns the branch target block.
70 /// Returns the block arguments.
159 /// Returns the target block for the true branch.
162 /// Returns the target block for the false branch.
165 /// Returns the number of arguments to the true target block.
292 // Returns the entry block.
295 // Returns the loop header block.
298 // Returns the loop continue block.
301 // Returns the loop merge block.
453 /// Returns the selection header block.
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Shape/IR/
H A DShapeOps.td65 let summary = "Returns the broadcasted output shape of two or more inputs";
67 Returns the broadcasted shape for input shapes or extent tensors. The rest
409 let summary = "Returns the least general shape.shape of its operands";
511 let summary = "Returns the number of elements for a given shape";
582 let summary = "Returns shape of a value or shaped type operand";
626 let summary = "Returns value as a shape";
651 let summary = "Returns ValueShape with given shape";
698 let summary = "Returns the value to parent op";
1071 /// Returns the results types that the callable region produces when
1079 /// Returns the argument types of this function.
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1707 for (auto *RI : Returns) { in inlineRetainOrClaimRVCalls()
1927 SmallVector<ReturnInst*, 8> Returns; in InlineFunction() local
2308 for (ReturnInst *RI : Returns) { in InlineFunction()
2435 for (ReturnInst *RI : Returns) { in InlineFunction()
2498 ReturnInst *R = Returns[0]; in InlineFunction()
2508 Returns[0]->eraseFromParent(); in InlineFunction()
2568 if (Returns.size() > 1) { in InlineFunction()
2583 ReturnInst *RI = Returns[i]; in InlineFunction()
2593 ReturnInst *RI = Returns[i]; in InlineFunction()
2605 } else if (!Returns.empty()) { in InlineFunction()
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/GPU/IR/
H A DGPUBase.td38 /// Returns whether the given function is a kernel function, i.e., has the
42 /// Returns the number of workgroup (thread, block) dimensions supported in
47 /// Returns the numeric value used to identify the workgroup memory address
51 /// Returns the numeric value used to identify the private memory address
/llvm-project-15.0.7/llvm/unittests/Transforms/Utils/
H A DCloningTest.cpp177 SmallVector<ReturnInst*, 4> Returns; in TEST_F() local
182 Returns); in TEST_F()
201 SmallVector<ReturnInst*, 4> Returns; in TEST_F() local
206 Returns); in TEST_F()
710 SmallVector<ReturnInst *, 8> Returns; in TEST() local
713 CloneFunctionChangeType::GlobalChanges, Returns, "", &CCI); in TEST()
742 SmallVector<ReturnInst *, 8> Returns; in TEST() local
792 SmallVector<ReturnInst *, 8> Returns; in TEST() local
837 SmallVector<ReturnInst *, 8> Returns; in TEST() local
894 SmallVector<ReturnInst*, 8> Returns; in TEST() local
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/MLProgram/IR/
H A DMLProgramOps.td63 /// Returns the region on the current operation that is callable. This may
70 /// Returns the results types that the callable region produces when
78 /// Returns the argument types of this function.
81 /// Returns the result types of this function.
412 /// Returns the region on the current operation that is callable. This may
417 /// Returns the results types that the callable region produces when
425 /// Returns the argument types of this function.
428 /// Returns the result types of this function.
474 let summary = "Returns values from a `func` function";
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DWasm.h435 SmallVector<ValType, 1> Returns; member
442 : Returns(InReturns), Params(InParams) {} in WasmSignature()
448 return LHS.State == RHS.State && LHS.Returns == RHS.Returns &&
/llvm-project-15.0.7/lld/wasm/
H A DWriterUtils.cpp49 if (sig.Returns.empty()) in toString()
52 s += toString(sig.Returns[0]); in toString()
132 writeUleb128(os, sig.Returns.size(), "result Count"); in writeSig()
133 for (ValType returnType : sig.Returns) { in writeSig()

1234567