Searched defs:VT1 (Results 1 - 10 of 10) sorted by relevance

/external/llvm/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,
/external/kernel-headers/original/asm-arm/
H A Dtermbits.h82 #define VT1 0040000 macro
/external/kernel-headers/original/asm-mips/
H A Dtermbits.h126 #define VT1 0040000 macro
/external/kernel-headers/original/asm-x86/
H A Dtermbits.h106 #define VT1 0040000 macro
/external/llvm/include/llvm/Target/
H A DTargetLowering.h607 EVT VT1; local
610 (void)getVectorTypeBreakdown(Context, VT, VT1,
633 EVT VT1; local
636 return getVectorTypeBreakdown(Context, VT, VT1, NumIntermediates, VT2);
1174 virtual bool isTruncateFree(EVT /*VT1*/, EVT /*VT2*/) const {
1190 virtual bool isZExtFree(EVT /*VT1*/, EVT /*VT2*/) const {
1222 /// operations of type VT1 to VT2. e.g. on x86, it's profitable to narrow
1224 virtual bool isNarrowingProfitable(EVT /*VT1*/, EVT /*VT2*/) const {
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp1045 bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { argument
1046 if (!VT1.isInteger() || !VT2.isInteger())
1049 return (VT1.getSizeInBits() > VT2.getSizeInBits());
1057 bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { argument
1059 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16;
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1513 bool HexagonTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { argument
1514 if (!VT1.isSimple() || !VT2.isSimple()) {
1517 return ((VT1.getSimpleVT() == MVT::i64) && (VT2.getSimpleVT() == MVT::i32));
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp1010 Type *VT1 = getVecTypeForPair(IT1, JT1), local
1018 unsigned VCost = getInstrCost(I->getOpcode(), VT1, VT2);
1026 unsigned VParts1 = TTI->getNumberOfParts(VT1),
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1543 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) { argument
1544 unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1546 Type *Ty1 = VT1.getTypeForEVT(*getContext());
4828 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) { argument
4831 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
4835 Array[0] = VT1;
4842 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) { argument
4845 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
4850 Array[0] = VT1;
4858 SDVTList SelectionDAG::getVTList(EVT VT1, EV argument
5067 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, const SDValue *Ops, unsigned NumOps) argument
5074 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2) argument
5080 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, EVT VT3, const SDValue *Ops, unsigned NumOps) argument
5087 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, EVT VT3, EVT VT4, const SDValue *Ops, unsigned NumOps) argument
5094 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, SDValue Op1) argument
5102 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) argument
5110 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3) argument
5119 SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2, EVT VT3, SDValue Op1, SDValue Op2, SDValue Op3) argument
5285 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2) argument
5291 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, SDValue Op1) argument
5299 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) argument
5307 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3) argument
5316 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, const SDValue *Ops, unsigned NumOps) argument
5324 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, EVT VT3, SDValue Op1, SDValue Op2) argument
5333 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, EVT VT3, SDValue Op1, SDValue Op2, SDValue Op3) argument
5342 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, EVT VT3, const SDValue *Ops, unsigned NumOps) argument
5350 getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2, EVT VT3, EVT VT4, const SDValue *Ops, unsigned NumOps) argument
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12632 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { argument
12633 if (!VT1.isInteger() || !VT2.isInteger())
12635 unsigned NumBits1 = VT1.getSizeInBits();
12645 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { argument
12647 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
12651 EVT VT1 = Val.getValueType(); local
12652 if (isZExtFree(VT1, VT2))
12658 if (!VT1.isSimple() || !VT1.isInteger() ||
12662 switch (VT1
12674 isNarrowingProfitable(EVT VT1, EVT VT2) const argument
[all...]

Completed in 297 milliseconds