Home
last modified time | relevance | path

Searched refs:OutputMappings (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DIROutliner.cpp444 const DenseMap<Value *, Value *> &OutputMappings, in mapInputsToGVNs() argument
451 if (OutputMappings.find(Input) != OutputMappings.end()) in mapInputsToGVNs()
452 Input = OutputMappings.find(Input)->second; in mapInputsToGVNs()
469 const DenseMap<Value *, Value *> &OutputMappings, in remapExtractedInputs() argument
474 if (OutputMappings.find(Input) != OutputMappings.end()) in remapExtractedInputs()
475 Input = OutputMappings.find(Input)->second; in remapExtractedInputs()
500 DenseSet<unsigned> &NotSame, DenseMap<Value *, Value *> &OutputMappings, in getCodeExtractorArguments() argument
548 mapInputsToGVNs(C, OverallInputs, OutputMappings, InputGVNs); in getCodeExtractorArguments()
550 remapExtractedInputs(PremappedInputs.getArrayRef(), OutputMappings, in getCodeExtractorArguments()
708 getCodeExtractorArguments(Region, Inputs, NotSame, OutputMappings, ArgInputs, in findAddInputsOutputs()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DIROutliner.h281 DenseMap<Value *, Value *> OutputMappings; variable