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

  /external/swiftshader/third_party/subzero/src/
IceInst.cpp 238 bool IsPhi = llvm::isa<InstPhi>(this);
397 InstPhi::InstPhi(Cfg *Func, SizeT MaxSrcs, Variable *Dest)
406 void InstPhi::addArgument(Operand *Source, CfgNode *Label) {
414 Operand *InstPhi::getOperandForTarget(CfgNode *Target) const {
425 void InstPhi::clearOperandForTarget(CfgNode *Target) {
439 void InstPhi::livenessPhiOperand(LivenessBV &Live, CfgNode *Target,
462 Inst *InstPhi::lower(Cfg *Func) {
907 void InstPhi::dump(const Cfg *Func) const {
    [all...]
IceInst.h 660 class InstPhi : public InstHighLevel {
661 InstPhi() = delete;
662 InstPhi(const InstPhi &) = delete;
663 InstPhi &operator=(const InstPhi &) = delete;
666 static InstPhi *create(Cfg *Func, SizeT MaxSrcs, Variable *Dest) {
667 return new (Func->allocate<InstPhi>()) InstPhi(Func, MaxSrcs, Dest);
682 InstPhi(Cfg *Func, SizeT MaxSrcs, Variable *Dest)
    [all...]

Completed in 64 milliseconds