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

  /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 132 if (!TLI.isTypeLegal(VT)) {
350 if (!TLI.isTypeLegal(VT)) {
704 if (!TLI.isTypeLegal(DstVT))
708 if (!TLI.isTypeLegal(SrcVT))
745 !TLI.isTypeLegal(SrcVT) || !TLI.isTypeLegal(DstVT))
874 if (!TLI.isTypeLegal(IntVT))
910 if (!TLI.isTypeLegal(VT) && VT != MVT::i1)
    [all...]
TargetLowering.cpp 633 assert(isTypeLegal(VT));
667 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
675 if (!TLI->isTypeLegal(NewVT))
700 if (isTypeLegal(*I))
771 if (isTypeLegal(IVT)) {
781 if (!isTypeLegal(MVT::ppcf128)) {
790 if (!isTypeLegal(MVT::f64)) {
799 if (!isTypeLegal(MVT::f32)) {
800 if (isTypeLegal(MVT::f64)) {
817 if (isTypeLegal(VT)) continue
    [all...]
LegalizeTypesGeneric.cpp 99 if (isTypeLegal(NVT)) {
291 if (isTypeLegal(NVT)) {
424 assert(isTypeLegal(Ptr.getValueType()) && "Pointers must be legal!");
LegalizeDAG.cpp 311 if (TLI.isTypeLegal(intVT)) {
431 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
654 TLI.isTypeLegal(MVT::i32)) {
664 if (TLI.isTypeLegal(MVT::i64)) {
671 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
    [all...]
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...]
DAGCombiner.cpp 319 /// isTypeLegal - This method returns true if we are running before type
321 bool isTypeLegal(const EVT &VT) {
323 return TLI.isTypeLegal(VT);
    [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 299 TLI.isTypeLegal(ValueVT))
339 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
606 if (!TLI.isTypeLegal(RegisterVT))
    [all...]
LegalizeIntegerTypes.cpp 517 if (!TLI.isTypeLegal(SVT))
    [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 140 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
150 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
170 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
699 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
825 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
914 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 247 /// isTypeLegal - Return true if the target has native support for the
250 bool isTypeLegal(EVT VT) const {
401 return (VT == MVT::Other || isTypeLegal(VT)) &&
409 return (VT == MVT::Other || isTypeLegal(VT)) &&
445 return isTypeLegal(ValVT) && MemVT.isSimple() &&
533 } while (!isTypeLegal(NVT) ||
    [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 234 TLI.isTypeLegal(EVT::getEVT(Op->getType())) &&
235 TLI.isTypeLegal(EVT::getEVT(I->getType())))
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 177 bool isTypeLegal(Type *Ty, MVT &VT);
755 bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
764 return TLI.isTypeLegal(VT);
768 if (isTypeLegal(Ty, VT)) return true;
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp     [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp 414 if (!isTypeLegal(VT)) continue;
    [all...]

Completed in 2513 milliseconds