The upstream version has update the llvm version to 8.0. svn checkout http://llvm.org/svn/llvm-project/llvm/tags/RELEASE_800/final please.
------------------------------------------------------------------ 发件人:林作健 <[email protected]> 发送时间:2019年4月24日(星期三) 09:55 收件人:李英各(鹰一) <[email protected]>; Jonathan Doster <[email protected]>; v8-dev <[email protected]> 抄 送:Jakob Gruber <[email protected]> 主 题:回复:[v8-dev] LLVM Code Generator for V8 builtins On ARM Architecture Hi, First please send the mail to me directly. I am not in v8-dev list, so I can't receive any mail if you don't add my mail as delivery location. Or you may add me to the v8-dev. This project is for chromium on ARM architectures, I am the only one working on this, so I have no other effort to port to other architectures. And my goal is to improve the performance for UC Browser, and UC Browser just works on ARM family. To make this work, you may find a chromium version works with V8 versioned 6.3.298. And rsync the src directory to V8's. Then patch the V8 with v8.patch. Then you should svn checkout the LLVM 7.1 with the following command svn checkout http://llvm.org/svn/llvm-project/llvm/tags/RELEASE_701/final And patch it with llvm-patch-by-far.patch. Configure it with following shell script #!/bin/sh BUILDTYPE=Release if [ $# -ne 0 ]; then if [ $1 = "Debug" ]; then BUILDTYPE=Debug fi fi CC=clang CXX=clang++ cmake ../ -GNinja -DCMAKE_BUILD_TYPE=$BUILDTYPE -DLLVM_BUILD_32_BITS=ON -DLLVM_BUILD_LLVM_DYLIB=ON -DLLVM_ENABLE_LIBEDIT=OFF -DLLVM_ENABLE_LIBXML2=OFF -DLLVM_ENABLE_TERMINFO=OFF -DLLVM_TARGETS_TO_BUILD="X86;ARM;AArch64" -DLLVM_BINUTILS_INCDIR=/usr/include/ then run ninja libLLVM-7.so if you have ninja(you better choice). or make -j8 libLLVM-7.so copy the shared object to v8/lib/ then build chrome android version. ------------------------------------------------------------------ 发件人:李英各(鹰一) <[email protected]> 发送时间:2019年4月24日(星期三) 09:41 收件人:Jonathan Doster <[email protected]>; v8-dev <[email protected]>; 林作健 <[email protected]> 抄 送:Jakob Gruber <[email protected]> 主 题:回复:[v8-dev] LLVM Code Generator for V8 builtins On ARM Architecture Loop zuojian ------------------------------------------------------------------ 发件人:Jonathan Doster <[email protected]> 发送时间:2019年4月23日(星期二) 19:01 收件人:v8-dev <[email protected]> 抄 送:Jakob Gruber <[email protected]>; 李英各(鹰一) <[email protected]> 主 题:Re: [v8-dev] LLVM Code Generator for V8 builtins On ARM Architecture Sorry, I am new to this and very curious, is this source used in order to run Chrome on ARM architectures? On Tue, Apr 23, 2019 at 1:09 AM 林作健 <[email protected]> wrote: Okay. Then try https://github.com/linzj/llvm-toy/tree/arm-tf ------------------------------------------------------------------ 发件人:李英各(鹰一) <[email protected]> 发送时间:2019年4月23日(星期二) 16:07 收件人:Jakob Gruber <[email protected]>; v8-dev <[email protected]>; 林作健 <[email protected]> 主 题:回复:[v8-dev] LLVM Code Generator for V8 builtins On ARM Architecture Loop ZuoJian ------------------------------------------------------------------ 发件人:Jakob Gruber <[email protected]> 发送时间:2019年4月23日(星期二) 14:53 收件人:v8-dev <[email protected]> 抄 送:李英各(鹰一) <[email protected]> 主 题:Re: [v8-dev] LLVM Code Generator for V8 builtins On ARM Architecture The link is not accessible. On Tue, Apr 23, 2019 at 5:34 AM 林作健 <[email protected]> wrote: Hi everyone, I made a presentation about this project at the blinkon 10. But later I had to close my personal repository in github for my company's protocol. Now I have completed the open source procedure of my company. See if you guy is able to access this repository: http://gitlab.alibaba-inc.com/zuojian.lzj/llvm-builtin-codegen. The version is base on #define V8_MAJOR_VERSION 6 #define V8_MINOR_VERSION 3 #define V8_BUILD_NUMBER 298 #define V8_PATCH_LEVEL 0 林作健 电话:057128223456-null 邮箱:[email protected] 地址:广东-广州-天河区-广电平云广场 阿里巴巴企业主页 -- -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout. -- Jonathan Doster 909.839.3432 [email protected] Please disregard any spelling errors, this message was sent via mobile. -- -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
