Reads an instruction out of the stream at the specified address.
| 234 | |
| 235 | // Reads an instruction out of the stream at the specified address. |
| 236 | static const Instruction* At(const uint16_t* code) { |
| 237 | DCHECK(code != nullptr); |
| 238 | return reinterpret_cast<const Instruction*>(code); |
| 239 | } |
| 240 | |
| 241 | // Reads an instruction out of the stream from the current address plus an offset. |
| 242 | const Instruction* RelativeAt(int32_t offset) const WARN_UNUSED { |
nothing calls this directly
no outgoing calls
no test coverage detected