HomeSort by: relevance | last modified time | path
    Searched refs:JUMP (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/external/cddl/osnet/dist/uts/common/dtrace/
dtrace_xoroshiro128_plus.c 44 * This is the jump function for the generator. It is equivalent to 2^64 calls
52 static const uint64_t JUMP[] = { 0xbeac0467eba5facb,
59 for (i = 0; i < sizeof JUMP / sizeof *JUMP; i++) {
61 if (JUMP[i] & 1ULL << b) {
  /src/lib/csu/arch/sh3/
crt0.S 54 1: JUMP r0
  /src/tests/kernel/arch/sh3/
contextspfunc.S 48 1: JUMP r0
execsp.S 50 1: JUMP r0
  /src/usr.sbin/gspa/gspa/
gsp_inst.c 77 #define JUMP 7
161 {"JAB", 0xC880, JUMP, {EXPR, 0, 0, 0}},
162 {"JAC", 0xC880, JUMP, {EXPR, 0, 0, 0}},
163 {"JAEQ",0xCA80, JUMP, {EXPR, 0, 0, 0}},
164 {"JAGE",0xC580, JUMP, {EXPR, 0, 0, 0}},
165 {"JAGT",0xC780, JUMP, {EXPR, 0, 0, 0}},
166 {"JAHI",0xC380, JUMP, {EXPR, 0, 0, 0}},
167 {"JAHS",0xC980, JUMP, {EXPR, 0, 0, 0}},
168 {"JALE",0xC680, JUMP, {EXPR, 0, 0, 0}},
169 {"JALO",0xC880, JUMP, {EXPR, 0, 0, 0}}
    [all...]
  /src/lib/libc/arch/sparc64/
SYS.h 55 #define JUMP(name) \
63 #define JUMP(name) \
67 #define JUMP(name) set _C_LABEL(name),%g1; jmp %g1; nop
69 #define ERROR() JUMP(__cerror)
  /src/lib/libc/arch/sh3/sys/
__clone.S 66 1: JUMP r1
69 JUMP r1
  /src/external/gpl3/binutils/dist/opcodes/
pdp11-dis.c 28 #define JUMP 0x1000 /* Flag that this operand is used in a jump. */
154 if (!(code & JUMP))
227 dst |= JUMP;
235 dst |= JUMP;
245 dst |= JUMP;
mips-formats.h 126 #define JUMP(SIZE, LSB, SHIFT) \
i386-opc.h 592 /* special case for jump insns; value has to be 1 */
593 #define JUMP 1
594 /* call and jump */
600 /* absolute address for jump */
602 Jump,
833 unsigned int jump:3; member in struct:i386_opcode_modifier
  /src/external/gpl3/binutils.old/dist/opcodes/
pdp11-dis.c 28 #define JUMP 0x1000 /* Flag that this operand is used in a jump. */
154 if (!(code & JUMP))
227 dst |= JUMP;
235 dst |= JUMP;
245 dst |= JUMP;
mips-formats.h 126 #define JUMP(SIZE, LSB, SHIFT) \
  /src/sys/arch/sh3/include/
asm.h 170 #define JUMP braf
192 #define JUMP jmp @
  /src/external/gpl3/gcc.old/dist/gcc/config/h8300/
h8300.h 566 /* Return the length of JUMP's delay slot insn (0 if it has none).
567 If JUMP is a delayed branch, NEXT_INSN (PREV_INSN (JUMP)) will
568 be the containing SEQUENCE, not JUMP itself. */
569 #define DELAY_SLOT_LENGTH(JUMP) \
570 (NEXT_INSN (PREV_INSN (JUMP)) == JUMP ? 0 : 2)
  /src/external/gpl3/binutils/dist/gas/config/
bfin-parse.h 110 JUMP = 311, /* JUMP */
288 #define JUMP 311
tc-i386-intel.c 732 && (current_templates.start->opcode_modifier.jump == JUMP
733 || current_templates.start->opcode_modifier.jump
777 || current_templates.start->opcode_modifier.jump == JUMP_DWORD
778 || current_templates.start->opcode_modifier.jump == JUMP))
810 if (current_templates.start->opcode_modifier.jump != JUMP
811 && current_templates.start->opcode_modifier.jump != JUMP_DWORD)
909 /* Operands for jump/call need special consideration. *
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
bfin-parse.h 110 JUMP = 311, /* JUMP */
288 #define JUMP 311
tc-i386-intel.c 732 && (current_templates.start->opcode_modifier.jump == JUMP
733 || current_templates.start->opcode_modifier.jump
777 || current_templates.start->opcode_modifier.jump == JUMP_DWORD
778 || current_templates.start->opcode_modifier.jump == JUMP))
810 if (current_templates.start->opcode_modifier.jump != JUMP
811 && current_templates.start->opcode_modifier.jump != JUMP_DWORD)
909 /* Operands for jump/call need special consideration. *
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
R600InstrInfo.cpp 643 return Opcode == R600::JUMP || Opcode == R600::JUMP_COND;
671 // Remove successive JUMP
672 while (I != MBB.begin() && std::prev(I)->getOpcode() == R600::JUMP) {
683 if (LastOpc == R600::JUMP) {
705 if (SecondLastOpc == R600::JUMP_COND && LastOpc == R600::JUMP) {
744 BuildMI(&MBB, DL, get(R600::JUMP)).addMBB(TBB);
770 BuildMI(&MBB, DL, get(R600::JUMP)).addMBB(FBB);
807 case R600::JUMP:
832 case R600::JUMP:
AMDILCFGStructurizer.cpp 125 /// This step will remove every unconditionnal/dead jump instructions and make
492 case R600::JUMP: return R600::IF_PREDICATE_SET;
503 case R600::JUMP: return R600::IF_PREDICATE_SET;
514 case R600::JUMP: return R600::CONTINUE_LOGICALNZ_i32;
523 case R600::JUMP: return R600::CONTINUE_LOGICALZ_i32;
562 case R600::JUMP:
657 && "found a jump table");
676 // TODO to fix up jump table so later phase won't be confused. if
677 // (jumpTableInfo->isEmpty() == false) { need to clean the jump table, but
679 // blocks in the jump table with the entryBlk //
    [all...]
  /src/games/battlestar/
extern.h 185 #define JUMP 1051
352 int jump(void);
words.c 196 { "jump", JUMP, VERB, NULL },
cypher.c 558 case JUMP:
559 lflag = jump();
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
random.c 203 - provides a "jump" function making it easy to provide many
284 /* This is the jump function for the generator. It is equivalent to
289 jump (prng_state* rs) function
291 static const uint64_t JUMP[] = { 0x180ec6d33cfd0aba, 0xd5a61266f0c9392c, 0xa9582618e03fc9aa, 0x39abdc4529b1661c };
297 for(size_t i = 0; i < sizeof JUMP / sizeof *JUMP; i++)
299 if (JUMP[i] & UINT64_C(1) << b) {
377 using the master state and the number of times we must jump. */
396 jump (&master_state);
  /src/external/gpl3/binutils/dist/include/opcode/
arc.h 65 JUMP,

Completed in 65 milliseconds

1 2