| /llvm-project-15.0.7/libc/loader/linux/x86_64/ |
| H A D | start.cpp | 33 AppProperties app; variable 40 if (app.tls.size == 0) { in init_tls() 47 uintptr_t tlsSize = app.tls.size & -app.tls.align; in init_tls() 48 if (tlsSize != app.tls.size) in init_tls() 49 tlsSize += app.tls.align; in init_tls() 95 using __llvm_libc::app; 132 uint64_t *env_ptr = app.args->argv + app.args->argc + 1; in _start() 134 app.envPtr = env_ptr; in _start() 159 app.tls.size = 0; in _start() 166 app.tls.size = phdr->p_memsz; in _start() [all …]
|
| /llvm-project-15.0.7/libc/loader/linux/aarch64/ |
| H A D | start.cpp | 37 AppProperties app; variable 42 if (app.tls.size == 0) { in init_tls() 96 using __llvm_libc::app; 119 uint64_t *env_ptr = app.args->argv + app.args->argc + 1; in _start() 121 app.envPtr = env_ptr; in _start() 139 app.pageSize = aux_entry->value; in _start() 146 app.tls.size = 0; in _start() 152 app.tls.address = phdr->p_vaddr; in _start() 153 app.tls.size = phdr->p_memsz; in _start() 155 app.tls.align = phdr->p_align; in _start() [all …]
|
| /llvm-project-15.0.7/lldb/test/API/macosx/find-app-in-bundle/ |
| H A D | Makefile | 3 all: clean TestApp.app/Contents/MacOS/TestApp 7 TestApp.app/Contents/MacOS/TestApp: $(EXE) $(DSYM) 8 cp -r $(SRCDIR)/TestApp.app . 9 mv TestApp TestApp.app/Contents/MacOS/TestApp 10 mv TestApp.dSYM TestApp.app.dSYM 13 rm -rf $(EXE) TestApp.app TestApp.app.dSYM
|
| /llvm-project-15.0.7/lldb/docs/ |
| H A D | conf.py | 296 def preprocess_source(app, docname, source): argument 323 def cleanup_source(app, exception): argument 325 if hasattr(app.config, 'automodapi_toctreedirnm'): 326 api_source_dir = os.path.join(app.srcdir, app.config.automodapi_toctreedirnm) 329 def setup(app): argument 330 app.connect('source-read', preprocess_source) 331 app.connect('build-finished', cleanup_source)
|
| /llvm-project-15.0.7/polly/lib/External/isl/ |
| H A D | isl_transitive_closure.c | 185 app = isl_map_free(app); in check_exactness() 186 app = set_path_length(app, 0, 1); in check_exactness() 897 app = isl_map_add_dims(app, isl_dim_in, 1); in construct_component() 898 app = isl_map_add_dims(app, isl_dim_out, 1); in construct_component() 903 app = isl_map_intersect(app, path); in construct_component() 911 app = set_path_length(app, 0, 1); in construct_component() 959 app = isl_map_intersect(app, path); in q_closure() 1642 app = isl_map_union(app, grid[i][j]); in floyd_warshall_with_groups() 2472 app = isl_map_free(app); in box_closure_with_check() 2525 app = isl_map_add_basic_map(app, in transitive_closure_omega() [all …]
|
| /llvm-project-15.0.7/lldb/test/API/macosx/add-dsym/ |
| H A D | Makefile | 5 all: a.out.dSYM hide.app/Contents/a.out.dSYM 7 hide.app/Contents/a.out.dSYM: 8 mkdir hide.app 9 mkdir hide.app/Contents 10 mv a.out.dSYM hide.app/Contents
|
| /llvm-project-15.0.7/third-party/benchmark/bindings/python/google_benchmark/ |
| H A D | __init__.py | 30 from absl import app 143 return app.parse_flags_with_usage(argv) 148 raise app.UsageError("Too many command-line arguments.") 153 return app.run(_run_benchmarks, argv=argv, flags_parser=_flags_parser)
|
| /llvm-project-15.0.7/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/ |
| H A D | parser_text.test | 10 …- 1000.11.38.2) <96E36F5C-1A83-39A1-8713-5FDD9701C3F1> /Applications/Xcode.app/Contents/SharedFram… 15 # CHECK: /Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/LLDB 33 "0x1111111 - 0x22222 +MyApp Pro arm64 <01234> /tmp/MyApp Pro.app/MyApp Pro", 39 # CHECK: /tmp/MyApp Pro.app/MyApp Pro 41 "0x1111111 - 0x22222 +MyApp Pro (0) <01234> /tmp/MyApp Pro.app/MyApp Pro", 47 # CHECK: /tmp/MyApp Pro.app/MyApp Pro
|
| /llvm-project-15.0.7/flang/docs/ |
| H A D | conf.py | 72 def setup(app): argument 75 app.add_config_value('recommonmark_config', { 78 app.add_transform(AutoStructify)
|
| /llvm-project-15.0.7/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/ |
| H A D | Makefile | 14 mkdir hide.app 15 tar cf - com.apple.sbd.xpc com.apple.sbd.xpc.dSYM | ( cd hide.app;tar xBpf -) 19 …rm -rf a.out a.out.dSYM hide.app com.apple.sbd com.apple.sbd.dSYM com.apple.sbd.xpc com.apple.sbd.…
|
| /llvm-project-15.0.7/lldb/test/API/macosx/find-dsym/deep-bundle/ |
| H A D | Makefile | 18 mkdir hide.app 20 tar cf - MyFramework.framework MyFramework.framework.dSYM | ( cd hide.app;tar xBpf -) 24 …-bundle.dSYM MyFramework.framework MyFramework.framework.dSYM MyFramework MyFramework.dSYM hide.app
|
| /llvm-project-15.0.7/libcxx/test/std/depr/depr.ios.members/ |
| H A D | open_mode.pass.cpp | 26 std::strstream::open_mode b = std::strstream::app; in main() 27 assert(b == std::ios::app); in main()
|
| /llvm-project-15.0.7/llvm/utils/gn/build/ |
| H A D | mac_sdk.gni | 23 …mac_sdk_path = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDK… 24 …ios_sdk_path = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/S… 25 …iossim_sdk_path = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D…
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/iostreams.base/ios.base/ios.types/ios_openmode/ |
| H A D | openmode.pass.cpp | 27 assert(std::ios_base::app); in main() 36 ( std::ios_base::app in main()
|
| /llvm-project-15.0.7/llvm/test/Transforms/Attributor/ |
| H A D | value-simplify-dbg.ll | 54 !3 = !DIFile(filename: "/app/example.c", directory: "/app", checksumkind: CSK_MD5, checksum: "b456b… 56 !5 = !DIFile(filename: "example.c", directory: "/app", checksumkind: CSK_MD5, checksum: "b456b90cec… 84 ; CHECK: [[META3:![0-9]+]] = !DIFile(filename: "/app/example.c", directory: "/app", checksumkind: C… 86 ; CHECK: [[META5:![0-9]+]] = !DIFile(filename: "example.c", directory: "/app", checksumkind: CSK_MD…
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | dwarf-eh-prepare-dbg.ll | 47 !1 = !DIFile(filename: "/app/example.c", directory: "/app") 51 !5 = !DIFile(filename: "example.c", directory: "/app")
|
| /llvm-project-15.0.7/lldb/cmake/caches/ |
| H A D | Apple-lldb-macOS.cmake | 11 set(CMAKE_INSTALL_PREFIX /Applications/Xcode.app/Contents/Developer/usr CACHE STRING "") 15 set(LLDB_FRAMEWORK_INSTALL_DIR /Applications/Xcode.app/Contents/SharedFrameworks CACHE STRING "")
|
| /llvm-project-15.0.7/lldb/docs/use/ |
| H A D | links.rst | 22 LLDB is a powerful tool for exploring and debugging your app at runtime. 23 Discover the various ways to display values in your app, how to format 33 Xcode’s view debugging tools to solve UI issues in your app more
|
| /llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/ |
| H A D | atomics.ll | 79 ; atomic load: preserve alignment, load shadow value after app value 94 ; atomic load: preserve alignment, load shadow value after app value 139 ; atomic store: preserve alignment, store clean shadow value before app value 154 ; atomic store: preserve alignment, store clean shadow value before app value
|
| /llvm-project-15.0.7/libc/config/linux/ |
| H A D | CMakeLists.txt | 4 app.h
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/ |
| H A D | pubseekpos.pass.cpp | 33 assert(t.pubseekpos(0, std::ios_base::app) == -1); in main()
|
| H A D | pubseekoff.pass.cpp | 34 assert(t.pubseekoff(0, std::ios_base::beg, std::ios_base::app) == -1); in main()
|
| /llvm-project-15.0.7/llvm/test/YAMLParser/ |
| H A D | spec-07-07b.test | 4 %TAG ! tag:ben-kiki.org,2000:app/
|
| /llvm-project-15.0.7/lldb/examples/lookup/ |
| H A D | Makefile | 10 LLDB_BUILD_DIR ?= /Applications/Xcode.app/Contents/SharedFrameworks
|
| /llvm-project-15.0.7/lldb/examples/functions/ |
| H A D | Makefile | 11 LLDB_BUILD_DIR ?= /Applications/Xcode.app/Contents/SharedFrameworks
|