summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
diff options
context:
space:
mode:
authorShuxin Yang <shuxin.llvm@gmail.com>2013-08-27 17:15:54 +0000
committerShuxin Yang <shuxin.llvm@gmail.com>2013-08-27 17:15:54 +0000
commit388b52c0ced64ba12abd7746ecb6912b215a6540 (patch)
tree8e8cc1b86e823b8e6ed691a904775ec57ffbb7b4 /llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
parent1c71ab00e6d9c0ea6fe95baa309c9cb098c72a35 (diff)
downloadbcm5719-llvm-388b52c0ced64ba12abd7746ecb6912b215a6540.tar.gz
bcm5719-llvm-388b52c0ced64ba12abd7746ecb6912b215a6540.zip
Revert 189297, the original commit message is following.
---- Add new API lto_codegen_compile_parallel(). This API is proposed by Nick Kledzik. The semantic is: -------------------------------------------------------------------------- Generate code for merged module into an array of native object files. On success returns a pointer to an array of NativeObjectFile. The count parameter returns the number of elements in the array. Each element is a pointer/length for a generated mach-o/ELF buffer. The buffer is owned by the lto_code_gen_t and will be freed when lto_codegen_dispose() is called, or lto_codegen_compile() is called again. On failure, returns NULL (check lto_get_error_message() for details). extern const struct NativeObjectFile* lto_codegen_compile_parallel(lto_code_gen_t cg, size_t *count); --------------------------------------------------------------------------- This API is currently only called on OSX platform. Linux or other Unixes using GNU gold are not supposed to call this function, because on these systems, object files are fed back to linker via disk file instead of memory buffer. In this commit, lto_codegen_compile_parallel() simply calls lto_codegen_compile() to return a single object file. In the near future, this function is the entry point for compilation with partition. Linker can blindly call this function even if partition is turned off; in this case, compiler will return only one object file. llvm-svn: 189386
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud