小型JIT编译器之最佳化技术-Read.PPTVIP

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  4. 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  5. 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  6. 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  7. 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
小型JIT编译器之最佳化技术-Read

小型JIT編譯器之最佳化技術評估 指導教授:單智君老師 指導學長:喬偉豪學長 組員: 鍾懿軒,蔣季融,李國丞 Outline 觀察-----------------------------------鍾懿軒 動機-----------------------------------鍾懿軒 目標-----------------------------------鍾懿軒 初步設計-----------------------------李國丞 修改過的設計------------------------蔣季融 未來進度-----------------------------蔣季融 觀察 Java是用stack運算。 因為底層機器是register-based非stack-based,用interpreter執行,performance不佳。 加入JIT將bytecode轉換為register-based的指令,可以增進performance。 若於JIT中加入一些機制,增進其效能,則可進一步增進java performance。 動機 加入的機制若能產生IR,使JIT compiler後端處理更方便。就有可能增進JIT的速度。 folding機制:讀入bytecode產生register-based的IR,簡便後段處理。 因此決定於JIT中加入folding機制。 目標 將folding機制加入JIT中,以最少的overhead,fold最多的pattern,達到增加performance的目的。 初步設計 架構圖 Bytecode分類 Pattern 統計 遇到的問題 舊架構圖 舊folding架構圖 Bytecode分類 1.定義: 參考kim’s paper(Advanced POC Model-Based Java Instruction Folding Mechanism) P:非operation含有push。 Op:operation含有push不含pop。 Oc:operation含有pop不含push。 C:非operation含有pop。 On:不含push pop,無法分類者。 Bytecode分類(續) 參考學長的paper(stack operations folding in java processors) P: transfering data from Constant Register or Local Variable to the operand stack。 O: gets data from the operand stack and then performs different tasks Oe: ALU type operator that writes the result back to the operand stack。 Ob: Branch type operator。 Oc: Complex type operator including array access, constant pool access 。 Ot: unable or hard to join the folding operation。 C: consumes data from the operand stack, and stores data back into the local variable。 Bytecode分類(續) 2.統計bytecode push/pop數: 檢視kvm source code(bytecodes.c): 查看每道bytecode的執行碼中有多少push, pop的動作。 檢視jvm spec(chapter 6) 每道bytecode都已規定好stack情況,可直接紀錄。 Analyze patterns possibility in Java class file Get information from Java class file Do it our self (in C++) BCEL library for Java (/bcel) Possibility of patterns (1)KIM所統計出的Patterns及出現百分比 (2)自行統計”Embedded CaffeineMark”的結果 Problems Classification can save time of string matching Using “Hashing” is better than string matching ! Benefit of classification no longer exists when usin

文档评论(0)

zhaoxiaoj + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档