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

  /external/swiftshader/third_party/subzero/src/
IceInst.cpp 357 InstCast::InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source)
795 const char *InstCast::getCastName(InstCast::OpKind Kind) {
796 if (Kind < InstCast::OpKind::_num)
798 llvm_unreachable("Invalid InstCast::OpKind");
802 void InstCast::dump(const Cfg *Func) const {
    [all...]
IceInst.h 459 class InstCast : public InstHighLevel {
460 InstCast() = delete;
461 InstCast(const InstCast &) = delete;
462 InstCast &operator=(const InstCast &) = delete;
474 static InstCast *create(Cfg *Func, OpKind CastKind, Variable *Dest,
476 return new (Func->allocate<InstCast>())
477 InstCast(Func, CastKind, Dest, Source);
485 InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source)
    [all...]

Completed in 75 milliseconds