Home
last modified time | relevance | path

Searched refs:RA (Results 1 – 25 of 340) sorted by relevance

12345678910>>...14

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCInstrSPE.td18 bits<5> RA;
24 let Inst{11-15} = RA;
38 let RA = 0;
45 bits<5> RA;
50 let Inst{11-15} = RA;
59 bits<5> RA;
65 let Inst{11-15} = RA;
79 let RA = 0;
86 bits<5> RA;
93 let Inst{11-15} = RA;
[all …]
DPPCInstrHTM.td106 def : Pat<(int_ppc_tabortwc i32:$TO, i32:$RA, i32:$RB),
107 (TABORTWC (HTM_get_imm imm:$TO), $RA, $RB)>;
109 def : Pat<(int_ppc_tabortwci i32:$TO, i32:$RA, i32:$SI),
110 (TABORTWCI (HTM_get_imm imm:$TO), $RA, (HTM_get_imm imm:$SI))>;
112 def : Pat<(int_ppc_tabortdc i32:$TO, i32:$RA, i32:$RB),
113 (TABORTDC (HTM_get_imm imm:$TO), $RA, $RB)>;
115 def : Pat<(int_ppc_tabortdci i32:$TO, i32:$RA, i32:$SI),
116 (TABORTDCI (HTM_get_imm imm:$TO), $RA, (HTM_get_imm imm:$SI))>;
121 def : Pat<(int_ppc_treclaim i32:$RA),
122 (TRECLAIM $RA)>;
/third_party/boost/libs/numeric/ublas/test/
Dtest_matrix_vector.cpp62 Matrix A(3,3), RA(3,3); in test_matrix_row_facade() local
65 RA <<= 1, 2, 3, in test_matrix_row_facade()
70 rows(i) = matrix_row<Matrix>(RA, i); in test_matrix_row_facade()
73 pass &= compare_distance(A, RA); in test_matrix_row_facade()
79 Matrix A(3,3), RA(3,3); in test_matrix_row_facade() local
82 RA <<= 1, 2, 3, in test_matrix_row_facade()
87 rows[i] = matrix_row<Matrix>(RA, i); in test_matrix_row_facade()
90 pass &= compare_distance(A, RA); in test_matrix_row_facade()
96 Matrix RA(3,3); in test_matrix_row_facade() local
97 RowVector rows(RA); in test_matrix_row_facade()
[all …]
Dtest_assignment.cpp162 V A(3,3), RA(3,3); in test_matrix() local
164RA(0,0)= typename V::value_type(1); RA(0,1)=typename V::value_type(2); RA(0,2)=typename V::value_t… in test_matrix()
165RA(1,0)= typename V::value_type(4); RA(1,1)=typename V::value_type(5); RA(1,2)=typename V::value_t… in test_matrix()
166RA(2,0)= typename V::value_type(7); RA(2,1)=typename V::value_type(8); RA(2,2)=typename V::value_t… in test_matrix()
167 pass &= compare_distance(A, RA); in test_matrix()
338 V A(3,3), RA(3,3); in test_matrix_sparse_push_back() local
340RA(0,0)= typename V::value_type(1); RA(0,1)= typename V::value_type(2); RA(0,2)= typename V::value… in test_matrix_sparse_push_back()
341RA(1,0)= typename V::value_type(4); RA(1,1)= typename V::value_type(5); RA(1,2)= typename V::value… in test_matrix_sparse_push_back()
342RA(2,0)= typename V::value_type(7); RA(2,1)= typename V::value_type(8); RA(2,2)= typename V::value… in test_matrix_sparse_push_back()
343 pass &= compare_distance(A, RA); in test_matrix_sparse_push_back()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DRDFDeadCode.cpp88 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG)) { in scanInstr()
89 if (!LiveNodes.count(RA.Id)) in scanInstr()
90 WorkQ.push_back(RA.Id); in scanInstr()
135 auto RA = DFG.addr<RefNode*>(N); in collect() local
136 if (DFG.IsDef(RA)) in collect()
137 processDef(RA, WorkQ); in collect()
139 processUse(RA, WorkQ); in collect()
145 auto RA = DFG.addr<RefNode*>(N); in collect() local
146 dbgs() << PrintNode<RefNode*>(RA, DFG) << "\n"; in collect()
159 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG)) in collect()
[all …]
DRDFGraph.cpp108 static void printRefHeader(raw_ostream &OS, const NodeAddr<RefNode*> RA, in printRefHeader() argument
110 OS << Print<NodeId>(RA.Id, G) << '<' in printRefHeader()
111 << Print<RegisterRef>(RA.Addr->getRegRef(G), G) << '>'; in printRefHeader()
112 if (RA.Addr->getFlags() & NodeAttrs::Fixed) in printRefHeader()
792 NodeAddr<RefNode*> RA = NA; in cloneNode() local
793 RA.Addr->setReachingDef(0); in cloneNode()
794 RA.Addr->setSibling(0); in cloneNode()
890 for (NodeAddr<RefNode*> RA : IA.Addr->members(*this)) in build()
891 AllRefs.insert(RA.Addr->getRegRef(*this)); in build()
1129 NodeAddr<RefNode*> RA) const { in getRelatedRefs()
[all …]
DRDFRegisters.h115 bool alias(RegisterRef RA, RegisterRef RB) const { in alias()
116 if (!isRegMaskId(RA.Reg)) in alias()
117 return !isRegMaskId(RB.Reg) ? aliasRR(RA, RB) : aliasRM(RA, RB); in alias()
118 return !isRegMaskId(RB.Reg) ? aliasRM(RB, RA) : aliasMM(RA, RB); in alias()
152 bool aliasRR(RegisterRef RA, RegisterRef RB) const;
166 static bool isCoverOf(RegisterRef RA, RegisterRef RB, in isCoverOf()
168 return RegisterAggr(PRI).insert(RA).hasCoverOf(RB); in isCoverOf()
DHexagonRDFOpt.cpp166 for (NodeAddr<RefNode*> RA : SA.Addr->members(DFG)) { in run()
167 R2I.insert(std::make_pair(RA.Id, SA.Id)); in run()
168 if (DFG.IsDef(RA) && DeadNodes.count(RA.Id)) in run()
201 for (NodeAddr<RefNode*> RA : Refs) in removeOperand()
202 OpMap.insert(std::make_pair(RA.Id, getOpNum(RA.Addr->getOp()))); in removeOperand()
206 for (NodeAddr<RefNode*> RA : Refs) { in removeOperand()
207 unsigned N = OpMap[RA.Id]; in removeOperand()
209 RA.Addr->setRegRef(&MI->getOperand(N), DFG); in removeOperand()
211 RA.Addr->setRegRef(&MI->getOperand(N-1), DFG); in removeOperand()
DRDFCopy.cpp90 NodeAddr<RefNode*> RA = L.getNearestAliasedRef(RefRR, IA); in getLocalReachingDef() local
91 if (RA.Id != 0) { in getLocalReachingDef()
92 if (RA.Addr->getKind() == NodeAttrs::Def) in getLocalReachingDef()
93 return RA.Id; in getLocalReachingDef()
94 assert(RA.Addr->getKind() == NodeAttrs::Use); in getLocalReachingDef()
95 if (NodeId RD = RA.Addr->getReachingDef()) in getLocalReachingDef()
DRDFGraph.h755 NodeAddr<RefNode*> RA) const;
757 NodeAddr<RefNode*> RA, bool Create);
759 NodeAddr<RefNode*> RA) const;
761 NodeAddr<RefNode*> RA, bool Create);
763 NodeAddr<RefNode*> RA) const;
766 NodeAddr<RefNode*> RA) const;
842 locateNextRef(NodeAddr<InstrNode*> IA, NodeAddr<RefNode*> RA,
864 void removeFromOwner(NodeAddr<RefNode*> RA) { in removeFromOwner()
865 NodeAddr<InstrNode*> IA = RA.Addr->getOwner(*this); in removeFromOwner()
866 IA.Addr->removeMember(RA, *this); in removeFromOwner()
[all …]
/third_party/openssl/crypto/bn/asm/
Dbn-c64xplus.asm39 .asg B3,RA
55 [!B0] BNOP RA
77 BNOP RA,4
85 [!B0] BNOP RA
103 BNOP RA,4
111 [!B0] BNOP RA
126 SPKERNEL 2,0 ; fully overlap BNOP RA,5
129 BNOP RA,5
136 [!B0] BNOP RA
150 SPKERNEL 0,0 ; fully overlap BNOP RA,5
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DRelocationResolver.cpp361 int64_t RA = getELFAddend(R); in resolveRISCV() local
366 return (S + RA) & 0xFFFFFFFF; in resolveRISCV()
368 return (S + RA - R.getOffset()) & 0xFFFFFFFF; in resolveRISCV()
370 return S + RA; in resolveRISCV()
372 return (A & 0xC0) | ((S + RA) & 0x3F); in resolveRISCV()
374 return (A & 0xC0) | (((A & 0x3F) - (S + RA)) & 0x3F); in resolveRISCV()
376 return (A + (S + RA)) & 0xFF; in resolveRISCV()
378 return (A - (S + RA)) & 0xFF; in resolveRISCV()
380 return (A + (S + RA)) & 0xFFFF; in resolveRISCV()
382 return (A - (S + RA)) & 0xFFFF; in resolveRISCV()
[all …]
/third_party/skia/third_party/externals/icu/source/data/translit/
DInterIndic_Gurmukhi.txt28 \uE00B→ਰਿ; # REMAP (indicExceptions.txt): \u0A0B→ਰਿ = LETTER VOCALIC R→LETTER RA.VOWEL SIGN I
65 \uE030→ਰ; # LETTER RA
66 \uE031→ਰ\u0A3C; # FALLBACK LETTER RA+NUKTA
101 \uE058→ਕ\u0A3C; # FALLBACK RA+ NUKTA
109 \uE060→ਰਿ; # REMAP (indicExceptions.txt): \u0A60→ਰਿ = LETTER VOCALIC RR→LETTER RA.VOWEL SIGN I
126 \uE071→ਰ; # LETTER RA WITH MIDDLE DIAGONAL
127 \uE072→ਰ; # LETTER RA WITH LOWER DIAGONAL
DInterIndic_Tamil.txt21 \uE00B→ரி; # REMAP (indicExceptions.txt): \u0B8B→ரி = LETTER VOCALIC R→LETTER RA.VOWEL SIGN I
60 \uE030→ர; # LETTER RA
78 …AP (indicExceptions.txt): \u0BC3→\u0BCDரி = VOWEL SIGN VOCALIC R→SIGN VIRAMA.LETTER RA.VOWEL SIGN I
79 …P (indicExceptions.txt): \u0BC4→\u0BCDரி = VOWEL SIGN VOCALIC RR→SIGN VIRAMA.LETTER RA.VOWEL SIGN I
105 \uE060→ரி; # REMAP (indicExceptions.txt): \u0BE0→ரி = LETTER VOCALIC RR→LETTER RA.VOWEL SIGN I
122 \uE071→\u0BC0; # LETTER RA WITH MIDDLE DIAGONAL
123 \uE072→\u0BC0; # LETTER RA WITH LOWER DIAGONAL
/third_party/icu/icu4c/source/data/translit/
DInterIndic_Gurmukhi.txt28 \uE00B→ਰਿ; # REMAP (indicExceptions.txt): \u0A0B→ਰਿ = LETTER VOCALIC R→LETTER RA.VOWEL SIGN I
65 \uE030→ਰ; # LETTER RA
66 \uE031→ਰ\u0A3C; # FALLBACK LETTER RA+NUKTA
101 \uE058→ਕ\u0A3C; # FALLBACK RA+ NUKTA
109 \uE060→ਰਿ; # REMAP (indicExceptions.txt): \u0A60→ਰਿ = LETTER VOCALIC RR→LETTER RA.VOWEL SIGN I
126 \uE071→ਰ; # LETTER RA WITH MIDDLE DIAGONAL
127 \uE072→ਰ; # LETTER RA WITH LOWER DIAGONAL
DInterIndic_Tamil.txt21 \uE00B→ரி; # REMAP (indicExceptions.txt): \u0B8B→ரி = LETTER VOCALIC R→LETTER RA.VOWEL SIGN I
60 \uE030→ர; # LETTER RA
78 …AP (indicExceptions.txt): \u0BC3→\u0BCDரி = VOWEL SIGN VOCALIC R→SIGN VIRAMA.LETTER RA.VOWEL SIGN I
79 …P (indicExceptions.txt): \u0BC4→\u0BCDரி = VOWEL SIGN VOCALIC RR→SIGN VIRAMA.LETTER RA.VOWEL SIGN I
105 \uE060→ரி; # REMAP (indicExceptions.txt): \u0BE0→ரி = LETTER VOCALIC RR→LETTER RA.VOWEL SIGN I
122 \uE071→\u0BC0; # LETTER RA WITH MIDDLE DIAGONAL
123 \uE072→\u0BC0; # LETTER RA WITH LOWER DIAGONAL
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/
DInterIndic_Gurmukhi.txt27 \uE00B→ਰਿ; # REMAP (indicExceptions.txt): \u0A0B→ਰਿ = LETTER VOCALIC R→LETTER RA.VOWEL SIGN I
64 \uE030→ਰ; # LETTER RA
65 \uE031→ਰ\u0A3C; # FALLBACK LETTER RA+NUKTA
100 \uE058→ਕ\u0A3C; # FALLBACK RA+ NUKTA
108 \uE060→ਰਿ; # REMAP (indicExceptions.txt): \u0A60→ਰਿ = LETTER VOCALIC RR→LETTER RA.VOWEL SIGN I
125 \uE071→ਰ; # LETTER RA WITH MIDDLE DIAGONAL
126 \uE072→ਰ; # LETTER RA WITH LOWER DIAGONAL
DInterIndic_Tamil.txt20 \uE00B→ரி; # REMAP (indicExceptions.txt): \u0B8B→ரி = LETTER VOCALIC R→LETTER RA.VOWEL SIGN I
59 \uE030→ர; # LETTER RA
77 …AP (indicExceptions.txt): \u0BC3→\u0BCDரி = VOWEL SIGN VOCALIC R→SIGN VIRAMA.LETTER RA.VOWEL SIGN I
78 …P (indicExceptions.txt): \u0BC4→\u0BCDரி = VOWEL SIGN VOCALIC RR→SIGN VIRAMA.LETTER RA.VOWEL SIGN I
104 \uE060→ரி; # REMAP (indicExceptions.txt): \u0BE0→ரி = LETTER VOCALIC RR→LETTER RA.VOWEL SIGN I
121 \uE071→\u0BC0; # LETTER RA WITH MIDDLE DIAGONAL
122 \uE072→\u0BC0; # LETTER RA WITH LOWER DIAGONAL
DInterIndic_Bengali.txt57 \uE030→র; # LETTER RA
58 \uE031→র\u09BC; # FALLBACK to RA
118 \uE071→ৰ; # LETTER RA WITH MIDDLE DIAGONAL
119 \uE072→ৱ; # LETTER RA WITH LOWER DIAGONAL
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/
DDeadArgumentElimination.h131 void MarkValue(const RetOrArg &RA, Liveness L,
133 void MarkLive(const RetOrArg &RA);
135 void PropagateLiveness(const RetOrArg &RA);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetSubtargetInfo.cpp21 const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, in TargetSubtargetInfo() argument
23 : MCSubtargetInfo(TT, CPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) { in TargetSubtargetInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DDeadArgumentElimination.cpp662 void DeadArgumentEliminationPass::MarkValue(const RetOrArg &RA, Liveness L, in MarkValue() argument
666 MarkLive(RA); in MarkValue()
672 Uses.insert(std::make_pair(MaybeLiveUse, RA)); in MarkValue()
697 void DeadArgumentEliminationPass::MarkLive(const RetOrArg &RA) { in MarkLive() argument
698 if (LiveFunctions.count(RA.F)) in MarkLive()
701 if (!LiveValues.insert(RA).second) in MarkLive()
705 << RA.getDescription() << " live\n"); in MarkLive()
706 PropagateLiveness(RA); in MarkLive()
711 void DeadArgumentEliminationPass::PropagateLiveness(const RetOrArg &RA) { in PropagateLiveness() argument
715 UseMap::iterator Begin = Uses.lower_bound(RA); in PropagateLiveness()
[all …]
/third_party/boost/libs/context/src/asm/
Dontop_mips64_n64_elf_gas.S67 sd $ra, 144($sp) # save RA
68 sd $ra, 152($sp) # save RA as PC
104 ld $ra, 144($sp) # restore RA
Djump_mips32_o32_elf_gas.S61 sw $ra, 88($sp) # save RA
62 sw $ra, 92($sp) # save RA as PC
98 lw $ra, 88($sp) # restore RA
Dontop_mips32_o32_elf_gas.S61 sw $ra, 88($sp) # save RA
62 sw $ra, 92($sp) # save RA as PC
98 lw $ra, 88($sp) # restore RA

12345678910>>...14