/external/llvm/include/llvm/ADT/ |
TinyPtrVector.h | 25 template <typename EltTy> 28 typedef llvm::SmallVector<EltTy, 4> VecTy; 30 typedef llvm::PointerUnion<EltTy, VecTy *> PtrUnion; 56 if (Val.template is<EltTy>()) { 65 if (RHS.Val.template is<EltTy>()) { 75 RHS.Val = (EltTy)nullptr; 89 if (RHS.Val.template is<EltTy>()) { 98 RHS.Val = (EltTy)nullptr; 106 explicit TinyPtrVector(ArrayRef<EltTy> Elts) 111 operator ArrayRef<EltTy>() const [all...] |
/external/llvm/lib/Transforms/Utils/ |
ModuleUtils.cpp | 32 StructType *EltTy; 37 EltTy = cast<StructType>(ATy->getElementType()); 47 EltTy = StructType::get(IRB.getInt32Ty(), PointerType::getUnqual(FnTy), 56 if (EltTy->getNumElements() >= 3) 59 ConstantStruct::get(EltTy, makeArrayRef(CSVals, EltTy->getNumElements())); 64 ArrayType *AT = ArrayType::get(EltTy, CurrentCtors.size());
|
/external/clang/lib/CodeGen/ |
CodeGenTypes.cpp | 489 llvm::Type *EltTy = ConvertType(cast<ComplexType>(Ty)->getElementType()); 490 ResultType = llvm::StructType::get(EltTy, EltTy, nullptr); 538 llvm::Type *EltTy = ConvertTypeForMem(A->getElementType()); 542 if (!EltTy->isSized()) { 544 EltTy = llvm::Type::getInt8Ty(getLLVMContext()); 547 ResultType = llvm::ArrayType::get(EltTy, A->getSize().getZExtValue());
|
CGCall.cpp | 620 QualType EltTy; 623 ConstantArrayExpansion(QualType EltTy, uint64_t NumElts) 624 : TypeExpansion(TEK_ConstantArray), EltTy(EltTy), NumElts(NumElts) {} 644 QualType EltTy; 646 ComplexExpansion(QualType EltTy) : TypeExpansion(TEK_Complex), EltTy(EltTy) {} 721 return CAExp->NumElts * getExpansionSize(CAExp->EltTy, Context); 743 getExpandedTypes(CAExp->EltTy, TI) [all...] |
CGExprComplex.cpp | 366 llvm::Type *EltTy = 368 llvm::Value *U = llvm::UndefValue::get(EltTy); [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 | 61 Type *EltTy = ATy->getElementType(); 64 unsigned EltLinearOffset = ComputeLinearIndex(EltTy, nullptr, nullptr, 0); 70 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex); 103 Type *EltTy = ATy->getElementType(); 104 uint64_t EltSize = DL.getTypeAllocSize(EltTy); 106 ComputeValueVTs(TLI, DL, EltTy, ValueVTs, Offsets,
|
TargetLoweringBase.cpp | [all...] |
/external/llvm/lib/IR/ |
AutoUpgrade.cpp | 480 Type *EltTy = VecTy->getVectorElementType(); 483 EltTy->getPointerTo()); 484 Value *Load = Builder.CreateLoad(EltTy, Cast); [all...] |
Function.cpp | 808 Type *EltTy = DecodeFixedType(Infos, Tys, Context); 811 return VectorType::get(EltTy, VTy->getNumElements()); 824 Type *EltTy = VTy->getVectorElementType(); 825 return VectorType::get(PointerType::getUnqual(EltTy), [all...] |
ConstantFold.cpp | [all...] |
Constants.cpp | 852 template <typename ItTy, typename EltTy> 853 static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) { [all...] |
/external/llvm/lib/Target/AMDGPU/ |
AMDGPUPromoteAlloca.cpp | 363 Type *EltTy = V->getType()->getPointerElementType(); 364 PointerType *NewTy = PointerType::get(EltTy, AMDGPUAS::LOCAL_ADDRESS);
|
/external/llvm/lib/Target/Mips/ |
MipsSEISelDAGToDAG.cpp | 524 EVT EltTy = N->getValueType(0).getVectorElementType(); 529 if (selectVSplat(N.getNode(), ImmValue, EltTy.getSizeInBits()) && 530 ImmValue.getBitWidth() == EltTy.getSizeInBits()) { 534 Imm = CurDAG->getTargetConstant(ImmValue, SDLoc(N), EltTy); 600 EVT EltTy = N->getValueType(0).getVectorElementType(); 605 if (selectVSplat(N.getNode(), ImmValue, EltTy.getSizeInBits()) && 606 ImmValue.getBitWidth() == EltTy.getSizeInBits()) { 610 Imm = CurDAG->getTargetConstant(Log2, SDLoc(N), EltTy); 631 EVT EltTy = N->getValueType(0).getVectorElementType(); 636 if (selectVSplat(N.getNode(), ImmValue, EltTy.getSizeInBits()) & [all...] |
MipsSEISelLowering.cpp | [all...] |
/external/llvm/lib/Analysis/ |
ConstantFolding.cpp | 362 Type *EltTy = C->getType()->getSequentialElementType(); 363 uint64_t EltSize = DL.getTypeAllocSize(EltTy); [all...] |
/external/llvm/lib/TableGen/ |
Record.cpp | 470 RecTy *EltTy) { 472 ID.AddPointer(EltTy); 478 ListInit *ListInit::get(ArrayRef<Init *> Range, RecTy *EltTy) { 483 ProfileListInit(ID, Range, EltTy); 489 ListInit *I = new ListInit(Range, EltTy); 496 RecTy *EltTy = cast<ListRecTy>(getType())->getElementType(); 498 ProfileListInit(ID, Values, EltTy); [all...] |
TGParser.cpp | [all...] |
/frameworks/compile/slang/BitWriter_3_2/ |
BitcodeWriter.cpp | 292 // STRUCT: [ispacked, eltty x N] 319 // ARRAY: [numelts, eltty] 328 // VECTOR [numelts, eltty] [all...] |
/external/llvm/lib/Bitcode/Writer/ |
BitcodeWriter.cpp | 447 // STRUCT: [ispacked, eltty x N] 474 // ARRAY: [numelts, eltty] 483 // VECTOR [numelts, eltty] [all...] |
/external/llvm/lib/Linker/ |
IRMover.cpp | 850 Type *EltTy = cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType())) 857 if (cast<StructType>(EltTy)->getNumElements() == 3) 865 auto &ST = *cast<StructType>(EltTy); [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64ISelDAGToDAG.cpp | [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCalls.cpp | [all...] |
/external/llvm/lib/Transforms/Scalar/ |
ScalarReplAggregates.cpp | [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
BitcodeReader.cpp | [all...] |