static __always_inline bool arch_static_branch_jump(struct static_key *key, bool branch)
{ /* * Xtensa assembler will mark certain points in the code * as unreachable, so that later assembler or linker relaxation * passes could use them. A spot right after the J instruction * is one such point. Assembler and/or linker may insert padding * or literals here, breaking code flow in case the J instruction * is later replaced with NOP. Put a label right after the J to * make it reachable and wrap both into a no-transform block * to avoid any assembler interference with this.
*/ asmgoto("1:\n\t" ".begin no-transform\n\t" "_j %l[l_yes]\n\t" "2:\n\t" ".end no-transform\n\t" ".pushsection __jump_table, \"aw\"\n\t" ".word 1b, %l[l_yes], %c0\n\t" ".popsection\n\t"
: : "i" (&((char *)key)[branch]) : : l_yes);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.