MCPcopy Create free account
hub / github.com/google/gapid / LoadV

Struct LoadV

gapis/replay/opcode/opcodes.go:147–150  ·  view source on GitHub ↗

LoadV represents the LOAD_V virtual machine opcode.

Source from the content-addressed store, hash-verified

145
146// LoadV represents the LOAD_V virtual machine opcode.
147type LoadV struct {
148 DataType protocol.Type // The value type to load.
149 Address uint32 // The pointer to the value in volatile address-space.
150}
151
152func (c LoadV) String() string {
153 return fmt.Sprintf("LoadV(Type: %v, Address: 0x%x)", c.DataType, c.Address)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected