HomeSort by relevance Sort by last modified time
    Searched refs:ValTy (Results 1 - 25 of 30) 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);
215 PointerLikeTypeTraits<typename PointerUnion<PT1,PT2>::ValTy>
227 typedef PointerUnion<InnerUnion, PT3> ValTy;
229 ValTy Val;
232 ValTy Val;
233 IsInnerUnion(ValTy val) : Val(val) { }
246 ValTy Val;
247 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 164 EVT ValTy = Addr.getValueType();
166 Alias = CurDAG->getTargetConstant(0, ValTy);
170 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
171 Offset = CurDAG->getTargetConstant(0, ValTy);
194 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
200 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
236 Offset = CurDAG->getTargetConstant(0, ValTy);
MipsSEISelDAGToDAG.cpp 256 EVT ValTy = Addr.getValueType();
258 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
259 Offset = CurDAG->getTargetConstant(0, ValTy);
272 EVT ValTy = Addr.getValueType();
277 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
281 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
MipsISelLowering.cpp 648 EVT ValTy = N->getValueType(0);
649 if (SMPos != 0 || Pos + SMSize > ValTy.getSizeInBits())
652 return DAG.getNode(MipsISD::Ext, SDLoc(N), ValTy,
702 EVT ValTy = N->getValueType(0);
703 if ((Shamt != SMPos0) || (SMPos0 + SMSize0 > ValTy.getSizeInBits()))
706 return DAG.getNode(MipsISD::Ins, SDLoc(N), ValTy, Shl.getOperand(0),
730 EVT ValTy = N->getValueType(0);
733 SDValue Add1 = DAG.getNode(ISD::ADD, DL, ValTy, N->getOperand(0),
735 return DAG.getNode(ISD::ADD, DL, ValTy, Add1, Lo);
    [all...]
  /external/llvm/include/llvm/IR/
CallSite.h 40 typename ValTy = const Value,
53 CallSiteBase(ValTy *II) { *this = get(II); }
60 static CallSiteBase get(ValTy *V) {
85 ValTy *getCalledValue() const {
113 ValTy *getArgument(unsigned ArgNo) const {
  /external/llvm/lib/Analysis/
CostModel.cpp 386 Type *ValTy = I->getOperand(0)->getType()->getPointerElementType();
387 return TTI->getAddressComputationCost(ValTy);
427 Type *ValTy = I->getOperand(0)->getType();
428 return TTI->getCmpSelInstrCost(I->getOpcode(), ValTy);
432 Type *ValTy = SI->getValueOperand()->getType();
433 return TTI->getMemoryOpCost(I->getOpcode(), ValTy,
TargetTransformInfo.cpp 195 unsigned TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
197 return PrevTTI->getCmpSelInstrCost(Opcode, ValTy, CondTy);
584 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 111 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
453 unsigned BasicTTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
466 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy);
475 if (ValTy->isVectorTy()) {
476 unsigned Num = ValTy->getVectorNumElements();
479 unsigned Cost = TopTTI->getCmpSelInstrCost(Opcode, ValTy->getScalarType(),
484 return getScalarizationOverhead(ValTy, true, false) + Num * Cost;
  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 120 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
382 unsigned ARMTTI::getVectorInstrCost(unsigned Opcode, Type *ValTy,
388 ValTy->isVectorTy() &&
389 ValTy->getScalarSizeInBits() <= 32)
392 return TargetTransformInfo::getVectorInstrCost(Opcode, ValTy, Index);
395 unsigned ARMTTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
400 if (ST->hasNEON() && ValTy->isVectorTy() && ISD == ISD::SELECT) {
413 EVT SelValTy = TLI->getValueType(ValTy);
422 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy);
426 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy)
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 102 virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
342 unsigned PPCTTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
344 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy);
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 122 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) const
441 unsigned AArch64TTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
446 if (ValTy->isVectorTy() && ISD == ISD::SELECT) {
460 EVT SelValTy = TLI->getValueType(ValTy);
469 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy);
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 372 virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp 92 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
682 unsigned X86TTI::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
685 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy);
736 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy);
837 unsigned X86TTI::getReductionCost(unsigned Opcode, Type *ValTy,
840 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy);
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 48 const APValue &Value, QualType ValTy);
513 llvm::Type *ValTy = CGM.getTypes().ConvertType(Ty);
514 if (llvm::StructType *ValSTy = dyn_cast<llvm::StructType>(ValTy)) {
541 QualType ValTy) {
544 const RecordDecl *RD = ValTy->castAs<RecordType>()->getDecl();
548 return Builder.Finalize(ValTy);
    [all...]
CGAtomic.cpp 463 bool UseOptimizedLibcall, llvm::Value *Val, QualType ValTy,
467 unsigned Align = CGF.getContext().getTypeAlignInChars(ValTy).getQuantity();
468 Val = CGF.EmitLoadOfScalar(Val, false, Align, ValTy, Loc);
469 Args.add(RValue::get(Val), ValTy);
    [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 307 Type *ValTy = Val->getType();
311 if (ValTy->isVectorTy() && ValTy->getScalarSizeInBits() == 1)
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /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/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 924 milliseconds

1 2