Home
last modified time | relevance | path

Searched refs:compatible (Results 1 – 25 of 258) sorted by relevance

1234567891011

/llvm-project-15.0.7/libcxx/test/std/experimental/simd/simd.traits/
H A Dis_abi_tag.pass.cpp37 static_assert(ex::is_abi_tag<ex::simd_abi::compatible<int8_t>>::value, "");
45 static_assert(ex::is_abi_tag<ex::simd_abi::compatible<float>>::value, "");
80 static_assert(ex::is_abi_tag_v<ex::simd_abi::compatible<int8_t>>, "");
81 static_assert(ex::is_abi_tag_v<ex::simd_abi::compatible<int16_t>>, "");
82 static_assert(ex::is_abi_tag_v<ex::simd_abi::compatible<int32_t>>, "");
83 static_assert(ex::is_abi_tag_v<ex::simd_abi::compatible<int64_t>>, "");
84 static_assert(ex::is_abi_tag_v<ex::simd_abi::compatible<uint8_t>>, "");
85 static_assert(ex::is_abi_tag_v<ex::simd_abi::compatible<uint16_t>>, "");
86 static_assert(ex::is_abi_tag_v<ex::simd_abi::compatible<uint32_t>>, "");
88 static_assert(ex::is_abi_tag_v<ex::simd_abi::compatible<float>>, "");
[all …]
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dparameterized_classes_collection_literal.m39 …@1, // expected-warning{{of type 'NSNumber *' is not compatible with array element type 'NSString …
41 …@[@1, @2]]; // expected-warning{{of type 'NSArray *' is not compatible with array element type 'NS…
44 …@"blah", // expected-warning{{object of type 'NSString *' is not compatible with array element typ…
45 …@[@1]]; // expected-warning{{object of type 'NSNumber *' is not compatible with array element type…
51 …@18 : @18, // expected-warning{{object of type 'NSNumber *' is not compatible with dictionary key …
52 …@"world" : @"blah" // expected-warning{{object of type 'NSString *' is not compatible with diction…
H A Dblock-id-as-block-argtype.m22 fn(b2); // must succeed: block1_t *is* compatible with id
23 fn(b3); // succeeds: NSObject* compatible with id
24 fn(b4); // succeeds: id compatible with id
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dllvm-lib.rst1 llvm-lib - LLVM lib.exe compatible library tool
15 The **llvm-lib** command is intended to be a ``lib.exe`` compatible
28 members. These files are much smaller, but are not compatible with
H A Dllvm-otool.rst16 It attempts to be command-line-compatible and output-compatible with macOS's
/llvm-project-15.0.7/llvm/test/MC/AArch64/
H A Darm64-fp-encoding-error.s4 ; CHECK: error: expected compatible register or floating-point constant
7 ; CHECK: error: expected compatible register or floating-point constant
/llvm-project-15.0.7/polly/lib/External/isl/
H A Disl_tab_lexopt_templ.c204 isl_bool compatible; in SF() local
212 compatible = isl_basic_map_compatible_domain(bmap, dom); in SF()
213 if (compatible < 0) in SF()
215 if (!compatible) in SF()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Bufferization/IR/
H A DAllocationOpInterface.td27 construct associated deallocation and clone operations that are compatible
37 operation implementing this interface. If there is no compatible
48 implementing this interface. If there is no compatible clone operation,
/llvm-project-15.0.7/clang/test/Modules/
H A Dmerge-extension-ivars.m4 …%clang_cc1 -emit-llvm -o %t/test-compatible-extensions.ll -fobjc-runtime=macosx-10.9 -F%t/Framewor…
6 // RUN: FileCheck --input-file=%t/test-compatible-extensions.ll %t/test-compatible-extensions.m
59 //--- test-compatible-extensions.m
/llvm-project-15.0.7/mlir/test/Dialect/
H A Dtraits.mlir71 // expected-error @+1 {{operands don't have broadcast-compatible shapes}}
81 …// expected-error @+1 {{op result type '4x3x3' not broadcast compatible with broadcasted operands'…
91 …// expected-error @+1 {{op result type '8x7x6x1' not broadcast compatible with broadcasted operand…
130 // Unranked operand and compatible ranked result
141 …// expected-error @+1 {{op result type '2' not broadcast compatible with broadcasted operands's sh…
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dexplicit-section-mergeable.ll37 ;; sections with the same name and a compatible entry size.
45 ;; Assign a compatible mergeable global to the previous section.
54 ;; Assign a compatible mergeable global to the previous section.
63 ;; Assign a compatible mergeable global to the previous section.
86 ;; Assign compatible globals to the previously created sections.
101 ;; Assign a compatible global to a "default" mergeable section.
213 ;; Assign a compatible global to an existing mergeable section created implicitly.
228 ;; Assign compatible globals to the previously created sections.
236 ;; Implicitly assign a compatible global to an existing mergeable section created explicitly.
264 ;; Assign compatible symbols to sections created using inline asm.
[all …]
/llvm-project-15.0.7/llvm/test/Transforms/Inline/X86/
H A Dinline-target-attr.ll3 ; Check that we only inline when we have compatible target attributes.
5 ; sets are compatible.
/llvm-project-15.0.7/llvm/docs/
H A DTypeMetadata.rst76 this way, the vtable in B's virtual table object is compatible with A's vtable.
79 virtual table object contains two vtables, one compatible with A's vtable and
80 the other compatible with C's vtable. Objects of type D contain two virtual
82 the vtable compatible with A's vtable, and the other belonging to the C
83 subobject and containing the address of the vtable compatible with C's vtable.
88 with which that address point is compatible.
102 this is done is to create type metadata named after each of the compatible
103 classes, with which we associate each of the compatible address points in
121 test whether a given pointer is compatible with a type identifier. Working
/llvm-project-15.0.7/clang/docs/
H A DMSVCCompatibility.rst17 When Clang compiles C++ code for Windows, it attempts to be compatible with
20 First, Clang attempts to be ABI-compatible, meaning that Clang-compiled code
39 be compatible with MSVC's cl.exe.
65 fully implemented and should be ABI compatible. Both `#pragma
104 We are ABI compatible with both the MSVC 2013 and 2015 ABI for static local
107 * Lambdas: :good:`Mostly complete`. Clang is compatible with Microsoft's
/llvm-project-15.0.7/llvm/test/Transforms/Inline/ARM/
H A Dinline-target-attr.ll3 ; Check that we only inline when we have compatible target attributes.
5 ; sets are compatible.
/llvm-project-15.0.7/mlir/test/Dialect/DLTI/
H A Droundtrip.mlir39 // Should not fail on nested compatible layouts.
45 // Should not fail on deeper nested compatible layouts.
/llvm-project-15.0.7/lld/test/COFF/
H A Darm64-dynamicbase.s8 # CHECK: dynamicbase:no is not compatible with arm64
H A Darmnt-dynamicbase.test3 # CHECK: dynamicbase:no is not compatible with arm
/llvm-project-15.0.7/mlir/docs/Dialects/
H A DLLVM.md25 thread-safe alternatives compatible with the rest of the infrastructure. The
214 dialect-compatible types_. The following types are compatible:
223 compatible. For example, signed and unsigned integers are not compatible. LLVM
228 LLVM dialect type. For example, because `i32` is LLVM-compatible, there is no
254 the element type, which can be either compatible built-in or LLVM dialect types.
347 compatible with the LLVM dialect:
350 vector type compatible with the LLVM dialect;
352 vector type compatible with the LLVM dialect;
354 of elements in any vector type compatible with the LLVM dialect;
414 type-or-ref ::= <any compatible type with optional !llvm.>
/llvm-project-15.0.7/llvm/test/MC/ARM/Windows/
H A Dinvalid-relocation.s1 # RUN: not --crash llvm-mc -triple thumbv7-windows -incremental-linker-compatible -filetype obj -o …
/llvm-project-15.0.7/llvm/cmake/modules/
H A DDetermineGCCCompatible.cmake1 # Determine if the compiler has GCC-compatible command-line syntax.
H A DLLVMConfigVersion.cmake.in3 # LLVM is API-compatible only with matching major.minor versions
/llvm-project-15.0.7/llvm/test/CodeGen/Mips/mips32r6/
H A Dcompatibility.ll5 ; DSP: MIPS32r6 is not compatible with the DSP ASE
/llvm-project-15.0.7/llvm/test/CodeGen/Mips/mips64r6/
H A Dcompatibility.ll5 ; DSP: MIPS64r6 is not compatible with the DSP ASE
/llvm-project-15.0.7/mlir/include/mlir/Dialect/LLVMIR/
H A DLLVMOpBase.td66 /// Returns `true` if the given type is compatible with the LLVM dialect.
70 /// A cache storing compatible LLVM types that have been verified. This
86 "LLVM dialect-compatible type">;
162 "LLVM-compatible non-aggregate type">;
166 "LLVM dialect-compatible vector type">;
171 "LLVM dialect-compatible fixed-length vector type">;
176 "LLVM dialect-compatible scalable vector type">;
186 "LLVM dialect-compatible vector of " # element.summary>;

1234567891011