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

1 2

  /external/clang/include/clang/Analysis/Support/
BlkExprDeclBitVector.h 83 // ValTy - Dataflow value.
86 class ValTy {
104 bool operator==(const ValTy& RHS) const {
109 void copyValues(const ValTy& RHS) { DeclBV = RHS.DeclBV; }
133 ValTy& operator|=(const ValTy& RHS) {
139 ValTy& operator&=(const ValTy& RHS) {
145 ValTy& OrDeclBits(const ValTy& RHS)
    [all...]
  /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...]
DataflowSolver.h 121 typename _Equal = std::equal_to<typename _DFValuesTy::ValTy> >
134 typedef typename _DFValuesTy::ValTy ValTy;
226 ValTy& V = TF.getVal();
260 BI = D.getBlockDataMap().insert( std::make_pair(B,ValTy()) ).first;
315 void UpdateEdges(CFG& cfg, const CFGBlock *B, ValTy& V) {
322 void UpdateEdgeValue(BlockEdge E, ValTy& V, const CFGBlock *TargetBlock) {
  /external/llvm/include/llvm/ADT/
PointerUnion.h 82 PointerUnionUIntTraits<PT1,PT2> > ValTy;
84 ValTy Val;
173 V.Val = ValTy::getFromOpaqueValue(VP);
195 PointerLikeTypeTraits<typename PointerUnion<PT1,PT2>::ValTy>
207 typedef PointerUnion<InnerUnion, PT3> ValTy;
209 ValTy Val;
212 ValTy Val;
213 IsInnerUnion(ValTy val) : Val(val) { }
226 ValTy Val;
227 IsPT3(ValTy val) : Val(val) {
    [all...]
ScopedHashTable.h 152 typedef ScopedHashTableVal<K, V> ValTy;
153 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/Analysis/
CostModel.cpp 97 Type *ValTy = I->getOperand(0)->getType()->getPointerElementType();
98 return TTI->getAddressComputationCost(ValTy);
133 Type *ValTy = I->getOperand(0)->getType();
134 return TTI->getCmpSelInstrCost(I->getOpcode(), ValTy);
138 Type *ValTy = SI->getValueOperand()->getType();
139 return TTI->getMemoryOpCost(I->getOpcode(), ValTy,
TargetTransformInfo.cpp 171 unsigned TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
173 return PrevTTI->getCmpSelInstrCost(Opcode, ValTy, CondTy);
516 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 155 EVT ValTy = Addr.getValueType();
157 Alias = CurDAG->getTargetConstant(0, ValTy);
161 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
162 Offset = CurDAG->getTargetConstant(0, ValTy);
185 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
191 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
225 Offset = CurDAG->getTargetConstant(0, ValTy);
MipsSEISelDAGToDAG.cpp 225 EVT ValTy = Addr.getValueType();
229 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
230 Offset = CurDAG->getTargetConstant(0, ValTy);
255 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
259 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
MipsISelLowering.cpp 756 EVT ValTy = N->getValueType(0);
757 if (SMPos != 0 || Pos + SMSize > ValTy.getSizeInBits())
760 return DAG.getNode(MipsISD::Ext, N->getDebugLoc(), ValTy,
    [all...]
  /external/llvm/include/llvm/Support/
CallSite.h 41 typename ValTy = const Value,
54 CallSiteBase(ValTy *II) { *this = get(II); }
61 static CallSiteBase get(ValTy *V) {
86 ValTy *getCalledValue() const {
112 ValTy *getArgument(unsigned ArgNo) const {
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 94 virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
188 unsigned PPCTTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
190 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy);
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 94 virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
330 unsigned BasicTTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
342 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy);
351 if (ValTy->isVectorTy()) {
352 unsigned Num = ValTy->getVectorNumElements();
355 unsigned Cost = TopTTI->getCmpSelInstrCost(Opcode, ValTy->getScalarType(),
360 return getScalarizationOverhead(ValTy, true, false) + Num * Cost;
  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 123 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) const;
371 unsigned ARMTTI::getVectorInstrCost(unsigned Opcode, Type *ValTy,
377 ValTy->isVectorTy() &&
378 ValTy->getScalarSizeInBits() <= 32)
381 return TargetTransformInfo::getVectorInstrCost(Opcode, ValTy, Index);
384 unsigned ARMTTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
389 if (ST->hasNEON() && ValTy->isVectorTy() && ISD == ISD::SELECT) {
401 EVT SelValTy = TLI->getValueType(ValTy);
409 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy);
413 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy)
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 298 virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp 94 virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
276 unsigned X86TTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
279 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy);
330 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy);
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 48 const APValue &Value, QualType ValTy);
563 llvm::Type *ValTy = CGM.getTypes().ConvertType(Ty);
564 if (llvm::StructType *ValSTy = dyn_cast<llvm::StructType>(ValTy)) {
591 QualType ValTy) {
594 const RecordDecl *RD = ValTy->castAs<RecordType>()->getDecl();
602 return Builder.Finalize(ValTy);
    [all...]
CGExprScalar.cpp     [all...]
CGBuiltin.cpp 144 /// EmitFAbs - Emit a call to fabs/fabsf/fabsl, depending on the type of ValTy,
146 static Value *EmitFAbs(CodeGenFunction &CGF, Value *V, QualType ValTy) {
147 const BuiltinType *ValTyP = ValTy->getAs<BuiltinType>();
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 305 Type *ValTy = Val->getType();
309 if (ValTy->isVectorTy() && ValTy->getScalarSizeInBits() == 1)
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]

Completed in 590 milliseconds

1 2