Home
last modified time | relevance | path

Searched refs:excess (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaHLSL/BuiltIns/
H A Dvector-constructors-erros.hlsl12 …float2 BrokenVec = float2(1.0, 2.0, 3.0); // expected-error{{excess elements in vector initializer…
13 …float3 NormieVec = float3(LilVec, 3.0, 4.0); // expected-error{{excess elements in vector initiali…
15 …float3 OverwhemledNormie = float3(3.0, 4.0, 5.0, 6.0); // expected-error{{excess elements in vecto…
/llvm-project-15.0.7/libc/src/__support/FPUtil/
H A DXFloat.h137 uint64_t excess = man[WordCount - 1] & excess_mask; variable
139 if (excess > one) {
142 } else if (excess == one) {
/llvm-project-15.0.7/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_trace_test.cpp258 void CheckTraceState(uptr count, uptr finished, uptr excess, uptr recycle) { in CheckTraceState() argument
263 ctx->trace_part_finished_excess, excess, in CheckTraceState()
267 CHECK_EQ(ctx->trace_part_finished_excess, excess); in CheckTraceState()
274 uptr finished, uptr excess, uptr recycle) { in TRACE_TEST() argument
276 CheckTraceState(count, finished, excess, recycle); in TRACE_TEST()
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DGCOV.cpp375 uint64_t excess = 0; in propagateCounts() local
378 excess += e->onTree() ? propagateCounts(e->src, e) : e->count; in propagateCounts()
381 excess -= e->onTree() ? propagateCounts(e->dst, e) : e->count; in propagateCounts()
382 if (int64_t(excess) < 0) in propagateCounts()
383 excess = -excess; in propagateCounts()
385 pred->count = excess; in propagateCounts()
386 return excess; in propagateCounts()
/llvm-project-15.0.7/clang/test/SemaOpenCL/
H A Dinvalid-vector-literals.cl10 int4 b = (int4)(1,2,3,4,5); // expected-error{{excess elements in vector}}
H A Dintel-subgroup-avc-ext-types.cl44 // expected-warning@-14 {{excess elements in struct initializer}}
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dmemcmp-4.ll2 ; Verify that calls to memcmp with counts in excess of the array sizes are
15 ; Fold calls with a count in excess of the size of one of the arrays that
H A Dmemchr-8.ll3 ; Verify that a constant with size in excess of 32-bit SIZE_MAX doesn't
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dllc.rst101 .. option:: --disable-excess-fp-precision
103 Disable optimizations that may produce excess precision for floating point.
H A Dlli.rst98 .. option:: -disable-excess-fp-precision
/llvm-project-15.0.7/llvm/test/tools/llvm-objdump/MachO/
H A Dunwind-info-excess-x86_64.test23 # RUN: llvm-objdump --unwind-info %p/Inputs/unwind-info-excess.macho-x86_64 2>/dev/null | FileCheck…
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Dfile-header-machine-types.test285 # RUN: yaml2obj %s -o %t.excess.o -D MACHINE=EM_EXCESS
286 # RUN: llvm-readelf --file-headers %t.excess.o | FileCheck %s -DMACHINE="eXcess 16/32/64-bit config…
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetSelectionDAG.td1633 /// Atomic load which zeroes the excess high bits.
1640 /// Atomic load which sign extends the excess high bits.
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DDiagnosticGroups.td415 def ExcessInitializers : DiagGroup<"excess-initializers">;
H A DDiagnosticSemaKinds.td5902 "excess elements in %select{array|vector|scalar|union|struct}0 initializer">;
5904 "excess elements in %select{array|vector|scalar|union|struct}0 initializer">,
5907 "excess elements in initializer for indivisible sizeless type %0">;
5909 "excess elements in initializer for indivisible sizeless type %0">,
5912 "excess elements in char array initializer">;
5914 "excess elements in char array initializer">,
/llvm-project-15.0.7/llvm/lib/Target/
H A DREADME.txt1101 leading to excess stack traffic. This could be handled by GVN with some crazy
/llvm-project-15.0.7/clang/docs/
H A DUsersManual.rst584 Warn about excess tokens at the end of a preprocessor directive.