Searched defs:RegisterLoad (Results 1 – 1 of 1) sorted by relevance
43 struct RegisterLoad { struct in v8::internal::wasm::__anon401e5fe90111::StackTransferRecipe44 enum LoadKind : uint8_t {52 LoadKind load_kind;53 ValueKind kind;54 int32_t value; // i32 constant value or stack offset, depending on kind.57 static RegisterLoad Const(WasmValue constant) { in Const()66 static RegisterLoad Stack(int32_t offset, ValueKind kind) { in Stack()69 static RegisterLoad HalfStack(int32_t offset, RegPairHalf half) { in HalfStack()72 static RegisterLoad Nop() { in Nop()78 RegisterLoad(LoadKind load_kind, ValueKind kind, int32_t value) in RegisterLoad() argument