HomeSort by relevance Sort by last modified time
    Searched defs:CfgNode (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/subzero/src/
IceCfgNode.h 11 /// \brief Declares the CfgNode class, which represents a single basic block as
25 class CfgNode {
26 CfgNode() = delete;
27 CfgNode(const CfgNode &) = delete;
28 CfgNode &operator=(const CfgNode &) = delete;
31 static CfgNode *create(Cfg *Func, SizeT Number) {
32 return new (Func->allocate<CfgNode>()) CfgNode(Func, Number)
    [all...]
WasmTranslator.cpp 145 /// This class wraps either an Operand or a CfgNode.
160 explicit OperandNode(CfgNode *Node)
174 operator CfgNode *() const {
179 llvm::report_fatal_error("This OperandNode is not a CfgNode");
181 return reinterpret_cast<CfgNode *>(Data & ~NODE_FLAG);
197 CfgNode *toCfgNode() const { return static_cast<CfgNode *>(*this); }
208 Out << "(CfgNode*)" << Op.toCfgNode();
300 Node Loop(CfgNode *Entry) {
321 CfgNode *Control = Controls[i]
    [all...]

Completed in 56 milliseconds