* Get the corresponding trampoline entry if it exists, else INTPTR_MIN. */
| 162 | * Get the corresponding trampoline entry if it exists, else INTPTR_MIN. |
| 163 | */ |
| 164 | intptr_t getTrampolineEntry(const EntrySet &Es, const Instr *I) |
| 165 | { |
| 166 | auto i = Es.find(I->addr); |
| 167 | if (i == Es.end()) |
| 168 | return INTPTR_MIN; |
| 169 | return i->second.entry; |
| 170 | } |
| 171 | |
| 172 | /* |
| 173 | * Set the corresponding trampoline entry. |
no test coverage detected