Searched defs:RA (Results 1 - 14 of 14) sorted by relevance

/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.cpp47 unsigned RA = isPPC64 ? PPC::LR8 : PPC::LR; local
50 InitPPCMCRegisterInfo(X, RA, Flavour, Flavour);
/external/llvm/lib/Target/MBlaze/Disassembler/
H A DMBlazeDisassembler.cpp533 unsigned RA = getRA(insn); local
546 if (RD == UNSUPPORTED || RA == UNSUPPORTED || RB == UNSUPPORTED)
550 instr.addOperand(MCOperand::CreateReg(RA));
554 if (RD == UNSUPPORTED || RA == UNSUPPORTED || RB == UNSUPPORTED)
557 instr.addOperand(MCOperand::CreateReg(RA));
562 if (RD == UNSUPPORTED || RA == UNSUPPORTED)
565 instr.addOperand(MCOperand::CreateReg(RA));
579 if (RA == UNSUPPORTED)
582 instr.addOperand(MCOperand::CreateReg(RA));
595 if (RD == UNSUPPORTED || RA
[all...]
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp360 unsigned RA = (TheTriple.getArch() == Triple::x86_64) local
365 InitX86MCRegisterInfo(X, RA,
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp696 APInt RA = Rem->getValue().abs(); local
697 if (RA.isPowerOf2()) {
698 if (DemandedMask.ult(RA)) // srem won't affect demanded bits
701 APInt LowBits = RA - 1;
/external/llvm/include/llvm/MC/
H A DMCRegisterInfo.h163 void InitMCRegisterInfo(const MCRegisterDesc *D, unsigned NR, unsigned RA, argument
170 RAReg = RA;
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp145 void MarkValue(const RetOrArg &RA, Liveness L,
147 void MarkLive(const RetOrArg &RA);
149 void PropagateLiveness(const RetOrArg &RA);
571 /// MarkValue - This function marks the liveness of RA depending on L. If L is
573 /// such that RA will be marked live if any use in MaybeLiveUses gets marked
575 void DAE::MarkValue(const RetOrArg &RA, Liveness L, argument
578 case Live: MarkLive(RA); break;
585 Uses.insert(std::make_pair(*UI, RA));
610 void DAE::MarkLive(const RetOrArg &RA) { argument
611 if (LiveFunctions.count(RA
623 PropagateLiveness(const RetOrArg &RA) argument
[all...]
/external/llvm/lib/Analysis/
H A DValueTracking.cpp536 APInt RA = Rem->getValue().abs(); local
537 if (RA.isPowerOf2()) {
538 APInt LowBits = RA - 1;
573 APInt RA = Rem->getValue(); local
574 if (RA.isPowerOf2()) {
575 APInt LowBits = (RA - 1);
H A DScalarEvolution.cpp501 const Argument *RA = cast<Argument>(RV); local
502 unsigned LArgNo = LA->getArgNo(), RArgNo = RA->getArgNo();
536 const APInt &RA = RC->getValue()->getValue(); local
537 unsigned LBitWidth = LA.getBitWidth(), RBitWidth = RA.getBitWidth();
540 return LA.ult(RA) ? -1 : 1;
545 const SCEVAddRecExpr *RA = cast<SCEVAddRecExpr>(RHS); local
548 const Loop *LLoop = LA->getLoop(), *RLoop = RA->getLoop();
557 unsigned LNumOps = LA->getNumOperands(), RNumOps = RA->getNumOperands();
563 long X = compare(LA->getOperand(i), RA->getOperand(i));
3851 const SCEV *RA
[all...]
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp370 void reportRegion(bitAttr_t RA, unsigned StartBit, unsigned BitIndex,
1010 void FilterChooser::reportRegion(bitAttr_t RA, unsigned StartBit, argument
1012 if (RA == ATTR_MIXED && AllowMixed)
1014 else if (RA == ATTR_ALL_SET && !AllowMixed)
1132 bitAttr_t RA = ATTR_NONE; local
1140 switch (RA) {
1147 RA = ATTR_ALL_SET;
1153 RA = ATTR_MIXED;
1162 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1163 RA
[all...]
/external/qemu/tcg/ppc/
H A Dtcg-target.c397 #define RA(r) ((r)<<16) macro
407 #define TAB(t,a,b) (RT(t) | RA(a) | RB(b))
408 #define SAB(s,a,b) (RS(s) | RA(a) | RB(b))
449 tcg_out32 (s, ADDI | RT (ret) | RA (0) | (arg & 0xffff));
451 tcg_out32 (s, ADDIS | RT (ret) | RA (0) | ((arg >> 16) & 0xffff));
453 tcg_out32 (s, ORI | RS (ret) | RA (ret) | (arg & 0xffff));
461 tcg_out32 (s, op1 | RT (ret) | RA (addr) | (offset & 0xffff));
464 tcg_out32 (s, op2 | RT (ret) | RA (addr) | RB (0));
493 tcg_out32 (s, LWZ | RT (0) | RA (reg));
494 tcg_out32 (s, MTSPR | RA (
[all...]
/external/qemu/tcg/ppc64/
H A Dtcg-target.c394 #define RA(r) ((r)<<16) macro
405 #define TAB(t,a,b) (RT(t) | RA(a) | RB(b))
406 #define SAB(s,a,b) (RS(s) | RA(a) | RB(b))
447 tcg_out32 (s, op | RA (ra) | RS (rs) | sh | mb);
453 tcg_out32 (s, ADDI | RT (ret) | RA (0) | (arg & 0xffff));
455 tcg_out32 (s, ADDIS | RT (ret) | RA (0) | ((arg >> 16) & 0xffff));
457 tcg_out32 (s, ORI | RS (ret) | RA (ret) | (arg & 0xffff));
477 if (h16) tcg_out32 (s, ORIS | RS (ret) | RA (ret) | h16);
478 if (l16) tcg_out32 (s, ORI | RS (ret) | RA (ret) | l16);
521 tcg_out32 (s, LD | RT (0) | RA (re
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp462 const APInt &RA = RC->getValue()->getValue(); local
465 if (RA.isAllOnesValue())
468 if (RA == 1)
477 const APInt &RA = RC->getValue()->getValue(); local
478 if (LA.srem(RA) != 0)
480 return SE.getConstant(LA.sdiv(RA));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2011 const APInt &RA = Rem->getAPIntValue().abs(); local
2012 if (RA.isPowerOf2()) {
2013 APInt LowBits = RA - 1;
2036 const APInt &RA = Rem->getAPIntValue(); local
2037 if (RA.isPowerOf2()) {
2038 APInt LowBits = (RA - 1);
/external/qemu/
H A Dppc-dis.c688 /* The RA field in an D, DS, DQ, X, XO, M, or MDS form instruction. */
689 #define RA NSI + 1
693 /* As above, but 0 in the RA field means zero, not r0. */
694 #define RA0 RA + 1
697 /* The RA field in the DQ form lq instruction, which has special
702 /* The RA field in a D or X form instruction which is an updating
703 load, which means that the RA field may not be zero and may not
708 /* The RA field in an lmw instruction, which has special value
713 /* The RA field in a D or X form instruction which is an updating
714 store or an updating floating point load, which means that the RA
685 #define RA macro
[all...]

Completed in 148 milliseconds