HomeSort by: relevance | last modified time | path
    Searched refs:ADDIS (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativePPC_64.c 60 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16)));
78 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(tmp >> 48)));
114 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 48)));
227 return push_inst(compiler, ADDIS | D(dst) | A(src1) | compiler->imm);
237 return push_inst(compiler, ADDIS | D(dst) | A(dst) | (((compiler->imm >> 16) & 0xffff) + ((compiler->imm >> 15) & 0x1)));
375 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 48)));
sljitNativePPC_32.c 39 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16)));
108 return push_inst(compiler, ADDIS | D(dst) | A(src1) | compiler->imm);
117 return push_inst(compiler, ADDIS | D(dst) | A(dst) | (((compiler->imm >> 16) & 0xffff) + ((compiler->imm >> 15) & 0x1)));
235 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 16)));
sljitNativePPC_common.c 143 #define ADDIS (HI(15))
1026 FAIL_IF(push_inst(compiler, ADDIS | D(arg) | A(arg) | IMM(high_short >> 16)));
1037 FAIL_IF(push_inst(compiler, ADDIS | D(tmp_r) | A(arg & REG_MASK) | IMM(high_short >> 16)));
1855 FAIL_IF(push_inst(compiler, ADDIS | D(TMP_REG2) | A(0) | 0x4330));
1860 FAIL_IF(push_inst(compiler, ADDIS | D(TMP_REG1) | A(0) | 0x8000));
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 753 // addis r30, r30, {.LTOC,_GLOBAL_OFFSET_TABLE} - .L0$pb@ha
771 MCInstBuilder(PPC::ADDIS).addReg(PICR).addReg(PICR).addExpr(DeltaHi));
926 // Change the opcode to ADDIS.
927 TmpInst.setOpcode(PPC::ADDIS);
1151 EmitToStreamer(*OutStreamer, MCInstBuilder(PPC::ADDIS)
1259 // Into: %rd = ADDIS %rs, sym@dtprel@ha
1268 MCInstBuilder(IsPPC64 ? PPC::ADDIS8 : PPC::ADDIS)
1650 // addis r2,r12,(.TOC.-.Lfunc_gepNN)@ha
1698 EmitToStreamer(*OutStreamer, MCInstBuilder(PPC::ADDIS)
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCInstPrinter.cpp 58 // Customize printing of the addis instruction on AIX. When an operand is a
61 // Transform: addis $rD, $rA, $src --> addis $rD, $src($rA).
63 (MI->getOpcode() == PPC::ADDIS8 || MI->getOpcode() == PPC::ADDIS) &&
66 "The first and the second operand of an addis instruction"
70 "The third operand of an addis instruction should be a symbol "
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 826 TmpInst.setOpcode(PPC::ADDIS);

Completed in 35 milliseconds