Home
last modified time | relevance | path

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

/external/pcre/dist/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.c122 #define CRD(d) ((d) << 21) macro
1872 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()
680 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in ConvertRecordDeclType() local
681 for (const auto &I : CRD->bases()) { in ConvertRecordDeclType()
/external/llvm/lib/Target/PowerPC/
DPPCInstrInfo.td2162 def CRAND : XLForm_1<19, 257, (outs crbitrc:$CRD),
2164 "crand $CRD, $CRA, $CRB", IIC_BrCR,
2165 [(set i1:$CRD, (and i1:$CRA, i1:$CRB))]>;
2167 def CRNAND : XLForm_1<19, 225, (outs crbitrc:$CRD),
2169 "crnand $CRD, $CRA, $CRB", IIC_BrCR,
2170 [(set i1:$CRD, (not (and i1:$CRA, i1:$CRB)))]>;
2172 def CROR : XLForm_1<19, 449, (outs crbitrc:$CRD),
2174 "cror $CRD, $CRA, $CRB", IIC_BrCR,
2175 [(set i1:$CRD, (or i1:$CRA, i1:$CRB))]>;
2177 def CRXOR : XLForm_1<19, 193, (outs crbitrc:$CRD),
[all …]
DPPCInstrFormats.td978 bits<5> CRD;
984 let Inst{6-10} = CRD;
994 bits<5> CRD;
998 let Inst{6-10} = CRD;
999 let Inst{11-15} = CRD;
1000 let Inst{16-20} = CRD;
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
/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.cpp94 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) { in getRawCommentForDeclNoCache() local
95 if (CRD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) in getRawCommentForDeclNoCache()
293 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) { in adjustDeclToTemplate() local
295 if (const ClassTemplateDecl *CTD = CRD->getDescribedClassTemplate()) in adjustDeclToTemplate()
301 dyn_cast<ClassTemplateSpecializationDecl>(CRD)) { in adjustDeclToTemplate()
315 CRD->getMemberSpecializationInfo()) in adjustDeclToTemplate()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp2936 Value *CRD = B.CreateSExtOrTrunc(CountRoundDown, in createEmptyLoop() local
2939 EndValue = II.transform(B, CRD); in createEmptyLoop()
/external/clang/lib/Sema/
DSemaDeclAttr.cpp434 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in checkRecordTypeForCapability() local
436 if (CRD->lookupInBases([](const CXXBaseSpecifier *BS, CXXBasePath &) { in checkRecordTypeForCapability()
DSemaChecking.cpp8540 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in IsTailPaddedMemberArray() local
8541 if (!CRD->isStandardLayout()) return false; in IsTailPaddedMemberArray()
DSemaExpr.cpp11259 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in BuildBuiltinOffsetOf() local
11260 bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD(); in BuildBuiltinOffsetOf()