HomeSort by: relevance | last modified time | path
    Searched defs:DataTy (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 41 IntegerType *DataTy;
96 DataTy = Type::getIntNTy(M.getContext(), DataBits);
97 doubleUnderDataTy = ArrayType::get(DataTy, 4);
100 DataTy, // call_site
124 ConstantInt *CallSiteNoC = ConstantInt::get(DataTy, Number);
202 Value *ExnVal = Builder.CreateLoad(DataTy, ExceptionAddr, true, "exn_val");
208 Builder.CreateLoad(DataTy, SelectorAddr, true, "exn_selector_val");
  /src/external/apache2/llvm/dist/llvm/lib/IR/
IRBuilder.cpp 493 Type *DataTy = PtrTy->getElementType();
494 assert(DataTy->isVectorTy() && "Ptr should point to a vector");
497 PassThru = UndefValue::get(DataTy);
498 Type *OverloadedTypes[] = { DataTy, PtrTy };
513 Type *DataTy = PtrTy->getElementType();
514 assert(DataTy->isVectorTy() && "Ptr should point to a vector");
516 Type *OverloadedTypes[] = { DataTy, PtrTy };
547 auto *DataTy = VectorType::get(PtrTy->getElementType(), NumElts);
554 PassThru = UndefValue::get(DataTy);
556 Type *OverloadedTypes[] = {DataTy, PtrsTy}
    [all...]
Verifier.cpp 5025 // DataTy is the overloaded type
5026 Type *DataTy = cast<PointerType>(Ptr->getType())->getElementType();
5027 Assert(DataTy == Call.getType(),
5029 Assert(PassThru->getType() == DataTy,
5032 cast<VectorType>(DataTy)->getElementCount(),
5046 // DataTy is the overloaded type
5047 Type *DataTy = cast<PointerType>(Ptr->getType())->getElementType();
5048 Assert(DataTy == Val->getType(),
5051 cast<VectorType>(DataTy)->getElementCount(),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 916 auto *DataTy = StructType::get(Ctx, makeArrayRef(DataTypes));
931 new GlobalVariable(*M, DataTy, false, Linkage,
932 ConstantStruct::get(DataTy, DataVals), DataVarName);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 2770 EVT DataTy = EVT::getVectorVT(*CurDAG->getContext(), MVT::i64, NumVecs * 2);
2771 SmallVector<EVT, 4> ResultTys = {DataTy, MVT::Other};
2775 CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, Loc, DataTy), 0);
2788 ResultTys = {DataTy, MVT::i32, MVT::Other};
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp 1066 Type *DataTy = CI.getArgOperand(0)->getType();
1070 Info.memVT = memVTFromImageData(DataTy, DMaskLanes);
1072 Info.memVT = EVT::getEVT(DataTy);

Completed in 51 milliseconds