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

/external/clang/test/CodeGenCXX/
H A Ddevirtualize-virtual-function-calls-final.cpp165 struct RA { struct in namespace:Test9
170 struct RC final : public RA {
186 return static_cast<RA*>(x)->f();
/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.h230 void InitMCRegisterInfo(const MCRegisterDesc *D, unsigned NR, unsigned RA, argument
241 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.cpp503 const Argument *RA = cast<Argument>(RV); local
504 unsigned LArgNo = LA->getArgNo(), RArgNo = RA->getArgNo();
538 const APInt &RA = RC->getValue()->getValue(); local
539 unsigned LBitWidth = LA.getBitWidth(), RBitWidth = RA.getBitWidth();
542 return LA.ult(RA) ? -1 : 1;
547 const SCEVAddRecExpr *RA = cast<SCEVAddRecExpr>(RHS); local
550 const Loop *LLoop = LA->getLoop(), *RLoop = RA->getLoop();
559 unsigned LNumOps = LA->getNumOperands(), RNumOps = RA->getNumOperands();
565 long X = compare(LA->getOperand(i), RA->getOperand(i));
3842 const SCEV *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/Target/Mips/
H A DMipsISelLowering.cpp1996 unsigned RA = IsN64 ? Mips::RA_64 : Mips::RA; local
1999 // Return RA, which contains the return address. Mark it an implicit live-in.
2000 unsigned Reg = MF.addLiveIn(RA, getRegClassFor(VT));
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp466 const APInt &RA = RC->getValue()->getValue(); local
469 if (RA.isAllOnesValue())
472 if (RA == 1)
481 const APInt &RA = RC->getValue()->getValue(); local
482 if (LA.srem(RA) != 0)
484 return SE.getConstant(LA.sdiv(RA));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2066 const APInt &RA = Rem->getAPIntValue().abs(); local
2067 if (RA.isPowerOf2()) {
2068 APInt LowBits = RA - 1;
2091 const APInt &RA = Rem->getAPIntValue(); local
2092 if (RA.isPowerOf2()) {
2093 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 390 milliseconds