MCPcopy Create free account
hub / github.com/GJDuck/e9patch / find

Method find

src/e9patch/e9misc.cpp:128–132  ·  view source on GitHub ↗

* Find the instruction for the given offset. */

Source from the content-addressed store, hash-verified

126 * Find the instruction for the given offset.
127 */
128Instr *InstrSet::find(off_t offset) const
129{
130 Instr *I = lower_bound(offset);
131 return (I == nullptr || (off_t)I->offset != offset? nullptr: I);
132}
133

Callers 15

buildEntrySetFunction · 0.45
getTrampolineEntryFunction · 0.45
setTrampolineEntryFunction · 0.45
dupStringFunction · 0.45
dupBytesFunction · 0.45
parseMetadataFunction · 0.45
targetAnalysisFunction · 0.45
expandMacroFunction · 0.45
buildBreakFunction · 0.45
lookupLabelFunction · 0.45
queueFlushFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected