Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:BITCAST

133          !(I->getOpcode() == Instruction::BitCast ||
770 // If the bitcast doesn't change the type, just use the operand value.
779 // Bitcasts of other values become reg-reg copies or BITCAST operators.
796 // First, try to perform the bitcast by inserting a reg-reg copy.
809 // If the reg-reg copy failed, select a BITCAST opcode.
811 ResultReg = FastEmit_r(SrcVT, DstVT, ISD::BITCAST, Op0, Op0IsKill);
910 // Bitcast the value to integer, twiddle the sign bit with xor,
911 // and then bitcast it back to floating-point.
918 ISD::BITCAST, OpReg, OpRegIsKill);
930 ISD::BITCAST, IntResultReg, /*Kill=*/true);
1055 case Instruction::BitCast: