/external/swiftshader/third_party/LLVM/lib/Linker/ |
D | LinkModules.cpp | 323 TypeMapTy TypeMap; member in __anon2872dd220211::ModuleLinker 527 TypeMap.addTypeMapping(DGV->getType(), I->getType()); in computeTypeMapping() 534 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType()); in computeTypeMapping() 540 TypeMap.addTypeMapping(DGV->getType(), I->getType()); in computeTypeMapping() 547 TypeMap.linkDefinedTypeBodies(); in computeTypeMapping() 561 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType())); in linkAppendingVarProto() 603 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType())); in linkAppendingVarProto() 643 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType())); in linkGlobalProto() 657 new GlobalVariable(*DstM, TypeMap.get(SGV->getType()->getElementType()), in linkGlobalProto() 691 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType())); in linkFunctionProto() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Linker/ |
D | IRMover.cpp | 390 TypeMapTy TypeMap; member in __anone3fe09eb0211::IRLinker 511 TypeMap(Set), GValMaterializer(*this), LValMaterializer(*this), in IRLinker() 513 Mapper(ValueMap, RF_MoveDistinctMDs | RF_IgnoreMissingLocals, &TypeMap, in IRLinker() 613 new GlobalVariable(DstM, TypeMap.get(SGVar->getValueType()), in copyGlobalVariableProto() 629 Function::Create(TypeMap.get(SF->getFunctionType()), in copyFunctionProto() 639 auto *Ty = TypeMap.get(SGA->getValueType()); in copyGlobalAliasProto() 659 Function::Create(cast<FunctionType>(TypeMap.get(SGV->getValueType())), in copyGlobalValueProto() 663 DstM, TypeMap.get(SGV->getValueType()), in copyGlobalValueProto() 712 TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); in computeTypeMapping() 719 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType()); in computeTypeMapping() [all …]
|
/external/llvm/lib/Linker/ |
D | IRMover.cpp | 378 TypeMapTy TypeMap; member in __anon061754930211::IRLinker 487 TypeMap(Set), GValMaterializer(*this), LValMaterializer(*this), in IRLinker() 489 Mapper(ValueMap, RF_MoveDistinctMDs | RF_IgnoreMissingLocals, &TypeMap, in IRLinker() 587 new GlobalVariable(DstM, TypeMap.get(SGVar->getValueType()), in copyGlobalVariableProto() 601 return Function::Create(TypeMap.get(SF->getFunctionType()), in copyFunctionProto() 609 auto *Ty = TypeMap.get(SGA->getValueType()); in copyGlobalAliasProto() 627 DstM, TypeMap.get(SGV->getValueType()), in copyGlobalValueProto() 670 TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); in computeTypeMapping() 677 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType()); in computeTypeMapping() 682 TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); in computeTypeMapping() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/ |
D | ValueEnumerator.h | 44 TypeMapType TypeMap; variable 89 TypeMapType::const_iterator I = TypeMap.find(T); in getTypeID() 90 assert(I != TypeMap.end() && "Type not in ValueEnumerator!"); in getTypeID()
|
D | ValueEnumerator.cpp | 319 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType() 339 TypeID = &TypeMap[Ty]; in EnumerateType()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/ |
D | ValueEnumerator.h | 60 TypeMapType TypeMap; variable 169 TypeMapType::const_iterator I = TypeMap.find(T); in getTypeID() 170 assert(I != TypeMap.end() && "Type not in ValueEnumerator!"); in getTypeID()
|
D | ValueEnumerator.cpp | 857 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType() 876 TypeID = &TypeMap[Ty]; in EnumerateType()
|
/external/llvm/lib/Bitcode/Writer/ |
D | ValueEnumerator.h | 55 TypeMapType TypeMap; variable 161 TypeMapType::const_iterator I = TypeMap.find(T); in getTypeID() 162 assert(I != TypeMap.end() && "Type not in ValueEnumerator!"); in getTypeID()
|
D | ValueEnumerator.cpp | 824 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType() 843 TypeID = &TypeMap[Ty]; in EnumerateType()
|
/external/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 504 template <class BlockT> struct TypeMap {}; 505 template <> struct TypeMap<BasicBlock> { 512 template <> struct TypeMap<MachineBasicBlock> { 795 typedef typename bfi_detail::TypeMap<BT>::BlockT BlockT; 796 typedef typename bfi_detail::TypeMap<BT>::FunctionT FunctionT; 797 typedef typename bfi_detail::TypeMap<BT>::BranchProbabilityInfoT 799 typedef typename bfi_detail::TypeMap<BT>::LoopT LoopT; 800 typedef typename bfi_detail::TypeMap<BT>::LoopInfoT LoopInfoT;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 547 template <class BlockT> struct TypeMap {}; 548 template <> struct TypeMap<BasicBlock> { 555 template <> struct TypeMap<MachineBasicBlock> { 847 using BlockT = typename bfi_detail::TypeMap<BT>::BlockT; 848 using FunctionT = typename bfi_detail::TypeMap<BT>::FunctionT; 850 typename bfi_detail::TypeMap<BT>::BranchProbabilityInfoT; 851 using LoopT = typename bfi_detail::TypeMap<BT>::LoopT; 852 using LoopInfoT = typename bfi_detail::TypeMap<BT>::LoopInfoT;
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DynamicTypePropagation.cpp | 118 DynamicTypeMapImpl TypeMap = State->get<DynamicTypeMap>(); in checkDeadSymbols() local 119 for (DynamicTypeMapImpl::iterator I = TypeMap.begin(), E = TypeMap.end(); in checkDeadSymbols()
|
/external/spirv-llvm/lib/SPIRV/ |
D | SPIRVWriter.cpp | 225 LLVMToSPIRVTypeMap TypeMap; member in SPIRV::LLVMToSPIRV 234 TypeMap[T] = BT; in mapType() 258 return TypeMap[T]; in getSPIRVType() 443 LLVMToSPIRVTypeMap::iterator Loc = TypeMap.find(T); in transType() 444 if (Loc != TypeMap.end()) in transType()
|
D | SPIRVReader.cpp | 404 SPIRVToLLVMTypeMap TypeMap; member in SPIRV::SPIRVToLLVM 412 TypeMap[BT] = T; in mapType() 515 auto Loc = TypeMap.find(BV); in getTranslatedType() 516 if (Loc != TypeMap.end()) in getTranslatedType() 679 auto Loc = TypeMap.find(T); in transType() 680 if (Loc != TypeMap.end()) in transType()
|
/external/ImageMagick/MagickCore/ |
D | type.c | 112 *TypeMap = (const char *) variable 247 status&=LoadTypeCache(cache,TypeMap,"built-in",0,exception); in AcquireTypeCache()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | LegalizerInfo.h | 1123 using TypeMap = DenseMap<LLT, LegalizeAction>; variable 1124 SmallVector<TypeMap, 1> SpecifiedActions[LastOp - FirstOp + 1];
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | llvm-pdbutil.cpp | 1177 SmallVector<TypeIndex, 128> TypeMap; in mergePdbs() local 1182 codeview::mergeTypeRecords(MergedTpi, TypeMap, Tpi.typeArray())); in mergePdbs() 1186 ExitOnErr(codeview::mergeIdRecords(MergedIpi, TypeMap, IdMap, in mergePdbs()
|
/external/swiftshader/third_party/LLVM/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 82 typedef std::map<Type*,std::string> TypeMap; typedef 95 TypeMap TypeNames; 355 TypeMap::iterator I = TypeNames.find(Ty); in getCppName()
|
/external/llvm/docs/ |
D | ExtendingLLVM.rst | 291 declaration to the TypeMap value type
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | ExtendingLLVM.rst | 291 declaration to the TypeMap value type
|
/external/deqp/external/openglcts/modules/common/ |
D | glcPackedPixelsTests.cpp | 585 typedef std::map<GLenum, std::string> TypeMap; in getTypeStr() typedef 586 static TypeMap typeMap; in getTypeStr() 599 TypeMap::iterator it = typeMap.find(type); in getTypeStr()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 5046 const Constant *TypeMap = cast<Constant>(I.getArgOperand(1)); in visitIntrinsicCall() local 5049 GFI->addStackRoot(FI->getIndex(), TypeMap); in visitIntrinsicCall()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 5453 const Constant *TypeMap = cast<Constant>(I.getArgOperand(1)); in visitIntrinsicCall() local 5456 GFI->addStackRoot(FI->getIndex(), TypeMap); in visitIntrinsicCall()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 5878 const Constant *TypeMap = cast<Constant>(I.getArgOperand(1)); in visitIntrinsicCall() local 5881 GFI->addStackRoot(FI->getIndex(), TypeMap); in visitIntrinsicCall()
|