Searched defs:label_index (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/courgette/
H A Dencoded_program.cc238 CheckBool EncodedProgram::AddAbs32(int label_index) { argument
239 return ops_.push_back(ABS32) && abs32_ix_.push_back(label_index);
242 CheckBool EncodedProgram::AddRel32(int label_index) { argument
243 return ops_.push_back(REL32) && rel32_ix_.push_back(label_index);
246 CheckBool EncodedProgram::AddRel32ARM(uint16 op, int label_index) { argument
248 rel32_ix_.push_back(label_index);
/external/qemu/tcg/
H A Dtcg.c149 int label_index, intptr_t addend)
154 l = &s->labels[label_index];
171 static void tcg_out_label(TCGContext *s, int label_index, void *ptr) argument
177 l = &s->labels[label_index];
148 tcg_out_reloc(TCGContext *s, uint8_t *code_ptr, int type, int label_index, intptr_t addend) argument
H A Dtcg-op.h651 TCGv_i32 arg2, int label_index)
654 tcg_gen_br(label_index);
656 tcg_gen_op4ii_i32(INDEX_op_brcond_i32, arg1, arg2, cond, label_index);
661 int32_t arg2, int label_index)
664 tcg_gen_br(label_index);
667 tcg_gen_brcond_i32(cond, arg1, t0, label_index);
1005 TCGv_i64 arg2, int label_index)
1008 tcg_gen_br(label_index);
1012 TCGV_HIGH(arg2), cond, label_index);
1334 TCGv_i64 arg2, int label_index)
650 tcg_gen_brcond_i32(TCGCond cond, TCGv_i32 arg1, TCGv_i32 arg2, int label_index) argument
660 tcg_gen_brcondi_i32(TCGCond cond, TCGv_i32 arg1, int32_t arg2, int label_index) argument
1004 tcg_gen_brcond_i64(TCGCond cond, TCGv_i64 arg1, TCGv_i64 arg2, int label_index) argument
1333 tcg_gen_brcond_i64(TCGCond cond, TCGv_i64 arg1, TCGv_i64 arg2, int label_index) argument
1479 tcg_gen_brcondi_i64(TCGCond cond, TCGv_i64 arg1, int64_t arg2, int label_index) argument
[all...]
/external/qemu/tcg/i386/
H A Dtcg-target.c761 static void tcg_out_jxx(TCGContext *s, int opc, int label_index, int small) argument
764 TCGLabel *l = &s->labels[label_index];
794 tcg_out_reloc(s, s->code_ptr, R_386_PC8, label_index, -1);
802 tcg_out_reloc(s, s->code_ptr, R_386_PC32, label_index, -4);
824 int label_index, int small)
827 tcg_out_jxx(s, tcg_cond_to_jcc[cond], label_index, small);
833 int label_index, int small)
836 tcg_out_jxx(s, tcg_cond_to_jcc[cond], label_index, small);
822 tcg_out_brcond32(TCGContext *s, TCGCond cond, TCGArg arg1, TCGArg arg2, int const_arg2, int label_index, int small) argument
831 tcg_out_brcond64(TCGContext *s, TCGCond cond, TCGArg arg1, TCGArg arg2, int const_arg2, int label_index, int small) argument

Completed in 888 milliseconds