Home
last modified time | relevance | path

Searched refs:signedness (Results 1 – 25 of 45) sorted by relevance

12

/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dsign-conversion.m26 …[x setUint:sint]; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInte…
27 …x.uint = sint; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger'…
35 (void)((NSObject*)array[si]).hash; // expected-warning {{implicit conversion changes signedness: 'i…
37 (void)[((NSObject*)array[si]) hash]; // expected-warning {{implicit conversion changes signedness: …
38 (void)array[si]; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger…
/llvm-project-15.0.7/mlir/lib/IR/
H A DTypeDetail.h30 IntegerType::SignednessSemantics signedness) in IntegerTypeStorage()
31 : width(width), signedness(signedness) {} in IntegerTypeStorage()
41 return KeyTy(width, signedness) == key;
51 IntegerType::SignednessSemantics signedness : 2; member
H A DMLIRContext.cpp836 IntegerType::SignednessSemantics signedness, in getCachedIntegerType() argument
838 if (signedness != IntegerType::Signless) in getCachedIntegerType()
860 IntegerType::SignednessSemantics signedness) { in get() argument
861 if (auto cached = getCachedIntegerType(width, signedness, context)) in get()
863 return Base::get(context, width, signedness); in get()
869 SignednessSemantics signedness) { in getChecked() argument
870 if (auto cached = getCachedIntegerType(width, signedness, context)) in getChecked()
872 return Base::getChecked(emitError, context, width, signedness); in getChecked()
H A DBuiltinTypes.cpp69 SignednessSemantics signedness) { in verify() argument
80 return getImpl()->signedness; in getSignedness()
/llvm-project-15.0.7/mlir/test/mlir-tblgen/
H A Dtypedefs.td113 "SignednessSemantics":$signedness,
122 Signless, /// No signedness semantics
127 /// This extra function is necessary since it doesn't include signedness
140 // DECL-NEXT: Signless, /// No signedness semantics
144 // DECL: /// This extra function is necessary since it doesn't include signedness
/llvm-project-15.0.7/llvm/test/ExecutionEngine/MCJIT/
H A D2003-01-09-SARTest.ll4 ; We were accidentally inverting the signedness of right shifts. Whoops.
/llvm-project-15.0.7/mlir/test/lib/Dialect/Test/
H A DTestTypeDefs.td93 "::test::TestIntegerType::SignednessSemantics":$signedness
102 CArg<"SignednessSemantics", "Signless">:$signedness), [{
103 return $_get($_ctxt, width, signedness);
112 Signless, /// No signedness semantics
H A DTestTypes.cpp193 SignednessSemantics signedness; in parse() local
195 if (parser.parseLess() || parseSignedness(parser, signedness) || in parse()
200 return getChecked(loc, loc.getContext(), width, signedness); in parse()
/llvm-project-15.0.7/clang/test/Sema/
H A DPR16678.c152 #error Unexpected signedness or conversion behavior
/llvm-project-15.0.7/clang/test/Analysis/
H A Dmisc-ps-64.m25 // <rdar://problem/6845148> - In this example we got a signedness
/llvm-project-15.0.7/llvm/test/DebugInfo/Generic/
H A Dsugared-constants.ll6 ; Use correct signedness when emitting constants of derived (sugared) types.
/llvm-project-15.0.7/mlir/lib/AsmParser/
H A DTypeParser.cpp321 if (Optional<bool> signedness = getToken().getIntTypeSignedness()) in parseNonFunctionType() local
322 signSemantics = *signedness ? IntegerType::Signed : IntegerType::Unsigned; in parseNonFunctionType()
/llvm-project-15.0.7/mlir/docs/Dialects/Linalg/
H A DOpDSL.md198 As the integer types are signless, signedness is implement by different
211 As the integer types are signless, signedness is implement by different
219 As the integer types are signless, signedness is implement by different
283 integer types themselves are signless and signedness is implemented by
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dobjc-fixed-enum.m4 // so the debugger knows about the signedness of the underlying type.
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DBuiltinTypes.td190 …machine word of the target ( [rationale](../../Rationale/Rationale/#integer-signedness-semantics) )
224 Integer types have a designated bit width and may optionally have signedness
232 let parameters = (ins "unsigned":$width, "SignednessSemantics":$signedness);
235 CArg<"SignednessSemantics", "Signless">:$signedness)>
246 Signless, /// No signedness semantics
258 /// Get or create a new IntegerType with the same signedness as `this` and a
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dvshll.ll57 ; The following tests use the maximum shift count, so the signedness is
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dsigned-char-misuse.rst85 different signedness. Inside the non-ASCII value range this comparison between
/llvm-project-15.0.7/llvm/test/Transforms/SLPVectorizer/X86/
H A Dminimum-sizes.ll46 ; have to include one extra bit for signedness since we will sign-extend the
/llvm-project-15.0.7/llvm/docs/
H A DOpaquePointers.rst95 An analogous transition that happened earlier in LLVM is integer signedness.
100 manifesting signedness in types to instructions happened early on in LLVM's
/llvm-project-15.0.7/clang/include/clang/Basic/
H A Darm_mve_defs.td172 // signedness, you set this bit, and then you can still put the signed and
343 // Expands to the 32-bit integer of the same signedness as Scalar.
345 // Expands to the 64-bit integer of the same signedness as Scalar.
/llvm-project-15.0.7/mlir/docs/
H A DDataLayout.md130 example, `IntegerType{signedness=signless, bitwidth=8}` (or `i8` in the IR) or
131 `IntegerType{signedness=unsigned, bitwidth=32}` (or `ui32` in the IR). When
/llvm-project-15.0.7/mlir/test/Target/SPIRV/
H A Dconstant.mlir46 // because they all use 1 as the signedness bit. So we always treat them
/llvm-project-15.0.7/clang/test/SemaOpenCL/
H A Dcl20-device-side-enqueue.cl100 // expected-warning-re@-2{{implicit conversion changes signedness: '__private char' to 'unsigned {{…
/llvm-project-15.0.7/llvm/test/Transforms/DivRemPairs/Mips/
H A Ddiv-rem-pairs.ll201 ; If the ops don't match, don't do anything: signedness.
/llvm-project-15.0.7/llvm/test/Transforms/DivRemPairs/X86/
H A Ddiv-rem-pairs.ll192 ; If the ops don't match, don't do anything: signedness.

12