| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | sign-conversion.m | 26 …[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 D | TypeDetail.h | 30 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 D | MLIRContext.cpp | 836 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 D | BuiltinTypes.cpp | 69 SignednessSemantics signedness) { in verify() argument 80 return getImpl()->signedness; in getSignedness()
|
| /llvm-project-15.0.7/mlir/test/mlir-tblgen/ |
| H A D | typedefs.td | 113 "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 D | 2003-01-09-SARTest.ll | 4 ; We were accidentally inverting the signedness of right shifts. Whoops.
|
| /llvm-project-15.0.7/mlir/test/lib/Dialect/Test/ |
| H A D | TestTypeDefs.td | 93 "::test::TestIntegerType::SignednessSemantics":$signedness 102 CArg<"SignednessSemantics", "Signless">:$signedness), [{ 103 return $_get($_ctxt, width, signedness); 112 Signless, /// No signedness semantics
|
| H A D | TestTypes.cpp | 193 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 D | PR16678.c | 152 #error Unexpected signedness or conversion behavior
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | misc-ps-64.m | 25 // <rdar://problem/6845148> - In this example we got a signedness
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/Generic/ |
| H A D | sugared-constants.ll | 6 ; Use correct signedness when emitting constants of derived (sugared) types.
|
| /llvm-project-15.0.7/mlir/lib/AsmParser/ |
| H A D | TypeParser.cpp | 321 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 D | OpDSL.md | 198 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 D | objc-fixed-enum.m | 4 // so the debugger knows about the signedness of the underlying type.
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | BuiltinTypes.td | 190 …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 D | vshll.ll | 57 ; 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 D | signed-char-misuse.rst | 85 different signedness. Inside the non-ASCII value range this comparison between
|
| /llvm-project-15.0.7/llvm/test/Transforms/SLPVectorizer/X86/ |
| H A D | minimum-sizes.ll | 46 ; have to include one extra bit for signedness since we will sign-extend the
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | OpaquePointers.rst | 95 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 D | arm_mve_defs.td | 172 // 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 D | DataLayout.md | 130 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 D | constant.mlir | 46 // because they all use 1 as the signedness bit. So we always treat them
|
| /llvm-project-15.0.7/clang/test/SemaOpenCL/ |
| H A D | cl20-device-side-enqueue.cl | 100 // expected-warning-re@-2{{implicit conversion changes signedness: '__private char' to 'unsigned {{…
|
| /llvm-project-15.0.7/llvm/test/Transforms/DivRemPairs/Mips/ |
| H A D | div-rem-pairs.ll | 201 ; If the ops don't match, don't do anything: signedness.
|
| /llvm-project-15.0.7/llvm/test/Transforms/DivRemPairs/X86/ |
| H A D | div-rem-pairs.ll | 192 ; If the ops don't match, don't do anything: signedness.
|