| /llvm-project-15.0.7/libc/AOR_v20.02/math/ |
| H A D | Dir.mk | 34 math-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(math-lib-srcs))) 37 math-target-objs := $(math-lib-objs) $(math-test-objs) 38 math-objs := $(math-target-objs) $(math-target-objs:%.o=%.os) $(math-host-objs) 41 $(math-objs) \ 49 $(math-objs): $(math-includes) 50 $(math-objs): CFLAGS_ALL += $(math-cflags) 52 $(math-host-objs): CC = $(HOST_CC) 53 $(math-host-objs): CFLAGS_ALL = $(HOST_CFLAGS) 57 build/lib/libmathlib.so: $(math-lib-objs:%.o=%.os) 60 build/lib/libmathlib.a: $(math-lib-objs) [all …]
|
| /llvm-project-15.0.7/libc/AOR_v20.02/networking/ |
| H A D | Dir.mk | 28 networking-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(networking-lib-srcs))) 29 networking-test-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(networking-test-srcs))) 31 networking-objs := \ 32 $(networking-lib-objs) \ 33 $(networking-lib-objs:%.o=%.os) \ 34 $(networking-test-objs) \ 37 $(networking-objs) \ 44 $(networking-objs): $(networking-includes) 45 $(networking-objs): CFLAGS_ALL += $(networking-cflags) 47 build/lib/libnetworking.so: $(networking-lib-objs:%.o=%.os) [all …]
|
| /llvm-project-15.0.7/libc/AOR_v20.02/string/ |
| H A D | Dir.mk | 41 string-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(string-lib-srcs))) 42 string-test-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(string-test-srcs))) 44 string-objs := \ 45 $(string-lib-objs) \ 46 $(string-lib-objs:%.o=%.os) \ 47 $(string-test-objs) \ 50 $(string-objs) \ 57 $(string-objs): $(string-includes) 58 $(string-objs): CFLAGS_ALL += $(string-cflags) 60 build/lib/libstringlib.so: $(string-lib-objs:%.o=%.os) [all …]
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | demangle_tree.py | 84 objs = [] 89 while context.npending > 0 and len(objs) < chunk_size: 100 nneeded = chunk_size - len(objs) 104 objs.extend(objs_this_dir[0:ntaken]) 115 assert(len(objs) == chunk_size or context.npending == 0) 118 mapped_results = list(pool.map(copier, objs))
|
| H A D | GenLibDeps.pl | 75 my @objs = grep(/LLVM.*\.o$/,sort(@files)); 182 foreach my $obj (@objs ) { 376 foreach my $obj (@objs) {
|
| /llvm-project-15.0.7/llvm/test/Transforms/ObjCARC/ |
| H A D | allocas.ll | 367 %objs = alloca [2 x i8*], align 16 372 %objs.begin = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 0 374 store i8* %call1, i8** %objs.begin, align 8 375 %objs.elt = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 1 377 store i8* %call1, i8** %objs.elt 388 %gep = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 2 445 %objs = alloca [2 x i8*], align 16 451 %objs.begin = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 0 453 store i8* %call1, i8** %objs.begin, align 8 454 %objs.elt = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 1 [all …]
|
| /llvm-project-15.0.7/compiler-rt/test/tsan/ |
| H A D | unaligned_norace.cpp | 7 uint64_t objs[8*3*3*2][3]; variable 46 uint64_t *obj = objs[0]; in Test()
|
| H A D | unaligned_race.cpp | 7 volatile uint64_t objs[8*2*(2 + 4 + 8)][2]; variable 97 volatile uint64_t *obj = objs[0]; in Test()
|
| /llvm-project-15.0.7/polly/lib/External/isl/imath/contrib/ |
| H A D | Makefile.msvc | 47 all: objs examples test 49 objs: $(OBJS)
|
| /llvm-project-15.0.7/polly/lib/External/isl/imath/ |
| H A D | Makefile | 66 all: objs examples test 68 objs: $(OBJS) target
|
| /llvm-project-15.0.7/lld/test/MachO/ |
| H A D | weak-definition-direct-fetch.s | 50 # RUN: %lld -lSystem -o %t/weak-nonweak-objs %t/weakfoo.o %t/foo.o %t/refs-foo.o 51 # RUN: llvm-objdump --macho --lazy-bind --syms %t/weak-nonweak-objs | FileCheck %s --check-prefix=P… 52 # RUN: %lld -lSystem -o %t/nonweak-weak-objs %t/foo.o %t/weakfoo.o %t/refs-foo.o 53 # RUN: llvm-objdump --macho --lazy-bind --syms %t/nonweak-weak-objs | FileCheck %s --check-prefix=P…
|
| /llvm-project-15.0.7/llvm/test/Transforms/RewriteStatepointsForGC/ |
| H A D | invokes.ll | 35 define <4 x i64 addrspace(1)*> @test_basic_vector(<4 x i64 addrspace(1)*> %objs, <4 x i64 addrspace… 39 %ret_val = invoke <4 x i64 addrspace(1)*> @some_vector_call(<4 x i64 addrspace(1)*> %objs)
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | DebugTypes.cpp | 1148 std::vector<TpiSource *> objs; in sortDependencies() local 1150 (s->isDependency() ? deps : objs).push_back(s); in sortDependencies() 1152 uint32_t numObjs = objs.size(); in sortDependencies() 1154 ctx.tpiSourceList.insert(ctx.tpiSourceList.end(), objs.begin(), objs.end()); in sortDependencies()
|
| H A D | Driver.h | 229 ArrayRef<ObjFile *> objs);
|
| H A D | DriverUtils.cpp | 738 ArrayRef<ObjFile *> objs) { in convertResToCOFF() argument 755 for (ObjFile *f : objs) { in convertResToCOFF()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | crashes.cpp | 46 } objs[] = { variable
|
| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | precomp-link.test | 42 Check that two PCH objs with duplicate signatures are an error.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | framelayout-sve.mir | 24 # | Stack objs |
|