Home
last modified time | relevance | path

Searched refs:CastKind (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DPNaClTranslator.cpp1916 Ice::InstCast::OpKind &CastKind) { in convertCastOpToIceOp() argument
1924 CastKind = Ice::InstCast::Bitcast; in convertCastOpToIceOp()
1928 CastKind = Ice::InstCast::Trunc; in convertCastOpToIceOp()
1932 CastKind = Ice::InstCast::Zext; in convertCastOpToIceOp()
1936 CastKind = Ice::InstCast::Sext; in convertCastOpToIceOp()
1940 CastKind = Ice::InstCast::Fptoui; in convertCastOpToIceOp()
1944 CastKind = Ice::InstCast::Fptosi; in convertCastOpToIceOp()
1948 CastKind = Ice::InstCast::Uitofp; in convertCastOpToIceOp()
1952 CastKind = Ice::InstCast::Sitofp; in convertCastOpToIceOp()
1956 CastKind = Ice::InstCast::Fptrunc; in convertCastOpToIceOp()
[all …]
DIceInst.h486 static InstCast *create(Cfg *Func, OpKind CastKind, Variable *Dest, in create() argument
489 InstCast(Func, CastKind, Dest, Source); in create()
491 OpKind getCastKind() const { return CastKind; } in getCastKind()
497 InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source);
499 const OpKind CastKind; variable
DIceInst.cpp347 InstCast::InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source) in InstCast() argument
348 : InstHighLevel(Func, Inst::Cast, 1, Dest), CastKind(CastKind) { in InstCast()
DIceTargetLoweringARM32.cpp502 InstCast::OpKind CastKind; in genTargetHelperCallFor() local
509 CastKind = InstCast::Zext; in genTargetHelperCallFor()
513 CastKind = InstCast::Sext; in genTargetHelperCallFor()
517 CastKind = InstCast::Zext; in genTargetHelperCallFor()
521 CastKind = InstCast::Sext; in genTargetHelperCallFor()
537 Context.insert<InstCast>(CastKind, Src0_32, Src0); in genTargetHelperCallFor()
547 if (CastKind == InstCast::Zext) { in genTargetHelperCallFor()
555 Context.insert<InstCast>(CastKind, Src1_32, Src1); in genTargetHelperCallFor()
596 const InstCast::OpKind CastKind = CastInstr->getCastKind(); in genTargetHelperCallFor() local
598 switch (CastKind) { in genTargetHelperCallFor()
[all …]
DIceTargetLoweringMIPS32.cpp422 const InstCast::OpKind CastKind = CastInstr->getCastKind(); in genTargetHelperCallFor() local
436 Context.insert<InstCast>(CastKind, Dst, Op); in genTargetHelperCallFor()
445 switch (CastKind) { in genTargetHelperCallFor()
454 const bool DestIsSigned = CastKind == InstCast::Fptosi; in genTargetHelperCallFor()
483 const bool SourceIsSigned = CastKind == InstCast::Sitofp; in genTargetHelperCallFor()
3091 InstCast::OpKind CastKind; in lowerBr() local
3099 CastKind = InstCast::Sext; in lowerBr()
3102 CastKind = InstCast::Zext; in lowerBr()
3107 lowerCast(InstCast::create(Func, CastKind, Src0R, Src0RT)); in lowerBr()
3108 lowerCast(InstCast::create(Func, CastKind, Src1R, Src1RT)); in lowerBr()
[all …]
DIceConverter.cpp399 Ice::InstCast::OpKind CastKind) { in convertCastInstruction() argument
402 return Ice::InstCast::create(Func.get(), CastKind, Dest, Src); in convertCastInstruction()
DIceTargetLoweringX8664.cpp2382 InstCast::OpKind CastKind = Instr->getCastKind(); in lowerCast() local
2385 switch (CastKind) { in lowerCast()
6207 InstCast::OpKind CastKind = Cast->getCastKind(); in genTargetHelperCallFor() local
6214 switch (CastKind) { in genTargetHelperCallFor()
DIceTargetLoweringX8632.cpp2598 InstCast::OpKind CastKind = Instr->getCastKind(); in lowerCast() local
2601 switch (CastKind) { in lowerCast()
6919 InstCast::OpKind CastKind = Cast->getCastKind(); in genTargetHelperCallFor() local
6926 switch (CastKind) { in genTargetHelperCallFor()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DItaniumDemangle.h1680 const StringView CastKind; variable
1686 : Node(KCastExpr), CastKind(CastKind_), To(To_), From(From_) {} in CastExpr()
1688 template<typename Fn> void match(Fn F) const { F(CastKind, To, From); } in match()
1691 S += CastKind; in printLeft()