Home
last modified time | relevance | path

Searched full:binary (Results 1 – 25 of 3083) sorted by relevance

12345678910>>...124

/llvm-project/compiler-rt/test/profile/Linux/
H A Dbinary-id.c4 // RUN: llvm-profdata show --binary-ids %t.profraw > %t.out
5 // RUN: FileCheck %s --check-prefix=NO-BINARY-ID < %t.out
10 // RUN: llvm-profdata show --binary-ids %t.profraw > %t.profraw.out
11 // RUN: FileCheck %s --check-prefix=BINARY-ID-RAW-PROF < %t.profraw.out
17 // RUN: llvm-profdata show --binary-ids %t.profdir/default_*.profraw > %t.profraw.out
18 // RUN: FileCheck %s --check-prefix=BINARY-ID-MERGE-PROF < %t.profraw.out
21 // RUN: llvm-profdata show --binary-ids %t.profdata > %t.profdata.out
22 // RUN: FileCheck %s --check-prefix=BINARY-ID-INDEXED-PROF < %t.profdata.out
30 // RUN: llvm-profdata show --binary-ids %t.profraw > %t.profraw.out
32 // RUN: FileCheck %s --check-prefix=BINARY
[all...]
/llvm-project/compiler-rt/test/profile/Windows/
H A Dbinary-id.c6 // RUN: llvm-profdata show --binary-ids %t.profraw > %t.out
7 // RUN: FileCheck %s --check-prefix=NO-BINARY-ID < %t.out
12 // RUN: llvm-profdata show --binary-ids %t.profraw > %t.profraw.out
13 // RUN: FileCheck %s --check-prefix=BINARY-ID-RAW-PROF < %t.profraw.out
19 // RUN: llvm-profdata show --binary-ids %t.profdir/default_*.profraw > %t.profraw.out
20 // RUN: FileCheck %s --check-prefix=ONE-BINARY-ID < %t.profraw.out
23 // RUN: llvm-profdata show --binary-ids %t.profdata > %t.profdata.out
24 // RUN: FileCheck %s --check-prefix=ONE-BINARY-ID < %t.profdata.out
32 // RUN: llvm-profdata show --binary-ids %t.profraw > %t.profraw.out
34 // RUN: FileCheck %s --check-prefix=MULTI-BINARY
[all...]
/llvm-project/clang/test/SemaCXX/
H A Dnullptr_in_arithmetic_ops.cpp8 a = 0 ? nullptr + a : a + nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
9 a = 0 ? nullptr - a : a - nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
10 a = 0 ? nullptr / a : a / nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
11 a = 0 ? nullptr * a : a * nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
12 a = 0 ? nullptr >> a : a >> nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
13 a = 0 ? nullptr << a : a << nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
14 a = 0 ? nullptr % a : a % nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
15 a = 0 ? nullptr & a : a & nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
16 a = 0 ? nullptr | a : a | nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
17 a = 0 ? nullptr ^ a : a ^ nullptr; // expected-error 2{{invalid operands to binary expression}} in foo()
[all …]
H A Dnullptr.cpp35 (void)(null <= nullptr); // expected-error {{invalid operands to binary expression}} in f()
39 (void)(null <= 0); // expected-error {{invalid operands to binary expression}} in f()
40 (void)(null <= (void*)0); // expected-error {{invalid operands to binary expression}} in f()
41 (void)((void*)0 <= nullptr); // expected-error {{invalid operands to binary expression}} in f()
44 (void)(nullptr <= 0); // expected-error {{invalid operands to binary expression}} in f()
45 (void)(0 <= nullptr); // expected-error {{invalid operands to binary expression}} in f()
46 (void)(1 > nullptr); // expected-error {{invalid operands to binary expression}} in f()
47 (void)(1 != nullptr); // expected-error {{invalid operands to binary expression}} in f()
48 (void)(1 + nullptr); // expected-error {{invalid operands to binary expression}} in f()
121 static_assert(!(nullptr < nullptr), ""); // expected-error {{invalid operands to binary expression}}
[all …]
/llvm-project/clang/test/Sema/
H A Daarch64-sve-vector-shift-ops.c11 (void)(b << b); // expected-error{{invalid operands to binary expression}} in lshift()
13 (void)(i8 << b); // expected-error{{invalid operands to binary expression}} in lshift()
14 (void)(i8 << i16); // expected-error{{invalid operands to binary expression}} in lshift()
15 (void)(i8 << i32); // expected-error{{invalid operands to binary expression}} in lshift()
16 (void)(i8 << i64); // expected-error{{invalid operands to binary expression}} in lshift()
17 (void)(i8 << u16); // expected-error{{invalid operands to binary expression}} in lshift()
18 (void)(i8 << u32); // expected-error{{invalid operands to binary expression}} in lshift()
19 (void)(i8 << u64); // expected-error{{invalid operands to binary expression}} in lshift()
26 (void)(u8 << b); // expected-error{{invalid operands to binary expression}} in lshift()
27 (void)(u8 << i16); // expected-error{{invalid operands to binary expression}} in lshift()
[all …]
H A Daarch64-sve-vector-bitwise-ops.c18 (void)(i8 & f16); // expected-error{{invalid operands to binary expression}} in and()
19 (void)(i8 & f32); // expected-error{{invalid operands to binary expression}} in and()
20 (void)(i8 & f64); // expected-error{{invalid operands to binary expression}} in and()
29 (void)(u8 & f16); // expected-error{{invalid operands to binary expression}} in and()
30 (void)(u8 & f32); // expected-error{{invalid operands to binary expression}} in and()
31 (void)(u8 & f64); // expected-error{{invalid operands to binary expression}} in and()
40 (void)(i16 & f16); // expected-error{{invalid operands to binary expression}} in and()
41 (void)(i16 & f32); // expected-error{{invalid operands to binary expression}} in and()
42 (void)(i16 & f64); // expected-error{{invalid operands to binary expression}} in and()
51 (void)(u16 & f16); // expected-error{{invalid operands to binary expression}} in and()
[all …]
H A Dnullptr.c27 (void)(null <= nullptr); // expected-error {{invalid operands to binary expression}} in f()
31 (void)(null <= 0); // expected-error {{invalid operands to binary expression}} in f()
32 (void)(null <= (void*)0); // expected-error {{invalid operands to binary expression}} in f()
33 (void)((void*)0 <= nullptr); // expected-error {{invalid operands to binary expression}} in f()
36 (void)(nullptr <= 0); // expected-error {{invalid operands to binary expression}} in f()
37 (void)(0 <= nullptr); // expected-error {{invalid operands to binary expression}} in f()
38 (void)(1 > nullptr); // expected-error {{invalid operands to binary expression}} in f()
39 (void)(1 != nullptr); // expected-error {{invalid operands to binary expression}} in f()
40 (void)(1 + nullptr); // expected-error {{invalid operands to binary expression}} in f()
83 static_assert(!(nullptr < nullptr), ""); // expected-error {{invalid operands to binary expressio
[all...]
/llvm-project/llvm/
H A D.gitattributes1 # binary files
2 test/Object/Inputs/*.a* binary
3 test/tools/dsymutil/Inputs/*.o binary
4 test/tools/dsymutil/Inputs/*.a binary
5 test/tools/dsymutil/Inputs/*.i386 binary
6 test/tools/dsymutil/Inputs/*.x86_64 binary
7 test/tools/dsymutil/Inputs/*.armv7m binary
8 test/tools/dsymutil/Inputs/*.dylib binary
9 test/tools/dsymutil/Inputs/*.dSYM binary
10 test/tools/dsymutil/Inputs/*.swiftmodule binary
[all...]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/hicpp/
H A Dsigned-bitwise.cpp34 …// CHECK-MESSAGES: :[[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
36 …// CHECK-MESSAGES: :[[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
38 …// CHECK-MESSAGES: :[[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
41 …// CHECK-MESSAGES: :[[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
43 …// CHECK-MESSAGES: :[[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
45 …// CHECK-MESSAGES: :[[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
58 …// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
60 …// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
62 …// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
66 …// CHECK-MESSAGES: :[[@LINE-1]]:22: warning: use of a signed integer operand with a binary bitwise… in binary_bitwise()
[all …]
H A Dsigned-bitwise-standard-types.cpp69 std::ios_base::openmode B = std::ios_base::openmode::binary; in pure_bitmask_types()
71 SResult = std::ios_base::openmode::app | std::ios_base::openmode::binary; in pure_bitmask_types()
86 …// CHECK-MESSAGES: [[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise … in still_forbidden()
88 …// CHECK-MESSAGES: [[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise … in still_forbidden()
90 …// CHECK-MESSAGES: [[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise … in still_forbidden()
92 …// CHECK-MESSAGES: [[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise … in still_forbidden()
98 …// CHECK-MESSAGES: [[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise … in still_forbidden()
100 …// CHECK-MESSAGES: [[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise … in still_forbidden()
102 …// CHECK-MESSAGES: [[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise … in still_forbidden()
104 …// CHECK-MESSAGES: [[@LINE-1]]:13: warning: use of a signed integer operand with a binary bitwise … in still_forbidden()
[all …]
/llvm-project/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py83 def symbolize(self, addr, binary, offset): argument
84 """Symbolize the given address (pair of binary and offset).
89 binary: path to executable/shared object containing this instruction.
90 offset: instruction offset in the @binary.
132 def symbolize(self, addr, binary, offset): argument
138 symbolizer_input = '"%s" %s' % (binary, offset)
168 def __init__(self, binary): argument
170 self.binary = binary
178 logging.debug("addr2line binary i
192 symbolize(self, addr, binary, offset) global() argument
291 __init__(self, addr, binary, arch) global() argument
302 symbolize(self, addr, binary, offset) global() argument
336 symbolize(self, addr, binary, offset) global() argument
349 BreakpadSymbolizerFactory(binary) global() argument
358 SystemSymbolizerFactory(system, addr, binary, arch) global() argument
427 symbolize(self, addr, binary, offset) global() argument
461 symbolize_address(self, addr, binary, offset, arch) global() argument
[all...]
/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
H A Dnew-symbol-visibility.test2 ## using binary input can be specified with the --new-symbol-visibility switch.
4 # RUN: llvm-objcopy -I binary -O elf64-x86-64 %s %t.unspecified
5 # RUN: llvm-readelf -s %t.unspecified | FileCheck %s --check-prefix=BINARY -DVISIBILITY=DEFAULT
6 # RUN: llvm-objcopy --new-symbol-visibility default -I binary -O elf64-x86-64 %s %t.default
7 # RUN: llvm-readelf -s %t.default | FileCheck %s --check-prefix=BINARY -DVISIBILITY=DEFAULT
8 # RUN: llvm-objcopy --new-symbol-visibility hidden -I binary -O elf64-x86-64 %s %t.hidden
9 # RUN: llvm-readelf -s %t.hidden | FileCheck %s --check-prefix=BINARY -DVISIBILITY=HIDDEN
10 # RUN: llvm-objcopy --new-symbol-visibility protected -I binary -O elf64-x86-64 %s %t.protected
11 # RUN: llvm-readelf -s %t.protected | FileCheck %s --check-prefix=BINARY -DVISIBILITY=PROTECTED
12 # RUN: llvm-objcopy --new-symbol-visibility internal -I binary -O elf64-x86-64 %s %t.internal
[all …]
H A Dbinary-input-and-output.test6 ## -I binary -O binary preserves payload through in-memory representation.
7 # RUN: llvm-objcopy -I binary -O binary %t.txt %t.2.txt
11 ## If -O is not specified, it defaults to -I, i.e. "binary".
12 # RUN: llvm-objcopy -I binary %t.txt %t.3.txt
15 ## -I binary -O elf* creates an ELF. -O binary transforms it back to the
17 # RUN: llvm-objcopy -I binary -O elf64-x86-64 %t.txt %t.o
18 # RUN: llvm-objcopy -O binary %t.o %t.4.txt
22 # RUN: llvm-objcopy -I binary -B i386:x86-64 -O binary %t.txt %t.5.txt
H A Dpad-to.test3 # RUN: not llvm-objcopy --pad-to=1 %t 2>&1 | FileCheck %s --check-prefix=NOT-BINARY
4 # NOT-BINARY: error: '--pad-to' is only supported for binary output
6 # RUN: not llvm-objcopy -O binary --pad-to= %t 2>&1 | FileCheck %s --check-prefix=BAD-FORMAT
9 # RUN: not llvm-objcopy -O binary --pad-to=x %t 2>&1 | FileCheck %s --check-prefix=BAD-INPUT
12 # RUN: not llvm-objcopy -O binary --pad-to=0x1G %t 2>&1 | FileCheck %s --check-prefix=BAD-INPUT2
15 # RUN: not llvm-objcopy -O binary --pad-to=ff %t 2>&1 | FileCheck %s --check-prefix=BAD-INPUT3
18 # RUN: not llvm-objcopy -O binary --pad-to=0x112233445566778899 %t 2>&1 | FileCheck %s --check-pref…
22 # RUN: llvm-objcopy -O binary %t %t.bin
24 ## Pad to an address smaller than the binary size.
25 # RUN: llvm-objcopy -O binary --pad-to=0x20 %t %t-p1
[all …]
/llvm-project/llvm/tools/llvm-profgen/
H A DPerfReader.cpp24 cl::desc("Print binary load events."));
106 if (!isValidFallThroughRange(Target, End, Binary)) { in unwindLinear()
112 if (Binary->usePseudoProbes()) { in unwindLinear()
138 bool SameInlinee = Binary->inlineContextEqual(PrevIP, IP.Address); in unwindLinear()
155 uint64_t CallAddr = Binary->getCallAddrFromFrameAddr(LBR.Target);
172 KeyStr->Context = Binary->getExpandedContext(Stack, KeyStr->WasLeafInlined); in getContextKey()
182 // the inlinings for the leaf frame(the profiled binary inlining), in collectSamplesFromFrame()
223 T EmptyStack(Binary); in collectSamplesFromFrameTrie()
249 if (Binary->usePseudoProbes()) { in recordBranchCount()
250 AddressStack Stack(Binary); in recordBranchCount()
323 create(ProfiledBinary * Binary,PerfInputFile & PerfInput,std::optional<int32_t> PIDFilter) create() argument
357 convertPerfDataToTrace(ProfiledBinary * Binary,bool SkipPID,PerfInputFile & File,std::optional<int32_t> PIDFilter) convertPerfDataToTrace() argument
493 getContextKeyStr(ContextKey * K,const ProfiledBinary * Binary) getContextKeyStr() argument
967 extractMMapEventForBinary(ProfiledBinary * Binary,StringRef Line,MMapEvent & MMap) extractMMapEventForBinary() argument
[all...]
/llvm-project/llvm/lib/Object/
H A DBinary.cpp1 //===- Binary.cpp - A generic binary file ---------------------------------===//
9 // This file defines the Binary class.
13 #include "llvm/Object/Binary.h"
34 Binary::~Binary() = default;
36 Binary::Binary(unsigned int Type, MemoryBufferRef Source) in Binary() function in Binary
39 StringRef Binary::getData() const { return Data.getBuffer(); } in getData()
41 StringRef Binary::getFileName() const { return Data.getBufferIdentifier(); } in getFileName()
43 MemoryBufferRef Binary::getMemoryBufferRef() const { return Data; } in getMemoryBufferRef()
45 Expected<std::unique_ptr<Binary>> object::createBinary(MemoryBufferRef Buffer, in createBinary()
84 // PDB does not support the Binary interface. in createBinary()
[all …]
/llvm-project/llvm/test/tools/llvm-cov/
H A Duniversal-binary.c6 // RUN: llvm-profdata merge %S/Inputs/universal-binary.proftext -o %t.profdata
7 // RUN: llvm-cov show %S/Inputs/universal-binary -instr-profile %t.profdata -path-equivalence=/tmp,…
9 // RUN: llvm-cov report %S/Inputs/universal-binary -arch x86_64 -object %S/Inputs/templateInstantia…
10 // RUN: llvm-cov report %S/Inputs/universal-binary -arch x86_64 -object %S/Inputs/templateInstantia…
11 // RUN: not llvm-cov report %S/Inputs/universal-binary -arch i386 -object %S/Inputs/templateInstant…
13 // COMBINED-NEXT: universal-binary.c
15 // RUN: not llvm-cov show %S/Inputs/universal-binary -instr-profile %t.profdata -path-equivalence=/…
16 // RUN: not llvm-cov show %S/Inputs/universal-binary -instr-profile %t.profdata -path-equivalence=/…
17 …failed to load coverage: '{{.*}}universal-binary': `-arch` specifier is invalid or missing for uni…
19 // RUN: not llvm-cov show %S/Inputs/universal-binary -instr-profile %t.profdata -path-equivalence=/…
[all …]
/llvm-project/llvm/unittests/ObjCopy/
H A DObjCopyTest.cpp106 function_ref<bool(const Binary &File)> IsValidFormat) { in createObjectFileFromYamlDescription()
121 // is a holder for data. \returns Binary for copied data.
122 Expected<std::unique_ptr<Binary>>
123 callObjCopy(ConfigManager &Config, object::Binary &In, in callObjCopy()
125 function_ref<bool(const Binary &File)> IsValidFormat) { in callObjCopy()
134 Expected<std::unique_ptr<Binary>> Result = createBinary(Buffer); in callObjCopy()
144 return createError("binary is not object file"); in callObjCopy()
187 function_ref<bool(const Binary &File)> IsValidFormat) { in copySimpleInMemoryFileImpl()
202 Expected<std::unique_ptr<Binary>> Result = in copySimpleInMemoryFileImpl()
211 [](const Binary &File) { return File.isCOFF(); }); in TEST()
[all …]
/llvm-project/clang/test/CodeGen/PowerPC/
H A Dibm128-cast.c16 …*d = gf + *f; // expected-no-error {{invalid operands to binary expression ('__ibm128' and 'float'… in narrow()
25 …w + q; // expected-error {{invalid operands to binary expression ('__ibm128' and '__float128'… in imp_cast()
26 …l + w; // expected-error {{invalid operands to binary expression ('long double' and '__ibm128… in imp_cast()
27 …q - w; // expected-error {{invalid operands to binary expression ('__float128' and '__ibm128'… in imp_cast()
28 …w - l; // expected-error {{invalid operands to binary expression ('__ibm128' and 'long double… in imp_cast()
29 …w *l; // expected-error {{invalid operands to binary expression ('__ibm128' and 'long double… in imp_cast()
30 …q *w; // expected-error {{invalid operands to binary expression ('__float128' and '__ibm128'… in imp_cast()
31 …q / w; // expected-error {{invalid operands to binary expression ('__float128' and '__ibm128'… in imp_cast()
32 …w / l; // expected-error {{invalid operands to binary expression ('__ibm128' and 'long double… in imp_cast()
46 …w + q; // expected-error {{invalid operands to binary expression ('__ibm128' and '__float128'… in imp_cast()
[all …]
/llvm-project/bolt/docs/
H A DBAT.md4 unoptimized binary. BOLT Address Translation allows collecting profile
5 from BOLT-optimized binary and using it for optimizing the input (pre-BOLT)
6 binary.
10 into the output binary containing translation tables and split functions linkage
12 binary onto the original binary.
16 needs to be passed along with the optimized binary containing BAT section to
18 binary.
30 note section in the output binary.
32 During profile conversion when BAT-enabled binary is passed to perf2bolt,
35 offsets in the input binary.
[all …]
/llvm-project/lldb/test/Shell/ObjectFile/ELF/
H A Dminidebuginfo-set-and-hit-breakpoint.test6 # RUN: %clang_host -Wl,--dynamic-list=%T/dynmic-symbols.txt -g -o %t.binary %p/Inputs/minidebuginfo…
11 # Extract the dynamic symbols from the main binary, there is no need
14 # IGNORE: llvm-nm -D %t.binary --format=posix --defined-only | awk '{ print $1 }' | sort > %t.dynsy…
20 # IGNORE: llvm-nm %t.binary --format=posix --defined-only | awk '{ if ($2 == "T" || $2 == "t" || $2…
30 # Separate full debug info into debug binary.
32 # RUN: llvm-objcopy --only-keep-debug %t.binary %t.debug
41 # in the .dynsym section of the main binary. The bits removing .rela.plt,
47 # Drop the full debug info from the original binary.
49 # RUN: llvm-strip --strip-all -R .comment %t.binary
52 # original binary.
[all …]
/llvm-project/llvm/include/llvm/Object/
H A DOffloadBinary.h9 // This file contains the binary format used for budingling device metadata with
11 // file to create a fat binary and read by the linker. This is intended to be a
13 // complex it should be moved to a standard binary format like msgpack or ELF.
23 #include "llvm/Object/Binary.h"
52 /// A simple binary serialization of an offloading file. We use this format to
61 class OffloadBinary : public Binary {
66 /// The current version of the binary used for backwards compatibility.
78 /// Attempt to parse the offloading binary stored in \p Data.
81 /// Serialize the contents of \p File to a binary buffer to be read later.
98 // Iterator over all the key and value pairs in the binary
161 OffloadFile(std::unique_ptr<OffloadBinary> Binary,std::unique_ptr<MemoryBuffer> Buffer) OffloadFile() argument
[all...]
/llvm-project/lldb/examples/python/
H A Dfile_extract.py9 """Decode binary data from a file"""
12 """Initialize with an open binary file and optional byte order"""
64 …"""Extract a single int8_t from the binary file at the current file position, returns a single int…
73 …"""Extract a single uint8_t from the binary file at the current file position, returns a single in…
82 …"""Extract a single int16_t from the binary file at the current file position, returns a single in…
91 …"""Extract a single uint16_t from the binary file at the current file position, returns a single i…
100 …"""Extract a single int32_t from the binary file at the current file position, returns a single in…
109 …"""Extract a single uint32_t from the binary file at the current file position, returns a single i…
118 …"""Extract a single int64_t from the binary file at the current file position, returns a single in…
127 …"""Extract a single uint64_t from the binary file at the current file position, returns a single i…
[all …]
/llvm-project/llvm/test/CodeGen/DirectX/
H A Dclamp.ll8 ; CHECK: call i16 @dx.op.binary.i16(i32 37, i16 %{{.*}}, i16 %{{.*}})
9 ; CHECK: call i16 @dx.op.binary.i16(i32 38, i16 %{{.*}}, i16 %{{.*}})
17 ; CHECK: call i32 @dx.op.binary.i32(i32 37, i32 %{{.*}}, i32 %{{.*}})
18 ; CHECK: call i32 @dx.op.binary.i32(i32 38, i32 %{{.*}}, i32 %{{.*}})
26 ; CHECK: call i64 @dx.op.binary.i64(i32 37, i64 %a, i64 %b)
27 ; CHECK: call i64 @dx.op.binary.i64(i32 38, i64 %{{.*}}, i64 %c)
35 ; CHECK: call half @dx.op.binary.f16(i32 35, half %{{.*}}, half %{{.*}})
36 ; CHECK: call half @dx.op.binary.f16(i32 36, half %{{.*}}, half %{{.*}})
44 ; CHECK: call float @dx.op.binary.f32(i32 35, float %{{.*}}, float %{{.*}})
45 ; CHECK: call float @dx.op.binary
[all...]
/llvm-project/llvm/docs/CommandGuide/
H A Dllvm-install-name-tool.rst15 install names and rpaths listed in a Mach-O binary.
29 Add an rpath named ``<rpath>`` to the specified binary. Can be specified multiple
31 the binary.
36 specified binary. Can be specified multiple times to change multiple dependent shared
38 in the specified binary.
42 Delete an rpath named ``<rpath>`` from the specified binary. Can be specified multiple
44 the binary.
48 Deletes all rpaths from the binary.
57 specified binary. If specified multiple times, only the last :option:`-id` option is
58 selected. Option is ignored if the specified Mach-O binary is not a dynamic shared library.
[all …]

12345678910>>...124