HomeSort by relevance Sort by last modified time
    Searched refs:ValTy (Results 1 - 25 of 39) sorted by null

1 2

  /external/clang/include/clang/Analysis/FlowSensitive/
DataflowValues.h 48 typedef typename ValueTypes::ValTy ValTy;
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& getStmtData(const Stmt *S)
    [all...]
  /external/llvm/include/llvm/ADT/
PointerUnion.h 84 PointerUnionUIntTraits<PT1,PT2> > ValTy;
86 ValTy Val;
181 V.Val = ValTy::getFromOpaqueValue(VP);
221 PointerLikeTypeTraits<typename PointerUnion<PT1,PT2>::ValTy>
233 typedef PointerUnion<InnerUnion, PT3> ValTy;
235 ValTy Val;
238 ValTy Val;
239 IsInnerUnion(ValTy val) : Val(val) { }
252 ValTy Val;
253 IsPT3(ValTy val) : Val(val) {
    [all...]
ScopedHashTable.h 153 typedef ScopedHashTableVal<K, V> ValTy;
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,
  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 167 EVT ValTy = Addr.getValueType();
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);
MipsSEISelDAGToDAG.cpp 282 EVT ValTy = Addr.getValueType();
284 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
285 Offset = CurDAG->getTargetConstant(0, SDLoc(Addr), ValTy);
298 EVT ValTy = Addr.getValueType();
303 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
308 ValTy);
    [all...]
  /external/llvm/include/llvm/IR/
CallSite.h 42 typename ValTy = const Value,
56 explicit CallSiteBase(ValTy *II) { *this = get(II); }
64 static CallSiteBase get(ValTy *V) {
93 ValTy *getCalledValue() const {
121 ValTy *getArgument(unsigned ArgNo) const {
221 ValTy *getArgOperand(unsigned i) const {
  /external/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.cpp 95 int AMDGPUTTIImpl::getVectorInstrCost(unsigned Opcode, Type *ValTy,
102 return BaseT::getVectorInstrCost(Opcode, ValTy, Index);
AMDGPUTargetTransformInfo.h 66 int getVectorInstrCost(unsigned Opcode, Type *ValTy, unsigned Index);
  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 243 int ARMTTIImpl::getVectorInstrCost(unsigned Opcode, Type *ValTy,
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) {
274 if (ST->hasNEON() && ValTy->isVectorTy() && ISD == ISD::SELECT)
    [all...]
ARMTargetTransformInfo.h 101 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
  /external/llvm/lib/Analysis/
CostModel.cpp 423 Type *ValTy = I->getOperand(0)->getType();
424 return TTI->getCmpSelInstrCost(I->getOpcode(), ValTy);
428 Type *ValTy = SI->getValueOperand()->getType();
429 return TTI->getMemoryOpCost(I->getOpcode(), ValTy,
TargetTransformInfo.cpp 252 int TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
254 int Cost = TTIImpl->getCmpSelInstrCost(Opcode, ValTy, CondTy);
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.h 113 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
AArch64TargetTransformInfo.cpp 380 int AArch64TTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
386 if (ValTy->isVectorTy() && ISD == ISD::SELECT) {
400 EVT SelValTy = TLI->getValueType(DL, ValTy);
408 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy);
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.h 82 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
PPCTargetTransformInfo.cpp 290 int PPCTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) {
291 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy);
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.h 73 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
X86TargetTransformInfo.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 436 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) {
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;
DIE.h 312 DIEBlock *, DIELoc *, DIELocList> ValTy;
313 static_assert(sizeof(ValTy) <= sizeof(uint64_t) ||
314 sizeof(ValTy) <= sizeof(void *),
318 ValTy Val;
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 446 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
608 virtual int getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
    [all...]
  /external/clang/lib/CodeGen/
CGAtomic.cpp 650 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);
    [all...]
CGExprConstant.cpp 53 const APValue &Value, QualType ValTy);
541 llvm::Type *ValTy = CGM.getTypes().ConvertType(Ty);
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);
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 315 Type *ValTy = Val->getType();
319 if (ValTy->isVectorTy() && ValTy->getScalarSizeInBits() == 1)
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]

Completed in 1431 milliseconds

1 2