Home
last modified time | relevance | path

Searched refs:SR (Results 1 – 25 of 241) sorted by relevance

12345678910

/external/llvm/test/CodeGen/Mips/
Dhelloworld.ll7 …RUN: llc -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=SR
18 ; SR: .set mips16 # @main
22 ; SR-NOT: .set noreorder
23 ; SR-NOT: .set nomacro
24 ; SR-NOT: .set noat
28 ; SR: save $ra, $s0, $s1, [[FS:[0-9]+]]
38 ; SR: restore $ra, $s0, $s1, [[FS]]
49 ; SR-NOT: .set at
50 ; SR-NOT: .set macro
51 ; SR-NOT: .set reorder
[all …]
/external/elfutils/backends/
Dx86_64_corenote.c44 #define SR(at, n, dwreg) \ macro
63 SR (17,1, 51), /* %cs */
66 SR (20,1, 52), /* %ss */
68 SR (23,1, 53), /* %ds */
69 SR (24,1, 50), /* %es */
70 SR (25,2, 54), /* %fs-%gs */
73 #undef SR
Di386_corenote.c44 #define SR(at, n, dwreg) \ macro
52 SR (7, 1, 43), /* %ds */
53 SR (8, 1, 40), /* %es */
54 SR (9, 1, 44), /* %fs */
55 SR (10, 1, 45), /* %gs */
58 SR (13, 1, 41), /* %cs */
61 SR (16, 1, 42), /* %ss */
64 #undef SR
/external/llvm/lib/CodeGen/
DMachineCopyPropagation.cpp77 for (MCSubRegIterator SR(MappedDef, TRI); SR.isValid(); ++SR) in SourceNoLongerAvailable() local
78 AvailCopyMap.erase(*SR); in SourceNoLongerAvailable()
218 for (MCSubRegIterator SR(Def, TRI); SR.isValid(); ++SR) { in CopyPropagateBlock() local
219 CopyMap[*SR] = MI; in CopyPropagateBlock()
220 AvailCopyMap[*SR] = MI; in CopyPropagateBlock()
DDeadMachineInstructionElim.cpp161 for (MCSubRegIterator SR(Reg, TRI); SR.isValid(); ++SR) in runOnMachineFunction() local
162 LivePhysRegs.reset(*SR); in runOnMachineFunction()
DLiveVariables.cpp436 for (MCSuperRegIterator SR(Reg, TRI); SR.isValid(); ++SR) in HandleRegMask() local
437 if ((PhysRegDef[*SR] || PhysRegUse[*SR]) && MO.clobbersPhysReg(*SR)) in HandleRegMask()
438 Super = *SR; in HandleRegMask()
DCriticalAntiDepBreaker.cpp259 for (MCSuperRegIterator SR(Reg, TRI); SR.isValid(); ++SR) in ScanInstruction() local
260 Classes[*SR] = reinterpret_cast<TargetRegisterClass *>(-1); in ScanInstruction()
/external/clang/lib/StaticAnalyzer/Checkers/
DCastSizeChecker.cpp52 const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R); in checkPreStmt() local
53 if (SR == 0) in checkPreStmt()
57 SVal extent = SR->getExtent(svalBuilder); in checkPreStmt()
DUnreachableCodeChecker.cpp147 SourceRange SR; in checkEndAnalysis() local
151 SR = S->getSourceRange(); in checkEndAnalysis()
154 if (SR.isInvalid() || !SL.isValid()) in checkEndAnalysis()
166 "This statement is never executed", DL, SR); in checkEndAnalysis()
DCheckerDocumentation.cpp154 void checkDeadSymbols(SymbolReaper &SR, CheckerContext &C) const {} in checkDeadSymbols() argument
215 void checkLiveSymbols(ProgramStateRef State, SymbolReaper &SR) const {} in checkLiveSymbols()
/external/valgrind/main/coregrind/m_syswrap/
Dpriv_syswrap-generic.h218 #define SR SysRes macro
221 extern SysRes ML_(generic_POST_sys_socketpair) ( TId, SR, UW, UW, UW, UW );
222 extern SysRes ML_(generic_POST_sys_socket) ( TId, SR );
225 extern SysRes ML_(generic_POST_sys_accept) ( TId, SR, UW, UW, UW );
229 extern void ML_(generic_POST_sys_recvfrom) ( TId, SR, UW, UW, UW, UW, UW, UW );
235 extern void ML_(generic_POST_sys_getsockname) ( TId, SR, UW, UW, UW );
237 extern void ML_(generic_POST_sys_getpeername) ( TId, SR, UW, UW, UW );
277 #undef SR
Dpriv_syswrap-linux-variants.h44 #define SR SysRes macro
53 #undef SR
Dpriv_syswrap-linux.h283 #define SR SysRes macro
291 extern void ML_(linux_POST_sys_getsockopt) ( TId, SR, UW, UW, UW, UW, UW );
295 #undef SR
/external/clang/tools/libclang/
DCXLoadedDiagnostic.cpp230 CXSourceRange &SR);
511 CXSourceRange &SR) { in readRange() argument
523 SR = clang_getRange(startLoc, endLoc); in readRange()
613 CXSourceRange SR; in readDiagnosticBlock() local
614 if (readRange(TopDiags, Record, 0, SR)) in readDiagnosticBlock()
616 D->Ranges.push_back(SR); in readDiagnosticBlock()
621 CXSourceRange SR; in readDiagnosticBlock() local
622 if (readRange(TopDiags, Record, 0, SR)) in readDiagnosticBlock()
628 D->FixIts.push_back(std::make_pair(SR, RetStr)); in readDiagnosticBlock()
/external/clang/lib/StaticAnalyzer/Core/
DSVals.cpp41 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R)) { in hasConjuredSymbol() local
42 SymbolRef sym = SR->getSymbol(); in hasConjuredSymbol()
89 while (const SubRegion *SR = dyn_cast<SubRegion>(R)) { in getLocSymbolInBase() local
90 if (const SymbolicRegion *SymR = dyn_cast<SymbolicRegion>(SR)) in getLocSymbolInBase()
93 R = SR->getSuperRegion(); in getLocSymbolInBase()
DProgramState.cpp565 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R)) in scan() local
566 if (!visitor.VisitSymbol(SR->getSymbol())) in scan()
570 if (const SubRegion *SR = dyn_cast<SubRegion>(R)) { in scan() local
571 const MemRegion *Super = SR->getSuperRegion(); in scan()
578 if (!StoreMgr.scanReachableSymbols(state->getStore(), SR, *this)) in scan()
641 if (const SymbolicRegion *SR = dyn_cast_or_null<SymbolicRegion>(R)) in addTaint() local
642 return addTaint(SR->getSymbol(), Kind); in addTaint()
684 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(Reg)) in isTainted() local
685 return isTainted(SR->getSymbol(), K); in isTainted()
744 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(Reg)) { in REGISTER_TRAIT_WITH_PROGRAMSTATE() local
[all …]
DRegionStore.cpp930 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(baseR)) in VisitBaseRegion() local
931 IS.insert(SR->getSymbol()); in VisitBaseRegion()
1172 const SymbolicRegion *SR = cast<SymbolicRegion>(MR); in getBinding() local
1173 T = SR->getSymbol()->getType(); in getBinding()
1798 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R)) { in bind() local
1801 QualType T = SR->getSymbol()->getType(); in bind()
1805 R = GetElementZeroRegion(SR, T); in bind()
2060 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(baseR)) { in VisitAddedToCluster() local
2061 if (SymReaper.isLive(SR->getSymbol())) in VisitAddedToCluster()
2062 AddToWorkList(SR, &C); in VisitAddedToCluster()
[all …]
/external/llvm/utils/TableGen/
DCodeGenRegisters.cpp209 CodeGenRegister *SR = I->second; in inheritRegUnits() local
211 mergeRegUnits(RegUnits, SR->RegUnits); in inheritRegUnits()
225 CodeGenRegister *SR = ExplicitSubRegs[i]; in computeSubRegs() local
227 if (!SubRegs.insert(std::make_pair(Idx, SR)).second) in computeSubRegs()
232 SubReg2Idx.insert(std::make_pair(SR, Idx)); in computeSubRegs()
241 CodeGenRegister *SR = ExplicitSubRegs[i]; in computeSubRegs() local
242 const SubRegMap &Map = SR->computeSubRegs(RegBank); in computeSubRegs()
259 CodeGenRegister *SR = SubRegs[Idx]; in computeSubRegs() local
260 const SubRegMap &Map = SR->computeSubRegs(RegBank); in computeSubRegs()
297 CodeGenRegister *SR = SubRegs[Idx]; in computeSubRegs() local
[all …]
/external/clang/include/clang/AST/
DRawCommentList.h42 RawComment(const SourceManager &SourceMgr, SourceRange SR,
144 RawComment(SourceRange SR, CommentKind K, bool IsTrailingComment, in RawComment() argument
146 Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K), in RawComment()
/external/llvm/lib/Target/X86/
DX86FloatingPoint.cpp271 unsigned SR = getScratchReg(); in duplicatePendingSTBeforeKill() local
273 << " in FP" << RegNo << " to FP" << SR << '\n'); in duplicatePendingSTBeforeKill()
274 duplicateToTop(RegNo, SR, I); in duplicatePendingSTBeforeKill()
275 PendingST[i] = SR; in duplicatePendingSTBeforeKill()
1348 unsigned SR = getScratchReg(); in handleSpecialFP() local
1349 PendingST[DstST] = SR; in handleSpecialFP()
1350 Stack[Slot] = SR; in handleSpecialFP()
1351 RegMap[SR] = Slot; in handleSpecialFP()
1556 unsigned SR = getScratchReg(); in handleSpecialFP() local
1557 duplicateToTop(PendingST[i], SR, I); in handleSpecialFP()
[all …]
/external/clang/lib/AST/
DRawCommentList.cpp65 RawComment::RawComment(const SourceManager &SourceMgr, SourceRange SR, in RawComment() argument
67 Range(SR), RawTextValid(false), BriefTextValid(false), in RawComment()
71 if (SR.getBegin() == SR.getEnd() || getRawText(SourceMgr).empty()) { in RawComment()
/external/clang/lib/Sema/
DSemaExprObjC.cpp420 ExprResult Sema::BuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr) { in BuildObjCBoxedExpr() argument
423 new (Context) ObjCBoxedExpr(ValueExpr, Context.DependentTy, NULL, SR); in BuildObjCBoxedExpr()
443 SR.getBegin(), LookupOrdinaryName); in BuildObjCBoxedExpr()
454 Diag(SR.getBegin(), diag::err_undeclared_nsstring); in BuildObjCBoxedExpr()
458 Diag(SR.getBegin(), diag::err_undeclared_nsstring); in BuildObjCBoxedExpr()
497 if (!validateBoxingMethod(*this, SR.getBegin(), NSStringDecl, in BuildObjCBoxedExpr()
540 BoxingMethod = getNSNumberFactoryMethod(*this, SR.getBegin(), ValueType); in BuildObjCBoxedExpr()
545 Diag(SR.getBegin(), diag::err_objc_incomplete_boxed_expression_type) in BuildObjCBoxedExpr()
550 BoxingMethod = getNSNumberFactoryMethod(*this, SR.getBegin(), in BuildObjCBoxedExpr()
556 Diag(SR.getBegin(), diag::err_objc_illegal_boxed_expression_type) in BuildObjCBoxedExpr()
[all …]
/external/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp214 Value *SR = Builder.CreateSub(Tmp0, Tmp1); in generateUnsignedDivisionCode() local
215 Value *Ret0_4 = Builder.CreateICmpUGT(SR, ThirtyOne); in generateUnsignedDivisionCode()
217 Value *RetDividend = Builder.CreateICmpEQ(SR, ThirtyOne); in generateUnsignedDivisionCode()
229 Value *SR_1 = Builder.CreateAdd(SR, One); in generateUnsignedDivisionCode()
230 Value *Tmp2 = Builder.CreateSub(ThirtyOne, SR); in generateUnsignedDivisionCode()
/external/clang/test/SemaCXX/
Doverload-call.cpp296 struct SR { struct
297 SR(const string&);
300 void f(SR) { } in f() argument
/external/tcpdump/
Dpacketdat.awk7 $5 !~ /[SR]/ {

12345678910