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

Struct LoadC

gapis/replay/opcode/opcodes.go:132–135  ·  view source on GitHub ↗

LoadC represents the LOAD_C virtual machine opcode.

Source from the content-addressed store, hash-verified

130
131// LoadC represents the LOAD_C virtual machine opcode.
132type LoadC struct {
133 DataType protocol.Type // The value type to load.
134 Address uint32 // The pointer to the value in constant address-space.
135}
136
137func (c LoadC) String() string {
138 return fmt.Sprintf("LoadC(Type: %v, Address: 0x%x)", c.DataType, c.Address)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected