Home
last modified time | relevance | path

Searched refs:CRD (Results 1 – 16 of 16) sorted by relevance

/external/pcre/dist2/src/sljit/
DsljitNativePPC_32.c138 FAIL_IF(push_inst(compiler, CMPI | CRD(0) | A(src1) | compiler->imm)); in emit_single_op()
140 return push_inst(compiler, CMPLI | CRD(4) | A(src1) | compiler->imm); in emit_single_op()
145 FAIL_IF(push_inst(compiler, CMPL | CRD(4) | A(src1) | B(src2))); in emit_single_op()
147 FAIL_IF(push_inst(compiler, CMP | CRD(0) | A(src1) | B(src2))); in emit_single_op()
153 FAIL_IF(push_inst(compiler, CMPL | CRD(4) | A(src1) | B(src2))); in emit_single_op()
DsljitNativePPC_64.c260 …FAIL_IF(push_inst(compiler, CMPI | CRD(0 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | compiler-… in emit_single_op()
262 …return push_inst(compiler, CMPLI | CRD(4 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | compiler-… in emit_single_op()
267 …FAIL_IF(push_inst(compiler, CMPL | CRD(4 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | B(src2))); in emit_single_op()
269 return push_inst(compiler, CMP | CRD(0 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | B(src2)); in emit_single_op()
276 …FAIL_IF(push_inst(compiler, CMPL | CRD(4 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | B(src2))); in emit_single_op()
DsljitNativePPC_common.c126 #define CRD(d) ((d) << 21) macro
1876 return push_inst(compiler, FCMPU | CRD(4) | FA(src1) | FB(src2)); in sljit_emit_fop1_cmp()
/external/clang/lib/CodeGen/
DCodeGenTypes.cpp133 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in isSafeToConvert() local
134 for (const auto &I : CRD->bases()) in isSafeToConvert()
690 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in ConvertRecordDeclType() local
691 for (const auto &I : CRD->bases()) { in ConvertRecordDeclType()
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCInstrFormats.td440 bits<5> CRD;
446 let Inst{6-10} = CRD;
456 bits<5> CRD;
460 let Inst{6-10} = CRD;
461 let Inst{11-15} = CRD;
462 let Inst{16-20} = CRD;
DPPCInstrInfo.td1042 def CREQV : XLForm_1<19, 289, (outs CRBITRC:$CRD),
1044 "creqv $CRD, $CRA, $CRB", BrCR,
1047 def CROR : XLForm_1<19, 449, (outs CRBITRC:$CRD),
1049 "cror $CRD, $CRA, $CRB", BrCR,
/external/llvm/lib/Target/PowerPC/
DPPCInstrInfo.td2231 def CRAND : XLForm_1<19, 257, (outs crbitrc:$CRD),
2233 "crand $CRD, $CRA, $CRB", IIC_BrCR,
2234 [(set i1:$CRD, (and i1:$CRA, i1:$CRB))]>;
2236 def CRNAND : XLForm_1<19, 225, (outs crbitrc:$CRD),
2238 "crnand $CRD, $CRA, $CRB", IIC_BrCR,
2239 [(set i1:$CRD, (not (and i1:$CRA, i1:$CRB)))]>;
2241 def CROR : XLForm_1<19, 449, (outs crbitrc:$CRD),
2243 "cror $CRD, $CRA, $CRB", IIC_BrCR,
2244 [(set i1:$CRD, (or i1:$CRA, i1:$CRB))]>;
2246 def CRXOR : XLForm_1<19, 193, (outs crbitrc:$CRD),
[all …]
DPPCSchedule440.td85 // uncommitted lwarx/stwcx. is in AGEN, CRD, or LWB.
88 // resources are empty. AGEN and CRD are held empty until the msync/mbar
DPPCInstrFormats.td1183 bits<5> CRD;
1189 let Inst{6-10} = CRD;
1199 bits<5> CRD;
1203 let Inst{6-10} = CRD;
1204 let Inst{11-15} = CRD;
1205 let Inst{16-20} = CRD;
/external/clang/lib/StaticAnalyzer/Core/
DRegionStore.cpp1925 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) in isRecordEmpty() local
1926 return CRD->getNumBases() == 0; in isRecordEmpty()
/external/clang/lib/AST/
DASTContext.cpp95 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) { in getRawCommentForDeclNoCache() local
96 if (CRD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) in getRawCommentForDeclNoCache()
294 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) { in adjustDeclToTemplate() local
296 if (const ClassTemplateDecl *CTD = CRD->getDescribedClassTemplate()) in adjustDeclToTemplate()
302 dyn_cast<ClassTemplateSpecializationDecl>(CRD)) { in adjustDeclToTemplate()
316 CRD->getMemberSpecializationInfo()) in adjustDeclToTemplate()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp3077 Value *CRD = B.CreateSExtOrTrunc(CountRoundDown, in createEmptyLoop() local
3080 EndValue = II.transform(B, CRD, PSE.getSE(), DL); in createEmptyLoop()
/external/clang/lib/Sema/
DSemaDeclAttr.cpp457 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in checkRecordTypeForCapability() local
459 if (CRD->lookupInBases([](const CXXBaseSpecifier *BS, CXXBasePath &) { in checkRecordTypeForCapability()
DSemaExpr.cpp11791 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in BuildBuiltinOffsetOf() local
11792 bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD(); in BuildBuiltinOffsetOf()
DSemaChecking.cpp9562 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in IsTailPaddedMemberArray() local
9563 if (!CRD->isStandardLayout()) return false; in IsTailPaddedMemberArray()
/external/lisa/ipynb/tutorial/
D06_TraceAnalysis.ipynb785 …xjIqqirYvH0zy95cRrI4WXOsoqqi\nJuHJzcll0rhJda7vltut3vvX29Pj7s+QPTHKONTN3X8C/CRD/fPA8RnqdwDn19tKERER…