| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | synchronization03.f90 | 15 sync memory 16 sync memory(stat=sync_status) 25 sync memory(status=sync_status) 29 sync memory(stat=invalid_type) 33 sync memory(stat=non_scalar) 37 sync memory(stat) 41 sync memory(sync_status) 47 sync memory(errormsg=error_message) 50 sync memory(errmsg=invalid_type) 54 sync memory(error_message) [all …]
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
| H A D | ANSI.py | 38 screen = fsm.memory[0] 47 ns = fsm.memory.pop() 49 fsm.memory.append (ns) 53 screen = fsm.memory[0] 59 screen = fsm.memory[0] 64 screen = fsm.memory[0] 70 screen = fsm.memory[0] 75 screen = fsm.memory[0] 81 screen = fsm.memory[0] 86 screen = fsm.memory[0] [all …]
|
| H A D | FSM.py | 120 self.memory = memory 281 s = fsm.memory.pop () 283 fsm.memory.append (s) 286 s = fsm.memory.pop () 287 fsm.memory.append (int(s)) 290 ar = fsm.memory.pop() 291 al = fsm.memory.pop() 293 fsm.memory.append (al + ar) 295 fsm.memory.append (al - ar) 297 fsm.memory.append (al * ar) [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/Minidump/ |
| H A D | memory-region-from-module.yaml | 8 # RUN: %lldb -b -c %t1.dmp %T/memory-region-from-module.exe \ 9 # RUN: -o "memory region 0" -o "memory region 0x4000" \ 10 # RUN: -o "memory region 0x5000" -o "memory region 0x6000" \ 14 # RUN: -o "memory region 0" -o "memory region 0x4000" \ 15 # RUN: -o "memory region 0x5000" -o "memory region 0x6000" \ 18 # ALL-LABEL: (lldb) memory region 0 20 # ALL-LABEL: (lldb) memory region 0x4000 23 # ALL-LABEL: (lldb) memory region 0x5000 25 # ALL-LABEL: (lldb) memory region 0x6000 46 Name: memory-region-from-module.exe [all …]
|
| H A D | memory-region.yaml | 1 # Check that memory region parsing works correctly, with a particular emphasis 6 # RUN: -o "memory region 0" -o "memory region 0xd9000" \ 7 # RUN: -o "memory region 0xd9001" -o "memory region 0xdafff" \ 8 # RUN: -o "memory region 0xdb000" -o "memory region 0xdd000" | FileCheck %s 10 # CHECK-LABEL: (lldb) memory region 0 12 # CHECK-LABEL: (lldb) memory region 0xd9000 14 # CHECK-LABEL: (lldb) memory region 0xd9001 16 # CHECK-LABEL: (lldb) memory region 0xdafff 18 # CHECK-LABEL: (lldb) memory region 0xdb000 20 # CHECK-LABEL: (lldb) memory region 0xdd000
|
| /llvm-project-15.0.7/lld/test/wasm/ |
| H A D | import-memory.test | 2 # RUN: wasm-ld --import-memory -o %t.wasm %t.start.o 5 # Verify the --import-memory flag creates a memory import 10 # CHECK-NEXT: Field: memory 18 # RUN: wasm-ld --import-memory --initial-memory=262144 \ 19 # RUN: --max-memory=327680 -o %t.max.wasm %t.start.o 22 # Verify the --initial-memory and --max-memory arguments work with imports 27 # CHECK-MAX-NEXT: Field: memory 35 # RUN: wasm-ld --import-memory --shared-memory --features=atomics,bulk-memory \ 36 # RUN: --initial-memory=262144 --max-memory=327680 -o %t.max.wasm %t.start.o 39 # Verify the --shared-memory flag works with imports [all …]
|
| H A D | shared-memory.yaml | 3 # RUN: wasm-ld --no-entry --shared-memory --features=atomics,bulk-memory %t1.o -o - | obj2yaml | Fi… 5 # RUN: not wasm-ld --no-entry --shared-memory --max-memory=100000 %t1.o -o - 2>&1 | FileCheck %s --… 7 # RUN: not wasm-ld --no-entry --shared-memory --max-memory=131072 --features=bulk-memory %t1.o -o -… 9 # RUN: not wasm-ld --no-entry --shared-memory --max-memory=131072 --features=atomics %t1.o -o - 2>&… 13 # RUN: wasm-ld --no-entry --shared-memory --max-memory=131072 --features=atomics,bulk-memory %t1.o … 59 # SHARED-UNALIGNED: maximum memory must be 65536-byte aligned{{$}} 61 # SHARED-NO-ATOMICS: 'atomics' feature must be used in order to use shared memory 63 # SHARED-NO-BULK-MEM: 'bulk-memory' feature must be used in order to use shared memory
|
| H A D | large-memory.test | 4 ; memory. 5 RUN: wasm-ld %t.o -o %t1.wasm --max-memory=2147483648 8 ; And also 4G of total memory 9 RUN: wasm-ld %t.o -o %t2.wasm --max-memory=4294967296 19 ; Test error for more than 4G of memory 20 RUN: not wasm-ld %t.o -o %t3.wasm --initial-memory=4295032832 2>&1 | FileCheck %s --check-prefix IN… 21 RUN: not wasm-ld %t.o -o %t4.wasm --max-memory=4295032832 2>&1 | FileCheck %s --check-prefix MAX-ER… 23 INIT-ERROR: initial memory too large, cannot be greater than 4294967296 24 MAX-ERROR: maximum memory too large, cannot be greater than 4294967296
|
| H A D | data-segments.ll | 9 ; atomics, shared memory => error 12 ; bulk memory, unshared memory => active segments 16 ; bulk memory, unshared memory, wasm64 => active segments 20 ; atomics, bulk memory, shared memory => passive segments 21 ; RUN: wasm-ld -no-gc-sections --no-entry --shared-memory --max-memory=131072 %t.atomics.bulk-mem.o… 25 ; atomics, bulk memory, shared memory, wasm64 => passive segments 50 ; ERROR: 'bulk-memory' feature must be used in order to use shared memory 201 ; DIS-NEXT: memory.init 0, 0 210 ; DIS-NEXT: memory.init 1, 0 219 ; DIS-NEXT: memory.init 2, 0 [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/Expr/ |
| H A D | TestIRMemoryMap.test | 5 # RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-basic 6 # RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-basic 8 # RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-overlap1 9 # RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-overlap1 11 # RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-mix-malloc-free 12 # RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-mix-malloc-free
|
| H A D | TestIRMemoryMapWindows.test | 6 # RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-basic 7 # RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-basic 9 # RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-overlap1 10 # RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-overlap1 12 # RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-mix-malloc-free 13 # RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-mix-malloc-free
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/micromips/ |
| H A D | invalid.s | 19 cachee 0, -513($7) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 20 cachee 0, 512($7) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 40 prefe 0, -513($7) # CHECK: :[[@LINE]]:12: error: expected memory with 9-bit signed offset 41 prefe 0, 512($7) # CHECK: :[[@LINE]]:12: error: expected memory with 9-bit signed offset 57 swe $2, -513($gp) # CHECK: :[[@LINE]]:11: error: expected memory with 9-bit signed offset 58 swe $2, 512($gp) # CHECK: :[[@LINE]]:11: error: expected memory with 9-bit signed offset 68 lle $4, 512($5) # CHECK: :[[@LINE]]:11: error: expected memory with 9-bit signed offset 69 lle $4, -513($5) # CHECK: :[[@LINE]]:11: error: expected memory with 9-bit signed offset 72 lwe $4, 512($5) # CHECK: :[[@LINE]]:11: error: expected memory with 9-bit signed offset 73 lwe $4, -513($5) # CHECK: :[[@LINE]]:11: error: expected memory with 9-bit signed offset [all …]
|
| /llvm-project-15.0.7/llvm/test/MC/WebAssembly/ |
| H A D | bulk-memory-encodings.s | 1 # RUN: llvm-mc -show-encoding -no-type-check -triple=wasm32-unknown-unknown -mattr=+bulk-memory < %… 2 # RUN: llvm-mc -show-encoding -no-type-check -triple=wasm64-unknown-unknown -mattr=+bulk-memory < %… 7 # CHECK: memory.init 3, 0 # encoding: [0xfc,0x08,0x03,0x00] 8 memory.init 3, 0 13 # CHECK: memory.copy 0, 0 # encoding: [0xfc,0x0a,0x00,0x00] 14 memory.copy 0, 0 16 # CHECK: memory.fill 0 # encoding: [0xfc,0x0b,0x00] 17 memory.fill 0
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/eva/ |
| H A D | invalid.s | 14 lle $4, 512($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 15 lle $4, -513($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 18 lwe $4, 512($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 19 lwe $4, -513($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 22 sbe $4, 512($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 23 sbe $4, -513($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 26 sce $4, 512($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 27 sce $4, -513($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 30 she $4, 512($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset 31 she $4, -513($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset [all …]
|
| H A D | invalid_R6.s | 23 …lle $4, 512($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… 24 …lle $4, -513($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… 27 …lwe $4, 512($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… 28 …lwe $4, -513($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… 31 …sbe $4, 512($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… 32 …sbe $4, -513($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… 35 …sce $4, 512($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… 36 …sce $4, -513($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… 39 …she $4, 512($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… 40 …she $4, -513($5) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offs… [all …]
|
| /llvm-project-15.0.7/llvm/test/MachineVerifier/ |
| H A D | test_g_memcpy_inline.mir | 17 ; CHECK: *** Bad machine code: memcpy/memmove must have 2 memory operands *** 20 ; CHECK: *** Bad machine code: memcpy/memmove must have 2 memory operands *** 23 ; CHECK: *** Bad machine code: memcpy/memmove must have 2 memory operands *** 26 ; CHECK: *** Bad machine code: wrong memory operand types *** 29 ; CHECK: *** Bad machine code: inconsistent memory operand sizes *** 32 ; CHECK: *** Bad machine code: inconsistent memory operand sizes *** 35 ; CHECK: *** Bad machine code: inconsistent memory operand sizes *** 44 ; CHECK: *** Bad machine code: memory instruction operand must be a pointer *** 47 ; CHECK: *** Bad machine code: memory instruction operand must be a pointer ***
|
| H A D | test_g_memmove.mir | 17 ; CHECK: *** Bad machine code: memcpy/memmove must have 2 memory operands *** 20 ; CHECK: *** Bad machine code: memcpy/memmove must have 2 memory operands *** 23 ; CHECK: *** Bad machine code: memcpy/memmove must have 2 memory operands *** 26 ; CHECK: *** Bad machine code: wrong memory operand types *** 29 ; CHECK: *** Bad machine code: inconsistent memory operand sizes *** 32 ; CHECK: *** Bad machine code: inconsistent memory operand sizes *** 35 ; CHECK: *** Bad machine code: inconsistent memory operand sizes *** 44 ; CHECK: *** Bad machine code: memory instruction operand must be a pointer *** 47 ; CHECK: *** Bad machine code: memory instruction operand must be a pointer ***
|
| H A D | test_g_memcpy.mir | 17 ; CHECK: *** Bad machine code: memcpy/memmove must have 2 memory operands *** 20 ; CHECK: *** Bad machine code: memcpy/memmove must have 2 memory operands *** 23 ; CHECK: *** Bad machine code: memcpy/memmove must have 2 memory operands *** 26 ; CHECK: *** Bad machine code: wrong memory operand types *** 29 ; CHECK: *** Bad machine code: inconsistent memory operand sizes *** 32 ; CHECK: *** Bad machine code: inconsistent memory operand sizes *** 35 ; CHECK: *** Bad machine code: inconsistent memory operand sizes *** 44 ; CHECK: *** Bad machine code: memory instruction operand must be a pointer *** 47 ; CHECK: *** Bad machine code: memory instruction operand must be a pointer ***
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/ |
| H A D | SPIRVBarrierOps.td | 41 both a control barrier and a memory barrier (that is, without needing 59 memory-semantics ::= `"None"` | `"Acquire"` | "Release"` | ... 90 let summary = "Control the order that memory accesses are observed."; 93 Ensures that memory accesses issued before this instruction will be 94 observed before memory accesses issued after this instruction. This 95 control is ensured only for memory accesses issued by this invocation 97 Vulkan memory model is declared, this ordering only applies to memory 98 accesses that use the NonPrivatePointer memory operand or 104 To execute both a memory barrier and a control barrier, see 112 memory-semantics ::= `"None"` | `"Acquire"` | `"Release"` | ... [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/ |
| H A D | bulk-memory.ll | 21 ; NO-BULK-MEM-NOT: memory.copy 31 ; NO-BULK-MEM-NOT: memory.copy 41 ; NO-BULK-MEM-NOT: memory.fill 51 ; NO-BULK-MEM-NOT: memory.copy 61 ; NO-BULK-MEM-NOT: memory.copy 71 ; NO-BULK-MEM-NOT: memory.fill 101 ; NO-BULK-MEM-NOT: memory.fill 111 ; NO-BULK-MEM-NOT: memory.copy 122 ; NO-BULK-MEM-NOT: memory.copy 133 ; NO-BULK-MEM-NOT: memory.fill [all …]
|
| H A D | bulk-memory64.ll | 21 ; NO-BULK-MEM-NOT: memory.copy 32 ; NO-BULK-MEM-NOT: memory.copy 43 ; NO-BULK-MEM-NOT: memory.fill 54 ; NO-BULK-MEM-NOT: memory.copy 64 ; NO-BULK-MEM-NOT: memory.copy 74 ; NO-BULK-MEM-NOT: memory.fill 104 ; NO-BULK-MEM-NOT: memory.fill 114 ; NO-BULK-MEM-NOT: memory.copy 125 ; NO-BULK-MEM-NOT: memory.copy 136 ; NO-BULK-MEM-NOT: memory.fill [all …]
|
| H A D | memory-addr64.ll | 3 ; Test that basic memory operations assemble as expected with 64-bit addresses. 7 declare i64 @llvm.wasm.memory.size.i64(i32) nounwind readonly 8 declare i64 @llvm.wasm.memory.grow.i64(i32, i64) nounwind 12 ; CHECK-NEXT: memory.size $push0=, 0{{$}} 15 %a = call i64 @llvm.wasm.memory.size.i64(i32 0) 21 ; CHECK: memory.grow $push0=, 0, $0{{$}} 24 %a = call i64 @llvm.wasm.memory.grow.i64(i32 0, i64 %n)
|
| H A D | memory-addr32.ll | 3 ; Test that basic memory operations assemble as expected with 32-bit addresses. 7 declare i32 @llvm.wasm.memory.size.i32(i32) nounwind readonly 8 declare i32 @llvm.wasm.memory.grow.i32(i32, i32) nounwind 12 ; CHECK-NEXT: memory.size $push0=, 0{{$}} 15 %a = call i32 @llvm.wasm.memory.size.i32(i32 0) 21 ; CHECK: memory.grow $push0=, 0, $0{{$}} 24 %a = call i32 @llvm.wasm.memory.grow.i32(i32 0, i32 %n)
|
| /llvm-project-15.0.7/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyInstrBulkMemory.td | 1 // WebAssemblyInstrBulkMemory.td - bulk memory codegen support --*- tablegen -*- 10 /// WebAssembly bulk memory codegen constructs. 14 // Instruction requiring HasBulkMemory and the bulk memory prefix byte 23 // Bespoke types and nodes for bulk memory ops 45 "memory.init\t$seg, $idx, $dest, $offset, $size", 46 "memory.init\t$seg, $idx", 0x08>; 62 "memory.copy\t$src_idx, $dst_idx, $dst, $src, $len", 63 "memory.copy\t$src_idx, $dst_idx", 0x0a>; 70 "memory.fill\t$idx, $dst, $value, $size", 71 "memory.fill\t$idx", 0x0b>;
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AVR/ |
| H A D | sections.ll | 32 ; CHECK-8515: error: Current AVR subtarget does not support accessing extended program memory 33 ; CHECK-tiny40: error: Current AVR subtarget does not support accessing program memory 38 ; CHECK-8515: error: Current AVR subtarget does not support accessing extended program memory 39 ; CHECK-tiny40: error: Current AVR subtarget does not support accessing program memory 44 ; CHECK-8515: error: Current AVR subtarget does not support accessing extended program memory 45 ; CHECK-tiny40: error: Current AVR subtarget does not support accessing program memory 50 ; CHECK-8515: error: Current AVR subtarget does not support accessing extended program memory 51 ; CHECK-tiny40: error: Current AVR subtarget does not support accessing program memory 56 ; CHECK-8515: error: Current AVR subtarget does not support accessing extended program memory 57 ; CHECK-tiny40: error: Current AVR subtarget does not support accessing program memory
|