Home
last modified time | relevance | path

Searched refs:bytes (Results 1 – 25 of 1553) sorted by relevance

12345678910>>...63

/llvm-project/llvm/test/DebugInfo/PDB/
H A Dmodule-stats.test5 ALL-NEXT: Stream 12, 308 bytes
7 ALL-NEXT: Total: 6 entries ( 204 bytes)
9 ALL-NEXT: S_COMPILE3: 1 entries ( 60 bytes)
10 ALL-NEXT: S_OBJNAME: 1 entries ( 56 bytes)
11 ALL-NEXT: S_GPROC32: 1 entries ( 44 bytes)
12 ALL-NEXT: S_FRAMEPROC: 1 entries ( 32 bytes)
13 ALL-NEXT: S_BUILDINFO: 1 entries ( 8 bytes)
14 ALL-NEXT: S_END: 1 entries ( 4 bytes)
16 ALL-NEXT: Total: 2 entries ( 88 bytes)
18 ALL-NEXT: DEBUG_S_LINES: 1 entries ( 56 bytes)
[all …]
H A Dtype-stats.test7 ALL-NEXT: Total: 75 entries ( 5,336 bytes, 71.15 avg)
9 ALL-NEXT: LF_FIELDLIST: 14 entries ( 1,956 bytes, 139.71 avg)
10 ALL-NEXT: LF_STRUCTURE: 14 entries ( 1,584 bytes, 113.14 avg)
11 ALL-NEXT: LF_ENUM: 8 entries ( 988 bytes, 123.50 avg)
12 ALL-NEXT: LF_MFUNCTION: 14 entries ( 392 bytes, 28.00 avg)
13 ALL-NEXT: LF_ARGLIST: 10 entries ( 176 bytes, 17.60 avg)
14 ALL-NEXT: LF_METHODLIST: 5 entries ( 116 bytes, 23.20 avg)
15 ALL-NEXT: LF_POINTER: 8 entries ( 96 bytes, 12.00 avg)
16 ALL-NEXT: LF_PROCEDURE: 1 entries ( 16 bytes, 16.00 avg)
17 ALL-NEXT: LF_MODIFIER: 1 entries ( 12 bytes, 12.00 avg)
H A Dpdbdump-raw-stream.test1 ; RUN: llvm-pdbutil bytes -stream-data=1 %p/Inputs/empty.pdb | FileCheck --check-prefix=STREAM %s
2 ; RUN: llvm-pdbutil bytes -stream-data=100 %p/Inputs/empty.pdb 2>&1 | FileCheck --check-prefix=INVA…
3 ; RUN: llvm-pdbutil bytes -stream-data=1,100 %p/Inputs/empty.pdb 2>&1 | FileCheck --check-prefix=BO…
5 ; RUN: llvm-pdbutil bytes -stream-data=1:10 %p/Inputs/empty.pdb | FileCheck --check-prefix=OFFSET %s
6 ; RUN: llvm-pdbutil bytes -stream-data=1@20 %p/Inputs/empty.pdb | FileCheck --check-prefix=SIZED %s
7 ; RUN: llvm-pdbutil bytes -stream-data=1:8@20 %p/Inputs/empty.pdb | FileCheck --check-prefix=SLICE …
8 ; RUN: llvm-pdbutil bytes -stream-data=1:0x8@0x14 %p/Inputs/empty.pdb | FileCheck --check-prefix=SL…
9 ; RUN: llvm-pdbutil bytes -stream-data=2:4050@100 %p/Inputs/empty.pdb 2>&1 | FileCheck --check-pref…
13 STREAM-NEXT: Stream 1: PDB Stream (dumping 118 / 118 bytes)
27 BOTH-NEXT: Stream 1: PDB Stream (dumping 118 / 118 bytes)
[all …]
/llvm-project/flang/lib/Parser/
H A Dcharacters.cpp72 result.bytes = 1; in EncodeCharacter()
81 result.bytes = 1; in EncodeCharacter()
85 result.bytes = 2; in EncodeCharacter()
90 result.bytes = 3; in EncodeCharacter()
98 result.bytes = 4; in EncodeCharacter()
105 result.bytes = 5; in EncodeCharacter()
113 result.bytes = 6; in EncodeCharacter()
134 result.append(encoded.buffer, static_cast<std::size_t>(encoded.bytes)); in EncodeString()
148 const char *cp, std::size_t bytes) { in DecodeRawCharacter() argument
149 if (bytes >= 1) { in DecodeRawCharacter()
[all …]
/llvm-project/lldb/unittests/Utility/
H A DStreamTest.cpp376 std::size_t bytes; in TEST_F() local
377 bytes = s.PutMaxHex64(0x12U, 1, lldb::eByteOrderBig); in TEST_F()
378 EXPECT_EQ(2U, bytes); in TEST_F()
379 bytes = s.PutMaxHex64(0x1234U, 2, lldb::eByteOrderBig); in TEST_F()
380 EXPECT_EQ(4U, bytes); in TEST_F()
381 bytes = s.PutMaxHex64(0x12345678U, 4, lldb::eByteOrderBig); in TEST_F()
382 EXPECT_EQ(8U, bytes); in TEST_F()
383 bytes = s.PutMaxHex64(0x1234567890ABCDEFU, 8, lldb::eByteOrderBig); in TEST_F()
384 EXPECT_EQ(16U, bytes); in TEST_F()
390 std::size_t bytes; in TEST_F() local
[all …]
/llvm-project/libc/test/src/__support/HashTable/
H A Dtable_test.cpp38 uint8_t bytes[3]; in TEST()
45 keys[i].bytes[0] = 2; in TEST()
46 keys[i].bytes[1] = i % 256; in TEST()
47 keys[i].bytes[2] = 0; in TEST()
49 keys[i].bytes[0] = 1; in TEST()
50 keys[i].bytes[1] = i; in TEST()
51 keys[i].bytes[2] = 0; in TEST()
53 HashTable::insert(table, {reinterpret_cast<char *>(keys[i].bytes), in TEST()
86 char bytes[2]; in TEST()
89 keys[k].bytes[ in TEST()
37 uint8_t bytes[3]; TEST() member
85 char bytes[2]; TEST() member
[all...]
/llvm-project/llvm/utils/
H A Dcodegen-diff13 my ($addr, $bytes, $instr) = ($1, $2, $4);
15 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
17 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
18 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;
33 my ($addr, $bytes, $instr) = ($1, $3, $2);
34 $bytes =~ s/0x//g;
35 $bytes =~ s/\s+/ /g; # regularize whitespace
36 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
38 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
39 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;
[all …]
/llvm-project/libc/test/src/__support/
H A Dblock_test.cpp25 alignas(max_align_t) array<byte, kN> bytes;
27 auto result = Block::init(bytes);
55 alignas(max_align_t) array<byte, kN> bytes; in TEST_FOR_EACH_BLOCK_TYPE()
56 span<byte> aligned(bytes); in TEST_FOR_EACH_BLOCK_TYPE()
71 array<byte, 2> bytes; in TEST_FOR_EACH_BLOCK_TYPE()
72 auto result = Block::init(bytes); in TEST_FOR_EACH_BLOCK_TYPE() local
80 // bytes from this one's. This should be sufficient for any machine's
84 array<byte, kN> bytes; in TEST()
85 auto result = Block::init(bytes); in TEST() local
110 array<byte, kN> bytes; in TEST_FOR_EACH_BLOCK_TYPE()
46 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
64 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
94 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
119 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
159 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
182 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
195 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
214 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
227 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
241 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
255 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
271 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
290 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
307 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
331 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
353 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
368 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
385 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
413 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
440 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
466 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
491 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes; TEST_FOR_EACH_BLOCK_TYPE() local
515 array<byte, kN> bytes{}; TEST_FOR_EACH_BLOCK_TYPE() local
550 array<byte, kN> bytes{}; TEST_FOR_EACH_BLOCK_TYPE() local
563 array<byte, kN> bytes{}; TEST_FOR_EACH_BLOCK_TYPE() local
578 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes{}; TEST_FOR_EACH_BLOCK_TYPE() local
592 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes{}; TEST_FOR_EACH_BLOCK_TYPE() local
609 alignas(BlockType::ALIGNMENT) array<byte, kN> bytes{}; TEST_FOR_EACH_BLOCK_TYPE() local
641 alignas(kN) array<byte, kN> bytes{}; TEST_FOR_EACH_BLOCK_TYPE() local
684 alignas(kN) array<byte, kN> bytes{}; TEST_FOR_EACH_BLOCK_TYPE() local
724 alignas(kN) array<byte, kN> bytes{}; TEST_FOR_EACH_BLOCK_TYPE() local
[all...]
/llvm-project/flang/unittests/Runtime/
H A DBufferTest.cpp24 explicit Store(std::size_t bytes = 65536) : bytes_{bytes} { in Store() argument
25 data_.reset(new char[bytes]);
26 std::memset(&data_[0], 0, bytes);
28 std::size_t bytes() const { return bytes_; } in bytes() function in Store
48 std::size_t Write(FileOffset at, const char *from, std::size_t bytes, in Write() argument
52 static_cast<int>(at), static_cast<int>(bytes), in Write()
54 } else if (at < 0 || at + bytes > bytes_) { in Write()
56 static_cast<int>(bytes)); in Write()
58 std::memcpy(&data_[at], from, bytes); in Write()
59 expect_ = at + bytes; in Write()
[all …]
/llvm-project/lldb/source/Utility/
H A DRegisterValue.cpp98 "%u bytes is too big to store in register %s (%u bytes)", src_len, in SetFromMemoryData()
103 // Use a data extractor to correctly copy and pad the bytes read into the in SetFromMemoryData()
120 DataExtractor data(buffer.bytes.data(), buffer.bytes.size(), in GetScalarValue()
122 if (scalar.SetValueFromData(data, lldb::eEncodingUint, buffer.bytes.size()) in GetScalarValue()
178 // Cap the data length if there is more than enough bytes for this register in SetValueFromData()
223 buffer.bytes.resize(reg_info.byte_size); in SetValueFromData()
228 buffer.bytes.data(), // dst buffer in SetValueFromData()
229 buffer.bytes in SetValueFromData()
265 std::vector<uint8_t> bytes; ParseVectorEncoding() local
727 SetBytes(const void * bytes,size_t length,lldb::ByteOrder byte_order) SetBytes() argument
[all...]
/llvm-project/lld/test/MachO/
H A Darm64-thunk-starvation.s17 ## 6 * 4 = 24 bytes for branches
18 ## Currently leaves 12 bytes for one thunk, so 36 bytes.
19 ## Uses < instead of <=, so 40 bytes.
26 ## both spacers when processing _f1 (24 bytes for the 4 bytes code for each
27 ## of the 6 _f functions, 12 bytes for one thunk, 4 bytes because the forward
28 ## branch range is 128 Mib - 4 bytes, and another 4 bytes because the algorithm
29 ## uses `<` instead of `<=`, for a total of 44 bytes slop.) Of the slop, 20
30 ## bytes are actually room for thunks.
32 ## But when a thunk is inserted to jump from _f1 to _fn1, that needs 12 bytes
33 ## but _f2 is only 4 bytes later, so after _f1 there are only
[all …]
/llvm-project/libc/src/__support/
H A Dhash.h36 const uint8_t *bytes = static_cast<const uint8_t *>(ptr); in read_little_endian()
46 buffer[i] = bytes[sizeof(T) - i - 1]; in read_little_endian()
50 buffer[i] = bytes[i]; in read_little_endian()
59 const uint8_t *bytes = static_cast<const uint8_t *>(ptr); in read_small_values()
62 low = static_cast<uint64_t>(read_little_endian<uint32_t>(&bytes[0])); in read_small_values()
64 static_cast<uint64_t>(read_little_endian<uint32_t>(&bytes[size - 4])); in read_small_values()
66 low = static_cast<uint64_t>(read_little_endian<uint16_t>(&bytes[0])); in read_small_values()
67 high = static_cast<uint64_t>(bytes[size - 1]); in read_small_values()
71 low = static_cast<uint64_t>(bytes[0]); in read_small_values()
72 high = static_cast<uint64_t>(bytes[ in read_small_values()
35 const uint8_t *bytes = static_cast<const uint8_t *>(ptr); read_little_endian() local
60 const uint8_t *bytes = static_cast<const uint8_t *>(ptr); read_small_values() local
129 uint8_t const *bytes = static_cast<const uint8_t *>(ptr); update() local
[all...]
/llvm-project/flang/include/flang/Evaluate/
H A Dinitial-image.h34 explicit InitialImage(std::size_t bytes) : data_(bytes) {} in InitialImage() argument
44 Result Add(ConstantSubscript offset, std::size_t bytes, const Constant<T> &x, in Add() argument
46 if (offset < 0 || offset + bytes > data_.size()) { in Add()
51 bytes != in Add()
54 } else if (bytes == 0) { in Add()
58 std::memcpy(&data_.at(offset), &x.values().at(0), bytes); in Add()
64 Result Add(ConstantSubscript offset, std::size_t bytes, in Add() argument
67 if (offset < 0 || offset + bytes > data_.size()) { in Add()
75 auto elementBytes{bytes > 0 ? bytes / elements : 0}; in Add()
76 if (elements * elementBytes != bytes) { in Add()
[all …]
/llvm-project/clang/test/Analysis/
H A Dpadding_message.cpp4 Excessive padding in 'struct IntSandwich' (6 padding bytes, where 2 is optimal). \
17 Excessive padding in 'struct TurDuckHen' (6 padding bytes, where 2 is optimal). \
32 Excessive padding in 'struct SmallIntSandwich' (4 padding bytes, where 0 is optimal). \
60 Excessive padding in 'struct HoldsAUnion' (6 padding bytes, where 2 is optimal). \
81 Excessive padding in 'struct StructSandwich' (6 padding bytes, where 2 is optimal). \
94 Excessive padding in 'TypedefSandwich' (6 padding bytes, where 2 is optimal). \
107 Excessive padding in 'struct StructAttrAlign' (10 padding bytes, where 2 is optimal). \
120 Excessive padding in 'struct OverlyAlignedChar' (8185 padding bytes, where 4089 is optimal). \
135 Excessive padding in 'struct HoldsOverlyAlignedChar' (8190 padding bytes, where 4094 is optimal). \
149 Excessive padding in 'struct X' (6 padding bytes, where 2 is optimal). \ in internalStructFunc()
[all …]
/llvm-project/llvm/unittests/Support/
H A DELFAttributeParserTest.cpp32 static void testParseError(ArrayRef<uint8_t> bytes, const char *msg) { in testParseError() argument
34 Error e = parser.parse(bytes, llvm::endianness::little); in testParseError()
39 static const uint8_t bytes[] = {1}; in TEST() local
40 testParseError(bytes, "unrecognized format-version: 0x1"); in TEST()
44 static const uint8_t bytes[] = {'A', 3, 0, 0, 0}; in TEST() local
45 testParseError(bytes, "invalid section length 3 at offset 0x1"); in TEST()
49 static const uint8_t bytes[] = {'A', 14, 0, 0, 0, 't', 'e', 's', in TEST() local
51 testParseError(bytes, "unrecognized tag 0x4 at offset 0xa"); in TEST()
55 static const uint8_t bytes[] = {'A', 14, 0, 0, 0, 't', 'e', 's', in TEST() local
57 testParseError(bytes, "invalid attribute size 4 at offset 0xa"); in TEST()
/llvm-project/libcxx/test/std/utilities/utility/mem.res/mem.res.pool/mem.res.pool.mem/
H A Dsync_deallocate_matches_allocate.pass.cpp26 std::size_t bytes;
28 explicit allocation_record(std::size_t b, size_t a) : bytes(b), align(a) {} in operator ==()
29 bool operator==(const allocation_record& rhs) const { return (bytes == rhs.bytes) && (align == rhs.align); } in operator <()
31 if (bytes != rhs.bytes) in operator <()
32 return (bytes < rhs.bytes); in operator <()
38 void* do_allocate(std::size_t bytes, size_t align) override { in do_allocate()
39 void* result = std::pmr::new_delete_resource()->allocate(bytes, alig in do_allocate()
25 std::size_t bytes; global() member
37 do_allocate(std::size_t bytes,size_t align) do_allocate() argument
42 do_deallocate(void * p,std::size_t bytes,size_t align) do_deallocate() argument
[all...]
H A Dunsync_deallocate_matches_allocate.pass.cpp26 std::size_t bytes;
28 explicit allocation_record(std::size_t b, size_t a) : bytes(b), align(a) {} in operator ==()
29 bool operator==(const allocation_record& rhs) const { return (bytes == rhs.bytes) && (align == rhs.align); } in operator <()
31 if (bytes != rhs.bytes) in operator <()
32 return (bytes < rhs.bytes); in operator <()
38 void* do_allocate(std::size_t bytes, size_t align) override { in do_allocate()
39 void* result = std::pmr::new_delete_resource()->allocate(bytes, alig in do_allocate()
25 std::size_t bytes; global() member
37 do_allocate(std::size_t bytes,size_t align) do_allocate() argument
42 do_deallocate(void * p,std::size_t bytes,size_t align) do_deallocate() argument
[all...]
/llvm-project/libcxx/src/
H A Dmemory_resource.cpp42 void* do_allocate(size_t bytes, size_t align) override { in do_allocate()
44 return std::__libcpp_allocate<std::byte>(__element_count(bytes), align); in do_allocate()
46 if (bytes == 0) in do_allocate()
47 bytes = 1; in do_allocate()
48 std::byte* result = std::__libcpp_allocate<std::byte>(__element_count(bytes), align); in do_allocate()
50 std::__libcpp_deallocate<std::byte>(result, __element_count(bytes), align); in do_allocate()
57 void do_deallocate(void* p, size_t bytes, size_t align) override {
58 std::__libcpp_deallocate<std::byte>(static_cast<std::byte*>(p), __element_count(bytes), align); in do_is_equal()
160 void* unsynchronized_pool_resource::__adhoc_pool::__do_allocate(memory_resource* upstream, size_t bytes, size_t align) { in __do_allocate()
167 size_t aligned_capacity = roundup(bytes, footer_alig in __do_allocate()
41 do_allocate(size_t bytes,size_t align) do_allocate() argument
56 do_deallocate(void * p,size_t bytes,size_t align) do_deallocate() argument
157 __do_allocate(memory_resource * upstream,size_t bytes,size_t align) __do_allocate() argument
177 __do_deallocate(memory_resource * upstream,void * p,size_t bytes,size_t align) __do_deallocate() argument
279 __pool_index(size_t bytes,size_t align) const __pool_index() argument
342 do_allocate(size_t bytes,size_t align) do_allocate() argument
396 do_deallocate(void * p,size_t bytes,size_t align) do_deallocate() argument
431 __try_allocate_from_chunk(size_t bytes,size_t align) __try_allocate_from_chunk() argument
442 __try_allocate_from_chunk(size_t bytes,size_t align) __try_allocate_from_chunk() argument
451 do_allocate(size_t bytes,size_t align) do_allocate() argument
[all...]
/llvm-project/mlir/lib/AsmParser/
H A DToken.cpp90 StringRef bytes = getSpelling().drop_front(); in getStringValue() local
92 bytes = bytes.drop_back(); in getStringValue()
94 bytes = bytes.drop_front(); in getStringValue()
98 result.reserve(bytes.size()); in getStringValue()
99 for (unsigned i = 0, e = bytes.size(); i != e;) { in getStringValue()
100 auto c = bytes[i++]; in getStringValue()
107 auto c1 = bytes[i++]; in getStringValue()
124 auto c2 = bytes[i++]; in getStringValue()
139 StringRef bytes = getSpelling().drop_front().drop_back(); in getHexStringValue() local
145 if (!bytes.consume_front("0x") || (bytes.size() & 1) || in getHexStringValue()
[all …]
/llvm-project/flang/runtime/
H A Dbuffer.h24 char *, std::size_t bytes, std::size_t shift);
71 FileOffset at, std::size_t bytes, IoErrorHandler &handler) { in ReadFrame() argument
73 Reallocate(bytes, handler); in ReadFrame()
81 if (static_cast<std::int64_t>(start_ + frame_ + bytes) > size_) { in ReadFrame()
83 MakeDataContiguous(handler, bytes); in ReadFrame()
86 if (FrameLength() < bytes) { in ReadFrame()
89 auto minBytes{bytes - FrameLength()}; in ReadFrame()
100 FileOffset at, std::size_t bytes, IoErrorHandler &handler) { in WriteFrame() argument
101 Reallocate(bytes, handler); in WriteFrame()
106 } else if (start_ + newFrame + static_cast<std::int64_t>(bytes) > size_) { in WriteFrame()
[all …]
/llvm-project/llvm/test/CodeGen/SystemZ/
H A Dmemset-03.ll8 ; No bytes, i32 version.
17 ; No bytes, i64 version.
44 ; 2 bytes, i32 version.
53 ; 2 bytes, i64 version.
62 ; 3 bytes, i32 version.
72 ; 3 bytes, i64 version.
82 ; 4 bytes, i32 version.
91 ; 4 bytes, i64 version.
100 ; 5 bytes, i32 version.
110 ; 5 bytes, i64 version.
[all …]
H A Dmemset-04.ll8 ; No bytes, i32 version.
17 ; No bytes, i64 version.
44 ; 2 bytes, i32 version.
53 ; 2 bytes, i64 version.
62 ; 3 bytes, i32 version.
72 ; 3 bytes, i64 version.
82 ; 4 bytes, i32 version.
91 ; 4 bytes, i64 version.
100 ; 5 bytes, i32 version.
110 ; 5 bytes, i64 version.
[all …]
/llvm-project/llvm/test/Transforms/Util/
H A Dtrivial-auto-var-init-call.ll94 ; YAML-NEXT: - String: ' bytes.'
102 ; CHECK-NEXT: Call to memset inserted by -ftrivial-auto-var-init. Memory operation size: 32 bytes.
114 ; YAML-NEXT: - String: ' bytes.'
126 ; CHECK-NEXT: Call to memcpy inserted by -ftrivial-auto-var-init. Memory operation size: 32 bytes.
138 ; YAML-NEXT: - String: ' bytes.'
150 ; CHECK-NEXT: Call to memmove inserted by -ftrivial-auto-var-init. Memory operation size: 32 bytes.
162 ; YAML-NEXT: - String: ' bytes.'
174 ; CHECK-NEXT: Call to bzero inserted by -ftrivial-auto-var-init. Memory operation size: 32 bytes.
186 ; YAML-NEXT: - String: ' bytes.'
332 ; CHECK-NEXT: Call to memset inserted by -ftrivial-auto-var-init. Memory operation size: 1 bytes.
[all …]
H A Dtrivial-auto-var-init-store.ll8 ; CHECK-NEXT: Store size: 4 bytes.
18 ; YAML-NEXT: - String: ' bytes.'
33 ; CHECK-NEXT: Store size: 4 bytes. Volatile: true.
43 ; YAML-NEXT: - String: ' bytes.'
58 ; CHECK-NEXT: Store size: 4 bytes. Atomic: true.
68 ; YAML-NEXT: - String: ' bytes.'
83 ; CHECK-NEXT: Store size: 4 bytes.
84 ; CHECK-NEXT: Variables: dst (4 bytes).
94 ; YAML-NEXT: - String: ' bytes.'
99 ; YAML-NEXT: - String: ' bytes)'
[all …]
/llvm-project/llvm/test/DebugInfo/PDB/DIA/
H A Dpdbdump-linenumbers.test5 ; LINE_NUMS_FPO: Line 5, Address: [0x000011a0 - 0x000011a5] (6 bytes)
6 ; LINE_NUMS_FPO: Line 6, Address: [0x000011a6 - 0x000011a6] (1 bytes)
9 ; LINE_NUMS: Line 6, Address: [0x00001060 - 0x00001066] (7 bytes)
10 ; LINE_NUMS: Line 80, Address: [0x000010d0 - 0x000010d1] (2 bytes)
11 ; LINE_NUMS: Line 81, Address: [0x000010d2 - 0x000010d5] (4 bytes)
12 ; LINE_NUMS: Line 28, Address: [0x00001170 - 0x0000117a] (11 bytes)
13 ; LINE_NUMS: Line 21, Address: [0x00001180 - 0x0000118a] (11 bytes)
14 ; LINE_NUMS: Line 20, Address: [0x00001190 - 0x0000119a] (11 bytes)

12345678910>>...63