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

1 2

  /external/llvm/include/llvm/ADT/
TinyPtrVector.h 24 template <typename EltTy>
27 typedef llvm::SmallVector<EltTy, 4> VecTy;
28 llvm::PointerUnion<EltTy, VecTy*> Val;
41 operator ArrayRef<EltTy>() const {
43 return ArrayRef<EltTy>();
44 if (Val.template is<EltTy>())
61 if (Val.template is<EltTy>())
66 typedef const EltTy *const_iterator;
67 typedef EltTy *iterator;
73 if (Val.template is<EltTy>())
    [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 57 Type *EltTy = ATy->getElementType();
60 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex);
61 CurIndex = ComputeLinearIndex(EltTy, 0, 0, CurIndex);
93 Type *EltTy = ATy->getElementType();
94 uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy);
96 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 380 llvm::Type *EltTy = ConvertType(cast<ComplexType>(Ty)->getElementType());
381 ResultType = llvm::StructType::get(EltTy, EltTy, NULL);
429 llvm::Type *EltTy = ConvertTypeForMem(A->getElementType());
433 if (!EltTy->isSized()) {
435 EltTy = llvm::Type::getInt8Ty(getLLVMContext());
438 ResultType = llvm::ArrayType::get(EltTy, A->getSize().getZExtValue());
CGExprComplex.cpp 328 llvm::Type *EltTy =
330 llvm::Value *U = llvm::UndefValue::get(EltTy);
768 llvm::Type *EltTy =
770 llvm::Value *U = llvm::UndefValue::get(EltTy);
CGBuiltin.cpp     [all...]
CGCall.cpp 455 llvm::Type *EltTy = ConvertType(CT->getElementType());
456 expandedTypes.push_back(EltTy);
457 expandedTypes.push_back(EltTy);
470 QualType EltTy = AT->getElementType();
473 LValue LV = MakeAddrLValue(EltAddr, EltTy);
474 AI = ExpandTypeFromArgs(EltTy, LV, AI);
512 QualType EltTy = CT->getElementType();
514 EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(RealAddr, EltTy));
516 EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(ImagAddr, EltTy));
    [all...]
  /external/llvm/include/llvm/
DerivedTypes.h 382 Type *EltTy = IntegerType::get(VTy->getContext(), EltBits);
383 return VectorType::get(EltTy, VTy->getNumElements());
392 Type *EltTy = IntegerType::get(VTy->getContext(), EltBits * 2);
393 return VectorType::get(EltTy, VTy->getNumElements());
404 Type *EltTy = IntegerType::get(VTy->getContext(), EltBits / 2);
405 return VectorType::get(EltTy, VTy->getNumElements());
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 352 Type *EltTy = cast<SequentialType>(C->getType())->getElementType();
353 uint64_t EltSize = TD.getTypeAllocSize(EltTy);
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 659 Type *EltTy = DstTy->getElementType();
662 if (EltTy != SrcTy->getElementType())
680 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 782 Type *EltTy = V1->getType()->getVectorElementType();
786 return UndefValue::get(VectorType::get(EltTy, MaskNumElts));
798 Result.push_back(UndefValue::get(EltTy));
803 InElt = UndefValue::get(EltTy);
    [all...]
Constants.cpp 668 template <typename ItTy, typename EltTy>
669 static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
    [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 307 // STRUCT: [ispacked, eltty x N]
334 // ARRAY: [numelts, eltty]
343 // VECTOR [numelts, eltty]
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp     [all...]
Record.cpp 586 RecTy *EltTy) {
588 ID.AddPointer(EltTy);
597 ListInit *ListInit::get(ArrayRef<Init *> Range, RecTy *EltTy) {
604 ProfileListInit(ID, Range, EltTy);
610 ListInit *I = new ListInit(Range, EltTy);
618 RecTy *EltTy = ListType->getElementType();
620 ProfileListInit(ID, Values, EltTy);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
InstCombineCompares.cpp 228 Type *EltTy = Init->getType()->getArrayElementType();
236 if (StructType *STy = dyn_cast<StructType>(EltTy))
237 EltTy = STy->getElementType(IdxVal);
238 else if (ArrayType *ATy = dyn_cast<ArrayType>(EltTy)) {
240 EltTy = ATy->getElementType();
    [all...]
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 62 typedef std::pair<BasicBlock*, unsigned> EltTy;
63 static inline EltTy getEmptyKey() {
64 return EltTy(reinterpret_cast<BasicBlock*>(-1), ~0U);
66 static inline EltTy getTombstoneKey() {
67 return EltTy(reinterpret_cast<BasicBlock*>(-2), 0U);
73 static bool isEqual(const EltTy &LHS, const EltTy &RHS) {
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 361 // STRUCT: [ispacked, eltty x N]
372 // ARRAY: [numelts, eltty]
381 // VECTOR [numelts, eltty]
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 300 // STRUCT: [ispacked, eltty x N]
327 // ARRAY: [numelts, eltty]
336 // VECTOR [numelts, eltty]
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 662 case bitc::TYPE_CODE_STRUCT_ANON: { // STRUCT: [ispacked, eltty x N]
682 case bitc::TYPE_CODE_STRUCT_NAMED: { // STRUCT: [ispacked, eltty x N]
729 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
737 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 659 MVT EltTy = VT.getVectorElementType();
672 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
679 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
681 NewVT = EltTy;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 667 case bitc::TYPE_CODE_STRUCT_ANON: { // STRUCT: [ispacked, eltty x N]
687 case bitc::TYPE_CODE_STRUCT_NAMED: { // STRUCT: [ispacked, eltty x N]
734 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
742 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
921 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
927 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]

Completed in 366 milliseconds

1 2