IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> ScheduleDAG -> 正文阅读

[JavaScript知识库]ScheduleDAG

/home/cpan/workspace/llvm-project-dev/llvm-project/llvm/include/llvm/CodeGen/ScheduleDAG.h
class ScheduleDAG {
public:
const LLVMTargetMachine &TM; ///< Target processor
const TargetInstrInfo *TII; ///< Target instruction information
const TargetRegisterInfo *TRI; ///< Target processor register info
MachineFunction &MF; ///< Machine function
MachineRegisterInfo &MRI; ///< Virtual/real register map
std::vector SUnits; ///< The scheduling units.
SUnit EntrySU; ///< Special node for the region entry.
SUnit ExitSU; ///< Special node for the region exit.

/home/cpan/workspace/llvm-project-dev/llvm-project/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
/// A ScheduleDAG for scheduling lists of MachineInstr.
class ScheduleDAGInstrs : public ScheduleDAG

-mllvm -debug -mllvm -print-after-all

*** IR Dump After Scalarize Masked Memory Intrinsics ***
ScalarizeMaskedMemIntrin.cpp
This pass replaces masked memory intrinsics - when unsupported by the target with a chain of basic blocks, that deal with the elements one-by-one if the appropriate mask bit is set.

*** IR Dump After Module Verifier ***
define void @main(i8* %addr_dout, i32 %din0, i32 %din1) {
%res0 = call i32 @llvm.dtu.abs.a(i32 %din0)
call void @llvm.dtu.st.w.p0i8(i32 %res0, i8* %addr_dout, i32 0)
%res1 = call i32 @llvm.dtu.abs.t(i32 %din0, i32 %res0)
call void @llvm.dtu.st.w.p0i8(i32 %res1, i8* %addr_dout, i32 0)
%res2 = call i32 @llvm.dtu.abs.f(i32 %din0, i32 %res0)
call void @llvm.dtu.st.w.p0i8(i32 %res2, i8* %addr_dout, i32 0)
%res3 = call i32 @llvm.dtu.abs.c(i32 %din0, i32 %res0)
call void @llvm.dtu.st.w.p0i8(i32 %res3, i8* %addr_dout, i32 0)
ret void
}

https://llvm.org/docs/CodeGenerator.html#target-independent-code-generation-algorithms

Introduction to SelectionDAGs
The SelectionDAG is a Directed-Acyclic-Graph whose nodes are instances of the SDNode class.

SelectionDAGs contain two different kinds of values:
those that represent data flow and
those that represent control flow dependencies.

Data values are simple edges with an integer or floating point value type.
Control edges are represented as “chain” edges which are of type MVT::Other.

after instruction selection, the machine nodes have their chain after the instruction’s operands, and may be followed by glue nodes.

A SelectionDAG has designated “Entry” and “Root” nodes.
The Entry node is always a marker node with an Opcode of ISD::EntryToken.
The Root node is the final side-effecting node in the token chain.

One important concept for SelectionDAGs is the notion of a “legal” vs. “illegal” DAG.
A legal DAG for a target is one that only uses supported operations and supported types.

SelectionDAG Instruction Selection Process
1.Build initial DAG
2.Optimize SelectionDAG
3.Legalize SelectionDAG Types
4.Optimize SelectionDAG
5.Legalize SelectionDAG Ops
6.Optimize SelectionDAG
7.Select instructions from DAG:This process translates the target-independent input DAG into another DAG of target instructions.
8.SelectionDAG Scheduling and Formation

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-12-16 17:34:47  更:2021-12-16 17:36:16 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 10:33:03-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码