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

Struct PushI

gapis/replay/opcode/opcodes.go:117–120  ·  view source on GitHub ↗

PushI represents the PUSH_I virtual machine opcode.

Source from the content-addressed store, hash-verified

115
116// PushI represents the PUSH_I virtual machine opcode.
117type PushI struct {
118 DataType protocol.Type // The value type to push.
119 Value uint32 // The value to push packed into the low 20 bits.
120}
121
122func (c PushI) String() string {
123 return fmt.Sprintf("PushI(Type: %v, Address: 0x%x)", c.DataType, int(c.Value))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected