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

1 2

  /external/llvm/include/llvm/ADT/
TinyPtrVector.h 27 template <typename EltTy>
30 typedef llvm::SmallVector<EltTy, 4> VecTy;
33 llvm::PointerUnion<EltTy, VecTy*> Val;
55 if (Val.template is<EltTy>()) {
64 if (RHS.Val.template is<EltTy>()) {
75 RHS.Val = (EltTy)0;
89 if (RHS.Val.template is<EltTy>()) {
98 RHS.Val = (EltTy)0;
104 operator ArrayRef<EltTy>() const {
106 return ArrayRef<EltTy>();
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 403 llvm::Type *EltTy = ConvertType(cast<ComplexType>(Ty)->getElementType());
404 ResultType = llvm::StructType::get(EltTy, EltTy, NULL);
452 llvm::Type *EltTy = ConvertTypeForMem(A->getElementType());
456 if (!EltTy->isSized()) {
458 EltTy = llvm::Type::getInt8Ty(getLLVMContext());
461 ResultType = llvm::ArrayType::get(EltTy, A->getSize().getZExtValue());
CGExprComplex.cpp 356 llvm::Type *EltTy =
358 llvm::Value *U = llvm::UndefValue::get(EltTy);
814 llvm::Type *EltTy =
816 llvm::Value *U = llvm::UndefValue::get(EltTy);
    [all...]
CGBuiltin.cpp     [all...]
CGCall.cpp 545 llvm::Type *EltTy = ConvertType(CT->getElementType());
546 expandedTypes.push_back(EltTy);
547 expandedTypes.push_back(EltTy);
560 QualType EltTy = AT->getElementType();
563 LValue LV = MakeAddrLValue(EltAddr, EltTy);
564 AI = ExpandTypeFromArgs(EltTy, LV, AI);
602 QualType EltTy = CT->getElementType();
604 EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(RealAddr, EltTy));
606 EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(ImagAddr, EltTy));
    [all...]
CGDebugInfo.cpp 705 llvm::DIType EltTy, DescTy;
718 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
725 DescTy = DBuilder.createPointerType(EltTy, Size);
748 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
752 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
    [all...]
  /external/llvm/include/llvm/IR/
DerivedTypes.h 377 Type *EltTy = IntegerType::get(VTy->getContext(), EltBits);
378 return VectorType::get(EltTy, VTy->getNumElements());
387 Type *EltTy = IntegerType::get(VTy->getContext(), EltBits * 2);
388 return VectorType::get(EltTy, VTy->getNumElements());
399 Type *EltTy = IntegerType::get(VTy->getContext(), EltBits / 2);
400 return VectorType::get(EltTy, VTy->getNumElements());
  /external/llvm/lib/CodeGen/
Analysis.cpp 55 Type *EltTy = ATy->getElementType();
58 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex);
59 CurIndex = ComputeLinearIndex(EltTy, 0, 0, CurIndex);
91 Type *EltTy = ATy->getElementType();
92 uint64_t EltSize = TLI.getDataLayout()->getTypeAllocSize(EltTy);
94 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
TargetLoweringBase.cpp 785 MVT EltTy = VT.getVectorElementType();
798 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
805 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
807 NewVT = EltTy;
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 341 Type *EltTy = cast<SequentialType>(C->getType())->getElementType();
342 uint64_t EltSize = TD.getTypeAllocSize(EltTy);
    [all...]
ValueTracking.cpp 318 Type *EltTy = cast<PointerType>(A->getType())->getElementType();
319 if (EltTy->isSized())
320 Align = TD->getABITypeAlignment(EltTy);
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 788 Type *EltTy = V1->getType()->getVectorElementType();
792 return UndefValue::get(VectorType::get(EltTy, MaskNumElts));
804 Result.push_back(UndefValue::get(EltTy));
    [all...]
Constants.cpp 725 template <typename ItTy, typename EltTy>
726 static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 694 Type *EltTy = DstTy->getElementType();
697 if (EltTy != SrcTy->getElementType())
715 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 599 RecTy *EltTy) {
601 ID.AddPointer(EltTy);
610 ListInit *ListInit::get(ArrayRef<Init *> Range, RecTy *EltTy) {
617 ProfileListInit(ID, Range, EltTy);
623 ListInit *I = new ListInit(Range, EltTy);
631 RecTy *EltTy = ListType->getElementType();
633 ProfileListInit(ID, Values, EltTy);
    [all...]
TGParser.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
InstCombineCompares.cpp 254 Type *EltTy = Init->getType()->getArrayElementType();
262 if (StructType *STy = dyn_cast<StructType>(EltTy))
263 EltTy = STy->getElementType(IdxVal);
264 else if (ArrayType *ATy = dyn_cast<ArrayType>(EltTy)) {
266 EltTy = ATy->getElementType();
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 297 // STRUCT: [ispacked, eltty x N]
324 // ARRAY: [numelts, eltty]
333 // VECTOR [numelts, eltty]
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 249 void addComplexUnchecked(QualType EltTy, bool Imag) {
256 MostDerivedType = EltTy;
857 void addComplex(EvalInfo &Info, const Expr *E, QualType EltTy, bool Imag) {
859 Designator.addComplexUnchecked(EltTy, Imag);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 845 case bitc::TYPE_CODE_STRUCT_ANON: { // STRUCT: [ispacked, eltty x N]
865 case bitc::TYPE_CODE_STRUCT_NAMED: { // STRUCT: [ispacked, eltty x N]
912 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
920 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 424 // STRUCT: [ispacked, eltty x N]
451 // ARRAY: [numelts, eltty]
460 // VECTOR [numelts, eltty]
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 648 case bitc::TYPE_CODE_STRUCT_ANON: { // STRUCT: [ispacked, eltty x N]
668 case bitc::TYPE_CODE_STRUCT_NAMED: { // STRUCT: [ispacked, eltty x N]
715 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
723 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
902 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
908 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]

Completed in 556 milliseconds

1 2