/llvm-project/mlir/lib/Dialect/Bufferization/IR/ |
H A D | BufferDeallocationOpInterface.cpp | 48 Ownership::Ownership(Value indicator) in Ownership() argument 49 : indicator(indicator), state(State::Unique) {} in Ownership() 53 unknown.indicator = Value(); in getUnknown() 57 Ownership Ownership::getUnique(Value indicator) { return Ownership(indicator); } in getUnique() argument 67 assert(isUnique() && "must have unique ownership to get the indicator"); in getIndicator() 68 return indicator; in getIndicator() 83 if (isEqualConstantIntOrValue(indicator, other.indicator)) in getCombined() [all...] |
/llvm-project/llvm/test/Instrumentation/AddressSanitizer/ |
H A D | local_alias.ll | 5 ; RUN: opt < %s -passes=asan -asan-use-private-alias=0 -asan-use-odr-indicator=0 -S | FileCheck %s --check-prefixes=CHECK-NOALIAS,CHECK-NOINDICATOR 6 ; RUN: opt < %s -passes=asan -asan-use-private-alias=1 -asan-use-odr-indicator=0 -S | FileCheck %s --check-prefixes=CHECK-ALIAS,CHECK-NOINDICATOR 7 ; RUN: opt < %s -passes=asan -asan-use-private-alias=0 -asan-use-odr-indicator=1 -S | FileCheck %s --check-prefixes=CHECK-NOALIAS,CHECK-INDICATOR 8 ; RUN: opt < %s -passes=asan -asan-use-private-alias=1 -asan-use-odr-indicator=1 -S | FileCheck %s --check-prefixes=CHECK-ALIAS,CHECK-INDICATOR 18 ; Check that we generate internal alias and odr indicator symbols for global to be protected.
|
H A D | odr-check-ignore.ll | 1 ; RUN: opt < %s -passes=asan -asan-use-odr-indicator=0 -asan-use-private-alias=0 -S | FileCheck %s --check-prefix=NOALIAS 2 ; RUN: opt < %s -passes=asan -asan-use-odr-indicator=0 -asan-use-private-alias=1 -S | FileCheck %s --check-prefix=ALIAS
|
H A D | win-string-literal.ll | 1 ; RUN: opt < %s -passes=asan -asan-use-odr-indicator=0 -asan-use-private-alias=0 -S | FileCheck %s
|
H A D | global_with_comdat.ll | 5 ; enabled as indicator symbols will cause link time odr violations. 8 ; RUN: opt < %t/a.ll -passes=asan -asan-globals-live-support=1 -asan-use-odr-indicator=0 -S | FileCheck %s --check-prefixes=CHECK,NOCOMDAT
|
/llvm-project/mlir/include/mlir/Dialect/Bufferization/IR/ |
H A D | BufferDeallocationOpInterface.h | 54 Ownership(Value indicator); 59 static Ownership getUnique(Value indicator); 89 Value indicator; variable
|
H A D | BufferDeallocationOpInterface.td | 46 to materialize an ownership indicator value for the given MemRef typed 55 ownership indicator when needed, it should be implemented using this
|
/llvm-project/llvm/test/YAMLParser/ |
H A D | spec-09-18.test | 9 - >1 # Indentation indicator 11 - |+ # Chomping indicator
|
/llvm-project/mlir/lib/Analysis/Presburger/ |
H A D | Barvinok.cpp | 333 SmallVector<int> indicator(numIneqs); in computePolytopeGeneratingFunction() local 335 indicator[i] = 1; in computePolytopeGeneratingFunction() 340 auto [subset, remainder] = poly.getInequalities().splitByBitset(indicator); in computePolytopeGeneratingFunction() 436 } while (std::next_permutation(indicator.begin(), indicator.end())); in computePolytopeGeneratingFunction()
|
H A D | Matrix.cpp | 414 /// We iterate over the `indicator` bitset, checking each bit. If a bit is 1, in splitByBitset() 418 Matrix<T>::splitByBitset(ArrayRef<int> indicator) { in splitByBitset() 421 if (indicator[i] == 1) in splitByBitset() 412 splitByBitset(ArrayRef<int> indicator) splitByBitset() argument
|
/llvm-project/llvm/test/CodeGen/M68k/ |
H A D | lit.local.cfg | 14 "--byte-indicator --hex-width=2",
|
/llvm-project/llvm/test/Object/ARM/ |
H A D | symbol-addr.ll | 7 ; indicator bit.
|
/llvm-project/libcxx/modules/std/ |
H A D | stop_token.inc | 18 // no-shared-stop-state indicator
|
H A D | optional.inc | 14 // [optional.nullopt], no-value state indicator
|
/llvm-project/libcxx/include/ |
H A D | stop_token | 22 // no-shared-stop-state indicator
|
/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_platform.h | 1002 const uptr indicator = 0x0e0000000000ull; in Apply() local 1003 const uptr ind_lsb = 1ull << LeastSignificantSetBitIndex(indicator); in Apply() 1010 if ((addr & indicator) == (p & indicator)) in Apply()
|
/llvm-project/clang-tools-extra/clangd/support/ |
H A D | Logger.cpp | 57 Logs << llvm::formatv("{0}[{1:%H:%M:%S.%L}] {2}\n", indicator(Level), in log()
|
H A D | Logger.h | 29 static char indicator(Level L) { return "DVIE"[L]; } in indicator() function
|
/llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/ |
H A D | no_threadState.ips | 35 …"termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","by…
|
H A D | a.out.ips | 35 …"termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","by…
|
/llvm-project/llvm/test/DebugInfo/X86/ |
H A D | dwarfdump-bogus-LNE.s | 79 .byte 0 # Extended opcode indicator.
|
/llvm-project/mlir/include/mlir/Analysis/Presburger/ |
H A D | Matrix.h | 208 std::pair<Matrix<T>, Matrix<T>> splitByBitset(ArrayRef<int> indicator);
|
/llvm-project/mlir/docs/ |
H A D | OwnershipBasedBufferDeallocation.md | 84 deallocates all given buffers if the respective ownership indicator is set and 234 indicator, but not for entry blocks, where the function boundary ABI 288 // the materialized ownership indicator of %select is needed, either a clone 333 // The terminator is modified to pass along the ownership indicator values 504 new ownership indicator for the retained values, but does not perform the
|
/llvm-project/mlir/test/Dialect/Bufferization/Transforms/OwnershipBasedBufferDeallocation/ |
H A D | dealloc-memoryeffect-interface.mlir | 74 // Test Case: The ownership indicator is set to false for alloca
|
/llvm-project/mlir/include/mlir/IR/ |
H A D | BuiltinTypeInterfaces.td | 75 but indicator types such as `void` or `unit` should not.
|