Lines Matching refs:Mapper

109 class Mapper {  class
125 Mapper(ValueToValueMapTy &VM, RemapFlags Flags, in Mapper() function in __anona5d7d5240111::Mapper
131 ~Mapper() { assert(!hasWorkToDo() && "Expected to be flushed"); } in ~Mapper()
190 Mapper &M;
222 MDNodeMapper(Mapper &M) : M(M) {} in MDNodeMapper()
338 Value *Mapper::mapValue(const Value *V) { in mapValue()
524 Value *Mapper::mapBlockAddress(const BlockAddress &BA) { in mapBlockAddress()
541 Metadata *Mapper::mapToMetadata(const Metadata *Key, Metadata *Val) { in mapToMetadata()
546 Metadata *Mapper::mapToSelf(const Metadata *MD) { in mapToSelf()
817 Optional<Metadata *> Mapper::mapSimpleMetadata(const Metadata *MD) { in mapSimpleMetadata()
843 Metadata *Mapper::mapMetadata(const Metadata *MD) { in mapMetadata()
853 void Mapper::flush() { in flush()
896 void Mapper::remapInstruction(Instruction *I) { in remapInstruction()
971 void Mapper::remapGlobalObjectMetadata(GlobalObject &GO) { in remapGlobalObjectMetadata()
979 void Mapper::remapFunction(Function &F) { in remapFunction()
999 void Mapper::mapAppendingVariable(GlobalVariable &GV, Constant *InitPrefix, in mapAppendingVariable()
1039 void Mapper::scheduleMapGlobalInitializer(GlobalVariable &GV, Constant &Init, in scheduleMapGlobalInitializer()
1052 void Mapper::scheduleMapAppendingVariable(GlobalVariable &GV, in scheduleMapAppendingVariable()
1071 void Mapper::scheduleMapGlobalIndirectSymbol(GlobalIndirectSymbol &GIS, in scheduleMapGlobalIndirectSymbol()
1084 void Mapper::scheduleRemapFunction(Function &F, unsigned MCID) { in scheduleRemapFunction()
1095 void Mapper::addFlags(RemapFlags Flags) { in addFlags()
1100 static Mapper *getAsMapper(void *pImpl) { in getAsMapper()
1101 return reinterpret_cast<Mapper *>(pImpl); in getAsMapper()
1107 Mapper &M;
1116 Mapper *operator->() const { return &M; } in operator ->()
1124 : pImpl(new Mapper(VM, Flags, TypeMapper, Materializer)) {} in ValueMapper()