• Home
  • Raw
  • Download

Lines Matching refs:Mapper

98 class Mapper {  class
114 Mapper(ValueToValueMapTy &VM, RemapFlags Flags, in Mapper() function in __anond37ff2db0111::Mapper
120 ~Mapper() { assert(!hasWorkToDo() && "Expected to be flushed"); } in ~Mapper()
180 Mapper &M;
223 MDNodeMapper(Mapper &M) : M(M) {} in MDNodeMapper()
339 Value *Mapper::mapValue(const Value *V) { in mapValue()
490 Value *Mapper::mapBlockAddress(const BlockAddress &BA) { in mapBlockAddress()
507 Metadata *Mapper::mapToMetadata(const Metadata *Key, Metadata *Val) { in mapToMetadata()
512 Metadata *Mapper::mapToSelf(const Metadata *MD) { in mapToSelf()
777 Optional<Metadata *> Mapper::mapSimpleMetadata(const Metadata *MD) { in mapSimpleMetadata()
806 Metadata *Mapper::mapMetadata(const Metadata *MD) { in mapMetadata()
816 void Mapper::flush() { in flush()
854 void Mapper::remapInstruction(Instruction *I) { in remapInstruction()
914 void Mapper::remapFunction(Function &F) { in remapFunction()
938 void Mapper::mapAppendingVariable(GlobalVariable &GV, Constant *InitPrefix, in mapAppendingVariable()
979 void Mapper::scheduleMapGlobalInitializer(GlobalVariable &GV, Constant &Init, in scheduleMapGlobalInitializer()
992 void Mapper::scheduleMapAppendingVariable(GlobalVariable &GV, in scheduleMapAppendingVariable()
1011 void Mapper::scheduleMapGlobalAliasee(GlobalAlias &GA, Constant &Aliasee, in scheduleMapGlobalAliasee()
1024 void Mapper::scheduleRemapFunction(Function &F, unsigned MCID) { in scheduleRemapFunction()
1035 void Mapper::addFlags(RemapFlags Flags) { in addFlags()
1040 static Mapper *getAsMapper(void *pImpl) { in getAsMapper()
1041 return reinterpret_cast<Mapper *>(pImpl); in getAsMapper()
1047 Mapper &M;
1054 Mapper *operator->() const { return &M; } in operator ->()
1062 : pImpl(new Mapper(VM, Flags, TypeMapper, Materializer)) {} in ValueMapper()