Lines Matching refs:Mapper
106 class Mapper { class
122 Mapper(ValueToValueMapTy &VM, RemapFlags Flags, in Mapper() function in __anon8d033c670111::Mapper
128 ~Mapper() { assert(!hasWorkToDo() && "Expected to be flushed"); } in ~Mapper()
187 Mapper &M;
219 MDNodeMapper(Mapper &M) : M(M) {} in MDNodeMapper()
335 Value *Mapper::mapValue(const Value *V) { in mapValue()
487 Value *Mapper::mapBlockAddress(const BlockAddress &BA) { in mapBlockAddress()
504 Metadata *Mapper::mapToMetadata(const Metadata *Key, Metadata *Val) { in mapToMetadata()
509 Metadata *Mapper::mapToSelf(const Metadata *MD) { in mapToSelf()
774 Optional<Metadata *> Mapper::mapSimpleMetadata(const Metadata *MD) { in mapSimpleMetadata()
800 Metadata *Mapper::mapMetadata(const Metadata *MD) { in mapMetadata()
810 void Mapper::flush() { in flush()
849 void Mapper::remapInstruction(Instruction *I) { in remapInstruction()
923 void Mapper::remapGlobalObjectMetadata(GlobalObject &GO) { in remapGlobalObjectMetadata()
931 void Mapper::remapFunction(Function &F) { in remapFunction()
951 void Mapper::mapAppendingVariable(GlobalVariable &GV, Constant *InitPrefix, in mapAppendingVariable()
991 void Mapper::scheduleMapGlobalInitializer(GlobalVariable &GV, Constant &Init, in scheduleMapGlobalInitializer()
1004 void Mapper::scheduleMapAppendingVariable(GlobalVariable &GV, in scheduleMapAppendingVariable()
1023 void Mapper::scheduleMapGlobalIndirectSymbol(GlobalIndirectSymbol &GIS, in scheduleMapGlobalIndirectSymbol()
1036 void Mapper::scheduleRemapFunction(Function &F, unsigned MCID) { in scheduleRemapFunction()
1047 void Mapper::addFlags(RemapFlags Flags) { in addFlags()
1052 static Mapper *getAsMapper(void *pImpl) { in getAsMapper()
1053 return reinterpret_cast<Mapper *>(pImpl); in getAsMapper()
1059 Mapper &M;
1068 Mapper *operator->() const { return &M; } in operator ->()
1076 : pImpl(new Mapper(VM, Flags, TypeMapper, Materializer)) {} in ValueMapper()