From: Joseph Huber Date: Mon, 7 Feb 2022 20:23:50 +0000 (-0500) Subject: [Clang][Docs] Fix some typos in offloading design documentation X-Git-Tag: upstream/15.0.7~17492 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c9ee3513870cc597d50ba6145d6c2e60cdddb67;p=platform%2Fupstream%2Fllvm.git [Clang][Docs] Fix some typos in offloading design documentation --- diff --git a/clang/docs/OffloadingDesign.rst b/clang/docs/OffloadingDesign.rst index 3f7397d..3001809 100644 --- a/clang/docs/OffloadingDesign.rst +++ b/clang/docs/OffloadingDesign.rst @@ -18,8 +18,9 @@ OpenMP Offloading ================= .. note:: - This documentation describes Clang's behavior using the new offloading driver - which. This currently must be enabled manually using ``-fopenmp-new-driver``. + This documentation describes Clang's behavior using the new offloading + driver. This currently must be enabled manually using + ``-fopenmp-new-driver``. Clang supports OpenMP target offloading to several different architectures such as NVPTX, AMDGPU, X86_64, Arm, and PowerPC. Offloading code is generated by @@ -40,13 +41,14 @@ compiling the input file for both the host and the target device. The output from the device phase then needs to be embedded into the host to create a fat object. A special tool then needs to extract the device code from the fat objects, run the device linking step, and embed the final image in a symbol the -host can use to register the library and access the symbols on the device. +host runtime library can use to register the library and access the symbols on +the device. Compilation Process ^^^^^^^^^^^^^^^^^^^ -The compiler performs the following high-level actions to generate offloading -code: +The compiler performs the following high-level actions to generate OpenMP +offloading code: * Compile the input file for the host to produce a bitcode file. Lower ``#pragma omp target`` declarations to :ref:`offloading entries `. +to a target region it can have one of the following :ref:`entry flags +`. .. table:: Target Region Entry Flags :name: table-offload_entry_flags @@ -138,9 +140,9 @@ application is created the linker will provide the ``__start_omp_offloading_entries`` and ``__stop_omp_offloading_entries`` symbols which are used to create the :ref:`final image `. -This information is by the device compilation stage to determine which symbols -need to be exported from the device. We use the ``omp_offload.info`` metadata -node to pass this information device compilation stage. +This information is used by the device compilation stage to determine which +symbols need to be exported from the device. We use the ``omp_offload.info`` +metadata node to pass this information device compilation stage. Accessing Entries on the Device ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -151,7 +153,7 @@ the address to the pointer associated with the device image during runtime initialization. This is used to call the corresponding kernel function when entering a ``#pragma omp target`` region. For variables, the runtime maintains a table mapping host pointers to device pointers. Global variables inside a -``#pragma omp target reclare`` directive are first initialized to the host's +``#pragma omp target declare`` directive are first initialized to the host's address. Once the device address is initialized we insert it into the table to map the host address to the device address. @@ -185,7 +187,8 @@ locations to the runtime. If debugging information is enabled, we will also create strings to indicate the names and declarations of variables mapped in target regions. These have the same format as the source location in the :ref:`identifier structure -`, but the filename is replaced with the variable name. +`, but the function name is replaced with the variable +name. .. _Device Compilation: @@ -267,7 +270,7 @@ The linker wrapper tool supports linking bitcode files through link time optimization (LTO). This is used whenever the object files embedded in the host contain LLVM bitcode. Bitcode will be embedded for architectures that do not support a relocatable object format, such as AMDGPU or SPIR-V, or if the user -passed in ``-foffload-lto``. +requested it using the ``-foffload-lto`` flag. .. _Device Binary Wrapping: @@ -392,6 +395,7 @@ is defined as follows: __stop_omp_offloading_entries /*HostEntriesEnd*/ }; + Global Constructor and Destructor ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^