Home | History | Annotate | Download | only in compiler

Lines Matching refs:alloca

2821    instr->alloca.alloc_type = alloc_type;
2822 instr->alloca.size_type = size_type;
2823 instr->alloca.size = size;
2824 instr->alloca.align = util_logbase2(align) + 1;
2825 assert(instr->alloca.align < (1 << 5));
2826 instr->alloca.align |= 1 << 6;
3153 assert(instr->alloca.alloc_type->id >= 0);
3154 assert(instr->alloca.size_type->id >= 0);
3155 assert(instr->alloca.size->id >= 0);
3158 instr->alloca.alloc_type->id,
3159 instr->alloca.size_type->id,
3160 instr->alloca.size->id,
3161 instr->alloca.align,