Searched refs:VT1 (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DPassNameParser.h89 static int ValLessThan(const void *VT1, const void *VT2) { argument
91 return std::strcmp(static_cast<const ValType *>(VT1)->Name,
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DSelectionDAG.h357 SDVTList getVTList(EVT VT1, EVT VT2);
358 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
359 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
780 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, EVT VT2);
781 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
783 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
785 SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
788 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
790 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
792 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1,
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/MSP430/
H A DMSP430ISelLowering.h106 virtual bool isTruncateFree(EVT VT1, EVT VT2) const;
117 virtual bool isZExtFree(EVT VT1, EVT VT2) const;
H A DMSP430ISelLowering.cpp996 bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { argument
997 if (!VT1.isInteger() || !VT2.isInteger())
1000 return (VT1.getSizeInBits() > VT2.getSizeInBits());
1008 bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { argument
1010 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16;
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1555 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) { argument
1556 unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1558 Type *Ty1 = VT1.getTypeForEVT(*getContext());
4710 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) { argument
4713 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
4717 Array[0] = VT1;
4724 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) { argument
4727 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
4732 Array[0] = VT1;
4740 SDVTList SelectionDAG::getVTList(EVT VT1, EV argument
4949 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, const SDValue *Ops, unsigned NumOps) argument
4956 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2) argument
4962 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, EVT VT3, const SDValue *Ops, unsigned NumOps) argument
4969 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, EVT VT3, EVT VT4, const SDValue *Ops, unsigned NumOps) argument
4976 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, SDValue Op1) argument
4984 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) argument
4992 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3) argument
5001 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, EVT VT3, SDValue Op1, SDValue Op2, SDValue Op3) argument
5167 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2) argument
5173 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, SDValue Op1) argument
5181 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) argument
5189 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3) argument
5198 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, const SDValue *Ops, unsigned NumOps) argument
5206 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, EVT VT3, SDValue Op1, SDValue Op2) argument
5215 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, EVT VT3, SDValue Op1, SDValue Op2, SDValue Op3) argument
5224 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, EVT VT3, const SDValue *Ops, unsigned NumOps) argument
5232 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, EVT VT3, EVT VT4, const SDValue *Ops, unsigned NumOps) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Hexagon/
H A DHexagonISelLowering.h83 virtual bool isTruncateFree(EVT VT1, EVT VT2) const;
H A DHexagonISelLowering.cpp1461 bool HexagonTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { argument
1462 if (!VT1.isSimple() || !VT2.isSimple()) {
1465 return ((VT1.getSimpleVT() == MVT::i64) && (VT2.getSimpleVT() == MVT::i32));
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/
H A DX86ISelLowering.h605 virtual bool isTruncateFree(EVT VT1, EVT VT2) const;
616 virtual bool isZExtFree(EVT VT1, EVT VT2) const;
625 /// operations of type VT1 to VT2. e.g. on x86, it's profitable to narrow
627 virtual bool isNarrowingProfitable(EVT VT1, EVT VT2) const;
H A DX86ISelLowering.cpp11871 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { argument
11872 if (!VT1.isInteger() || !VT2.isInteger())
11874 unsigned NumBits1 = VT1.getSizeInBits();
11886 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { argument
11888 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
11891 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const { argument
11893 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
/macosx-10.9.5/adv_cmds-153/stty/
H A Dmodes.c255 { "vt1", VT1, 0 },
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dtermios.h193 #define VT1 0x00010000 macro
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Target/
H A DTargetLowering.h584 EVT VT1, RegisterVT; local
586 (void)getVectorTypeBreakdown(Context, VT, VT1,
609 EVT VT1, VT2; local
611 return getVectorTypeBreakdown(Context, VT, VT1, NumIntermediates, VT2);
1692 virtual bool isTruncateFree(EVT /*VT1*/, EVT /*VT2*/) const {
1708 virtual bool isZExtFree(EVT /*VT1*/, EVT /*VT2*/) const {
1733 /// operations of type VT1 to VT2. e.g. on x86, it's profitable to narrow
1735 virtual bool isNarrowingProfitable(EVT /*VT1*/, EVT /*VT2*/) const {
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dstty.c336 { "vt1", BITS, O_FLAG, US, VTDLY, VT1 },

Completed in 323 milliseconds