HomeSort by relevance Sort by last modified time
    Searched defs:Elt (Results 1 - 25 of 27) sorted by null

1 2

  /external/llvm/lib/Transforms/IPO/
InlineSimple.cpp 107 const Constant *Elt = InitList->getOperand(i);
109 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(Elt))
111 Elt = CE->getOperand(0);
114 if (const Function *F = dyn_cast<Function>(Elt))
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineCasts.cpp     [all...]
InstCombineCompares.cpp 276 Constant *Elt = Init->getOperand(i);
280 Elt = ConstantExpr::getExtractValue(Elt, LaterIndices);
283 if (AndCst) Elt = ConstantExpr::getAnd(Elt, AndCst);
286 Constant *C = ConstantFoldCompareInstOperands(ICI.getPredicate(), Elt,
    [all...]
InstructionCombining.cpp 768 unsigned Elt = SL->getElementContainingOffset(Offset);
770 Elt));
772 Offset -= SL->getElementOffset(Elt);
773 Ty = STy->getElementType(Elt);
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 131 Constant *Elt = Zero;
139 Src = ConstantExpr::getZExt(Src, Elt->getType());
147 Elt = ConstantExpr::getOr(Elt, Src);
149 Result.push_back(Elt);
166 Constant *Elt = ConstantExpr::getLShr(Src,
171 Result.push_back(ConstantExpr::getTrunc(Elt, DstEltTy));
    [all...]
ValueTracking.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 635 llvm::Constant *Elt = cast<llvm::Constant>(Init->getOperand(i));
636 if (!canEmitInitWithFewStoresAfterMemset(Elt, NumStores))
669 llvm::Constant *Elt = cast<llvm::Constant>(Init->getOperand(i));
670 if (Elt->isNullValue()) continue;
673 emitStoresForInitAfterMemset(Elt, Builder.CreateConstGEP2_32(Loc, 0, i),
    [all...]
CGExprComplex.cpp 425 llvm::Value *Elt = CGF.EmitScalarExpr(Op);
429 Elt = CGF.EmitScalarConversion(Elt, Op->getType(), DestTy);
432 return ComplexPairTy(Elt, llvm::Constant::getNullValue(Elt->getType()));
CGExprConstant.cpp     [all...]
CGBuiltin.cpp     [all...]
CGCall.cpp 318 for (uint64_t Elt = 0; Elt < NumElts; ++Elt)
349 for (unsigned Elt = 0; Elt < NumElts; ++Elt) {
350 llvm::Value *EltAddr = Builder.CreateConstGEP2_32(Addr, 0, Elt);
392 // If the first elt is at least as large as what we're looking for, or if the
517 llvm::Value *Elt = CGF.Builder.CreateExtractValue(Val, i);
518 llvm::StoreInst *SI = CGF.Builder.CreateStore(Elt, EltPtr
    [all...]
CGExpr.cpp     [all...]
CGExprScalar.cpp 604 llvm::Value *Elt = EmitScalarConversion(Src, SrcType, EltTy);
609 UnV = Builder.CreateInsertElement(UnV, Elt, Idx);
760 // for each elt
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 778 Constant *Elt,
786 if (isa<UndefValue>(Elt))
796 (idxVal == i) ? Elt : UndefValue::get(Elt->getType());
804 if (Elt->isNullValue())
    [all...]
Constants.cpp     [all...]
Instructions.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 849 if (Type *Elt = getTypeByIDOrNull(Record[i]))
850 EltTys.push_back(Elt);
881 if (Type *Elt = getTypeByIDOrNull(Record[i]))
882 ArgTys.push_back(Elt);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 693 unsigned Elt = 0;
696 Elt = Offset/EltSize;
697 assert(EltSize*Elt == Offset && "Invalid modulus in validity checking");
700 Value *V = Builder.CreateExtractElement(FromVal, Builder.getInt32(Elt));
712 Value *Elt = ConvertScalar_ExtractValue(FromVal, ST->getElementType(i),
715 Res = Builder.CreateInsertValue(Res, Elt, i);
724 Value *Elt = ConvertScalar_ExtractValue(FromVal, AT->getElementType(),
726 Res = Builder.CreateInsertValue(Res, Elt, i);
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 824 if (Type *Elt = getTypeByIDOrNull(Record[i]))
825 EltTys.push_back(Elt);
856 if (Type *Elt = getTypeByIDOrNull(Record[i]))
857 ArgTys.push_back(Elt);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 346 SDValue Elt = GetScalarizedVector(N->getOperand(0));
348 N->getValueType(0), Elt);
645 SDValue Elt = N->getOperand(1);
655 Lo.getValueType(), Lo, Elt, Idx);
657 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, Hi.getValueType(), Hi, Elt,
675 Store = DAG.getTruncStore(Store, dl, Elt, EltPtr, MachinePointerInfo(), EltVT,
    [all...]
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 1014 milliseconds

1 2