Home | History | Annotate | Download | only in config

Lines Matching refs:poffset

1392 bfin_gen_ldstidxi (REG_T ptr, REG_T reg, int W, int sz, int Z, Expr_Node * poffset)
1409 if (poffset->type != Expr_Node_Constant)
1415 if (poffset->type == Expr_Node_Reloc
1416 && !strcmp (poffset->value.s_value,
1420 Expr_Node_Gen_Reloc(poffset, BFD_RELOC_16));
1422 else if (poffset->type != Expr_Node_GOT_Reloc)
1426 Expr_Node_Gen_Reloc(poffset->Left_Child,
1427 poffset->value.i_value));
1435 value = EXPR_VALUE (poffset) >> 2;
1438 value = EXPR_VALUE (poffset) >> 1;
1441 value = EXPR_VALUE (poffset);
1476 bfin_gen_ldstii (REG_T ptr, REG_T reg, Expr_Node * poffset, int W, int opc)
1492 value = EXPR_VALUE (poffset) >> 1;
1496 value = EXPR_VALUE (poffset) >> 2;
1512 bfin_gen_ldstiifp (REG_T sreg, Expr_Node * poffset, int W)
1516 int offset = ((~(EXPR_VALUE (poffset) >> 2)) & 0x1f) + 1;
1566 bfin_gen_brcc (int T, int B, Expr_Node * poffset)
1573 offset = ((EXPR_VALUE (poffset) >> 1));
1575 return conscode (gencode (c_code.opcode), Expr_Node_Gen_Reloc (poffset, BFD_RELOC_BFIN_10_PCREL));
1579 bfin_gen_ujump (Expr_Node * poffset)
1584 offset = ((EXPR_VALUE (poffset) >> 1));
1589 poffset, BFD_RELOC_BFIN_12_PCREL_JUMP_S));