Searched refs:ValTy (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowValues.h48 typedef typename ValueTypes::ValTy ValTy; typedef in class:clang::DataflowValues
51 typedef llvm::DenseMap<ProgramPoint, ValTy> EdgeDataMapTy;
52 typedef llvm::DenseMap<const CFGBlock*, ValTy> BlockDataMapTy;
53 typedef llvm::DenseMap<const Stmt*, ValTy> StmtDataMapTy;
87 ValTy& getEdgeData(const BlockEdge &E) {
93 const ValTy& getEdgeData(const BlockEdge &E) const {
101 ValTy& getBlockData(const CFGBlock *B) {
107 const ValTy& getBlockData(const CFGBlock *B) const {
117 ValTy
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DPointerUnion.h86 ValTy;
89 ValTy Val;
183 V.Val = ValTy::getFromOpaqueValue(VP);
218 typename PointerUnion<PT1, PT2>::ValTy>::NumLowBitsAvailable
227 typedef PointerUnion<InnerUnion, PT3> ValTy; typedef in class:llvm::PointerUnion3
230 ValTy Val;
233 ValTy Val;
234 IsInnerUnion(ValTy val) : Val(val) {}
245 ValTy Val;
246 IsPT3(ValTy va
349 typedef PointerUnion<InnerUnion1, InnerUnion2> ValTy; typedef in class:llvm::PointerUnion4
[all...]
H A DScopedHashTable.h153 typedef ScopedHashTableVal<K, V> ValTy; typedef in class:llvm::ScopedHashTable
154 DenseMap<K, ValTy*, KInfo> TopLevelMap;
180 typename DenseMap<K, ValTy*, KInfo>::iterator I = TopLevelMap.find(Key);
196 typename DenseMap<K, ValTy*, KInfo>::iterator I =
212 KeyEntry = ValTy::Create(S->getLastValInScope(), KeyEntry, Key, Val,
/freebsd-11.0-release/contrib/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.cpp167 EVT ValTy = Addr.getValueType(); local
169 Alias = CurDAG->getTargetConstant(0, DL, ValTy);
173 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
174 Offset = CurDAG->getTargetConstant(0, DL, ValTy);
197 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
203 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, ValTy);
239 Offset = CurDAG->getTargetConstant(0, DL, ValTy);
H A DMipsSEISelDAGToDAG.cpp282 EVT ValTy = Addr.getValueType(); local
284 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
285 Offset = CurDAG->getTargetConstant(0, SDLoc(Addr), ValTy);
298 EVT ValTy = Addr.getValueType(); local
303 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
308 ValTy);
H A DMipsISelLowering.cpp717 EVT ValTy = N->getValueType(0);
718 if (SMPos != 0 || Pos + SMSize > ValTy.getSizeInBits())
722 return DAG.getNode(MipsISD::Ext, DL, ValTy,
773 EVT ValTy = N->getValueType(0); local
774 if ((Shamt != SMPos0) || (SMPos0 + SMSize0 > ValTy.getSizeInBits()))
778 return DAG.getNode(MipsISD::Ins, DL, ValTy, Shl.getOperand(0),
803 EVT ValTy = N->getValueType(0);
806 SDValue Add1 = DAG.getNode(ISD::ADD, DL, ValTy, N->getOperand(0),
808 return DAG.getNode(ISD::ADD, DL, ValTy, Add1, Lo);
2319 EVT ValTy local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp97 int AMDGPUTTIImpl::getVectorInstrCost(unsigned Opcode, Type *ValTy, argument
104 return BaseT::getVectorInstrCost(Opcode, ValTy, Index);
H A DAMDGPUTargetTransformInfo.h66 int getVectorInstrCost(unsigned Opcode, Type *ValTy, unsigned Index);
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DCallSite.h42 typename ValTy = const Value,
56 explicit CallSiteBase(ValTy *II) { *this = get(II); }
64 static CallSiteBase get(ValTy *V) {
93 ValTy *getCalledValue() const {
158 ValTy *getArgument(unsigned ArgNo) const {
272 ValTy *getArgOperand(unsigned i) const {
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp243 int ARMTTIImpl::getVectorInstrCost(unsigned Opcode, Type *ValTy, argument
249 ValTy->isVectorTy() &&
250 ValTy->getScalarSizeInBits() <= 32)
257 if (ValTy->getVectorElementType()->isIntegerTy())
262 if (ValTy->isVectorTy() &&
263 ValTy->getScalarSizeInBits() <= 32)
264 return std::max(BaseT::getVectorInstrCost(Opcode, ValTy, Index), 2U);
267 return BaseT::getVectorInstrCost(Opcode, ValTy, Index);
270 int ARMTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) { argument
274 if (ST->hasNEON() && ValTy
[all...]
H A DARMTargetTransformInfo.h101 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DCostModel.cpp423 Type *ValTy = I->getOperand(0)->getType(); local
424 return TTI->getCmpSelInstrCost(I->getOpcode(), ValTy);
428 Type *ValTy = SI->getValueOperand()->getType(); local
429 return TTI->getMemoryOpCost(I->getOpcode(), ValTy,
H A DTargetTransformInfo.cpp252 int TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, argument
254 int Cost = TTIImpl->getCmpSelInstrCost(Opcode, ValTy, CondTy);
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h113 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
H A DAArch64TargetTransformInfo.cpp380 int AArch64TTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, argument
386 if (ValTy->isVectorTy() && ISD == ISD::SELECT) {
400 EVT SelValTy = TLI->getValueType(DL, ValTy);
408 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy);
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h73 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h82 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
H A DPPCTargetTransformInfo.cpp290 int PPCTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) { argument
291 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy);
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h436 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) { argument
447 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, ValTy);
449 if (!(ValTy->isVectorTy() && !LT.second.isVector()) &&
457 if (ValTy->isVectorTy()) {
458 unsigned Num = ValTy->getVectorNumElements();
462 Opcode, ValTy->getScalarType(), CondTy);
467 return getScalarizationOverhead(ValTy, true, false) + Num * Cost;
H A DDIE.h354 DIEBlock *, DIELoc *, DIELocList> ValTy; typedef in class:llvm::DIEValue
355 static_assert(sizeof(ValTy) <= sizeof(uint64_t) ||
356 sizeof(ValTy) <= sizeof(void *),
360 ValTy Val;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGAtomic.cpp650 bool UseOptimizedLibcall, llvm::Value *Val, QualType ValTy,
654 CharUnits Align = CGF.getContext().getTypeAlignInChars(ValTy);
656 ValTy =
662 CGF.getContext().getPointerType(ValTy),
665 Args.add(RValue::get(Val), ValTy); local
1219 auto *ValTy = AsValue local
1222 if (ValTy->isIntegerTy()) {
1223 assert(IntVal->getType() == ValTy && "Different integer types.");
1225 } else if (ValTy->isPointerTy())
1226 return RValue::get(CGF.Builder.CreateIntToPtr(IntVal, ValTy));
649 AddDirectArgument(CodeGenFunction &CGF, CallArgList &Args, bool UseOptimizedLibcall, llvm::Value *Val, QualType ValTy, SourceLocation Loc, CharUnits SizeInChars) argument
[all...]
H A DCGExprConstant.cpp53 const APValue &Value, QualType ValTy);
541 llvm::Type *ValTy = CGM.getTypes().ConvertType(Ty); local
542 if (llvm::StructType *ValSTy = dyn_cast<llvm::StructType>(ValTy)) {
580 QualType ValTy) {
583 const RecordDecl *RD = ValTy->castAs<RecordType>()->getDecl();
587 return Builder.Finalize(ValTy);
577 BuildStruct(CodeGenModule &CGM, CodeGenFunction *CGF, const APValue &Val, QualType ValTy) argument
/freebsd-11.0-release/contrib/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h446 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
622 virtual int getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
799 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) override {
800 return Impl.getCmpSelInstrCost(Opcode, ValTy, CondTy);
/freebsd-11.0-release/contrib/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp315 Type *ValTy = Val->getType(); variable
319 if (ValTy->isVectorTy() && ValTy->getScalarSizeInBits() == 1)
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp2291 Type *ValTy = EltTy->getScalarType(); local
2294 unsigned EltSize = DL.getTypeSizeInBits(ValTy);
2305 if (ValTy->isPointerTy())
2306 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy);
2307 else if (ValTy->isFloatingPointTy())
2308 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy);
2309 assert(StoreVal->getType() == ValTy && "Type mismatch!");

Completed in 313 milliseconds

12