Searched refs:selectCast (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 1243 bool FastISel::selectCast(const User *I, unsigned Opcode) { in selectCast() function in FastISel 1618 return selectCast(I, ISD::FP_TO_SINT); in selectOperator() 1620 return selectCast(I, ISD::ZERO_EXTEND); in selectOperator() 1622 return selectCast(I, ISD::SIGN_EXTEND); in selectOperator() 1624 return selectCast(I, ISD::TRUNCATE); in selectOperator() 1626 return selectCast(I, ISD::SINT_TO_FP); in selectOperator() 1633 return selectCast(I, ISD::ZERO_EXTEND); in selectOperator() 1635 return selectCast(I, ISD::TRUNCATE); in selectOperator()
|
/external/llvm/include/llvm/CodeGen/ |
D | FastISel.h | 534 bool selectCast(const User *I, unsigned Opcode);
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64FastISel.cpp | 4913 if (!selectCast(I, ISD::FP_TO_SINT)) in fastSelectInstruction() 4922 if (!selectCast(I, ISD::TRUNCATE)) in fastSelectInstruction() 4930 if (!selectCast(I, ISD::SINT_TO_FP)) in fastSelectInstruction()
|