func checkAlloc(instr *ssa.Alloc) error { return errIfNonFirstClassType(instr.Type(), instr) }
func (v Target) genAlloc(a *allocator, instr *ssa.Alloc) { v.wop("subq $%d, #rsp", TypeStoreSizeInBits(instr.Type())/8) v.wop("movq #rsp, %s", a.valStr(instr)) }