HomeSort by relevance Sort by last modified time
    Searched refs:isTypeLegal (Results 1 - 25 of 28) sorted by null

1 2

  /external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 98 if (TLI->isTypeLegal(VT)
136 if (TLI->isTypeLegal(VT)
336 if (TLI->isTypeLegal(VT)
348 if (TLI->isTypeLegal(VT) && TLI->getRegClassFor(VT)
490 if (TLI->isTypeLegal(VT)) {
501 if (TLI->isTypeLegal(VT)) {
FastISel.cpp 153 if (!TLI.isTypeLegal(VT)) {
371 if (!TLI.isTypeLegal(VT)) {
732 if (!TLI.isTypeLegal(DstVT))
736 if (!TLI.isTypeLegal(SrcVT))
771 !TLI.isTypeLegal(SrcEVT) || !TLI.isTypeLegal(DstEVT))
902 if (!TLI.isTypeLegal(IntVT))
    [all...]
LegalizeTypesGeneric.cpp 102 while (!isTypeLegal(NVT)) {
112 if (isTypeLegal(NVT)) {
325 if (isTypeLegal(NVT)) {
458 assert(isTypeLegal(Ptr.getValueType()) && "Pointers must be legal!");
LegalizeTypes.cpp 129 } else if (isTypeLegal(Res.getValueType()) || IgnoreNodeResults(I)) {
409 if (!isTypeLegal(I->getValueType(i))) {
417 !isTypeLegal(I->getOperand(i).getValueType())) {
    [all...]
LegalizeVectorTypes.cpp     [all...]
LegalizeDAG.cpp 314 if (TLI.isTypeLegal(intVT)) {
434 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
657 TLI.isTypeLegal(MVT::i32)) {
667 if (TLI.isTypeLegal(MVT::i64)) {
674 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
    [all...]
DAGCombiner.cpp 332 /// isTypeLegal - This method returns true if we are running before type
334 bool isTypeLegal(const EVT &VT) {
336 return TLI.isTypeLegal(VT);
    [all...]
TargetLowering.cpp     [all...]
InstrEmitter.cpp 105 if (TLI->isTypeLegal(VT))
    [all...]
LegalizeTypes.h 71 /// isTypeLegal - Return true if this type is legal on this target.
72 bool isTypeLegal(EVT VT) const {
    [all...]
SelectionDAGBuilder.cpp 302 TLI.isTypeLegal(ValueVT))
350 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
629 if (!TLI.isTypeLegal(RegisterVT))
    [all...]
LegalizeIntegerTypes.cpp 517 if (!TLI.isTypeLegal(SVT))
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 234 virtual bool isTypeLegal(Type *Ty) const;
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp 761 assert(isTypeLegal(VT));
795 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
803 if (!TLI->isTypeLegal(NewVT))
828 if (isTypeLegal(*I))
    [all...]
BasicTargetTransformInfo.cpp 75 virtual bool isTypeLegal(Type *Ty) const;
144 bool BasicTTI::isTypeLegal(Type *Ty) const {
146 return TLI->isTypeLegal(T);
Analysis.cpp 232 TLI.isTypeLegal(EVT::getEVT(Op->getType())) &&
233 TLI.isTypeLegal(EVT::getEVT(I->getType())))
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 115 bool TargetTransformInfo::isTypeLegal(Type *Ty) const {
116 return PrevTTI->isTypeLegal(Ty);
462 bool isTypeLegal(Type *Ty) const {
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 142 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
152 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
172 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
700 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
845 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
934 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 253 /// isTypeLegal - Return true if the target has native support for the
256 bool isTypeLegal(EVT VT) const {
407 return (VT == MVT::Other || isTypeLegal(VT)) &&
416 return (VT == MVT::Other || isTypeLegal(VT)) &&
425 return (!isTypeLegal(VT) || getOperationAction(Op, VT) == Expand);
431 return (VT == MVT::Other || isTypeLegal(VT)) &&
466 return isTypeLegal(ValVT) && MemVT.isSimple() &&
556 } while (!isTypeLegal(NVT) ||
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 178 bool isTypeLegal(Type *Ty, MVT &VT);
767 bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
776 return TLI.isTypeLegal(VT);
780 if (isTypeLegal(Ty, VT)) return true;
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 1238 milliseconds

1 2