| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| LLVMRemarkStreamer.h | 28 remarks::RemarkStreamer &RS; 35 LLVMRemarkStreamer(remarks::RemarkStreamer &RS) : RS(RS) {}
|
| /src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/ |
| RandomIRBuilder.cpp | 33 auto RS = makeSampler(Rand, make_filter_range(Insts, MatchesPred)); 35 RS.sample(nullptr, /*Weight=*/1); 36 if (Instruction *Src = RS.getSelection()) 44 auto RS = makeSampler<Value *>(Rand); 45 RS.sample(Pred.generate(Srcs, KnownTypes)); 61 RS.sample(NewLoad, RS.totalWeight()); 66 assert(!RS.isEmpty() && "Failed to generate sources"); 67 return RS.getSelection(); 97 auto RS = makeSampler<Use *>(Rand) [all...] |
| IRMutator.cpp | 39 auto RS = makeSampler<Function *>(IB.Rand); 42 RS.sample(&F, /*Weight=*/1); 43 mutate(*RS.getSelection(), IB); 61 auto RS = makeSampler<IRMutationStrategy *>(IB.Rand); 63 RS.sample(Strategy.get(), 64 Strategy->getWeight(CurSize, MaxSize, RS.totalWeight())); 65 auto Strategy = RS.getSelection(); 100 auto RS = makeSampler(IB.Rand, make_filter_range(Operations, OpMatchesPred)); 101 if (RS.isEmpty()) 103 return *RS; [all...] |
| /src/tests/compat/linux/ |
| h_linux.h | 41 #define RS(x) do { if ((x) == -1) exit(errno); } while (0)
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| ConstructionContext.cpp | 120 const auto *RS = cast<ReturnStmt>(ParentItem.getStmt()); 121 assert(!RS->getRetValue()->getType().getCanonicalType() 123 return create<CXX17ElidedCopyReturnedValueConstructionContext>(C, RS, 183 const auto *RS = cast<ReturnStmt>(TopItem.getStmt()); 184 return create<SimpleReturnedValueConstructionContext>(C, RS);
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| MacOSXAPIChecker.cpp | 78 const MemSpaceRegion *RS = RB->getMemorySpace(); 79 if (isa<GlobalsSpaceRegion>(RS)) 118 } else if (isa<HeapSpaceRegion>(RS)) { 120 } else if (isa<UnknownSpaceRegion>(RS)) {
|
| SmartPtrModeling.cpp | 292 TrackedRegionMapTy RS = State->get<TrackedRegionMap>(); 294 if (!RS.isEmpty()) { 296 for (auto I : RS) {
|
| /src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/ |
| intercept.py | 41 RS = chr(0x1e) 179 content = RS.join([pid, pid, 'wrapper', entry.cwd, command]) + GS 194 records = group.split(RS)
|
| /src/external/apache2/llvm/dist/llvm/lib/MCA/ |
| Instruction.cpp | 62 ReadState *RS = User.first; 64 RS->writeStartEvent(IID, RegisterID, ReadCycles); 142 for (const ReadState &RS : getUses()) { 143 const CriticalDependency &ReadCRD = RS.getCriticalRegDep();
|
| /src/sys/arch/ia64/stand/efi/libefi/ |
| efi.c | 42 EFI_RUNTIME_SERVICES *RS; 98 RS = ST->RuntimeServices;
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| Environment.cpp | 124 const auto *RS = cast<ReturnStmt>(S); 125 if (const Expr *RE = RS->getRetValue())
|
| CoreEngine.cpp | 243 const ReturnStmt *RS = nullptr; 247 RS = dyn_cast<ReturnStmt>(LastStmt->getStmt()); 250 RS = dyn_cast<ReturnStmt>(AutoDtor->getTriggerStmt()); 255 ExprEng.processEndOfFunction(BuilderCtx, Pred, RS); 564 const ReturnStmt *RS) { 569 CallExitBegin Loc(LocCtx, RS); 588 void CoreEngine::enqueueEndOfFunction(ExplodedNodeSet &Set, const ReturnStmt *RS) { 592 I = generateCallExitBeginNode(I, RS);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/ |
| RegisterFileStatistics.cpp | 68 const ReadState &RS = Inst.getUses()[E - (I+1)]; 75 if (WS.isWriteZero() && RS.isReadZero())
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| DFAPacketizer.cpp | 90 const NfaPath &RS = NfaPaths.front(); 92 // RS stores the cumulative resources used up to and including the I'th 95 return RS[0]; 98 return RS[InstIdx] ^ RS[InstIdx - 1];
|
| BranchRelaxation.cpp | 81 std::unique_ptr<RegScavenger> RS; 467 *BranchBB, *DestBB, DL, DestOffset - SrcOffset, RS.get()); 552 RS.reset(new RegScavenger());
|
| RegisterScavenging.cpp | 607 /// \p VReg is around the current position of the register scavenger \p RS. 611 static Register scavengeVReg(MachineRegisterInfo &MRI, RegScavenger &RS, 654 Register SReg = RS.scavengeRegisterBackwards(RC, DefMI.getIterator(), 665 RegScavenger &RS, 668 RS.enterBasicBlockEnd(MBB); 675 RS.backward(I); 694 Register SReg = scavengeVReg(MRI, RS, Reg, true); 696 RS.setRegUsed(SReg); 720 Register SReg = scavengeVReg(MRI, RS, Reg, false); 738 void llvm::scavengeFrameVirtualRegs(MachineFunction &MF, RegScavenger &RS) { [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonBitSimplify.cpp | 78 RegisterSet(const RegisterSet &RS) = default; 109 RegisterSet &insert(const RegisterSet &Rs) { 110 return static_cast<RegisterSet&>(BitVector::operator|=(Rs)); 112 RegisterSet &remove(const RegisterSet &Rs) { 113 return static_cast<RegisterSet&>(BitVector::reset(Rs)); 136 bool includes(const RegisterSet &Rs) const { 138 return !Rs.BitVector::test(*this); 140 bool intersects(const RegisterSet &Rs) const { 141 return BitVector::anyCommon(Rs); 161 : RS(S), TRI(RI) { [all...] |
| HexagonGenInsert.cpp | 95 RegisterSet(const RegisterSet &RS) : BitVector(RS) {} 96 RegisterSet &operator=(const RegisterSet &RS) { 97 BitVector::operator=(RS); 129 RegisterSet &insert(const RegisterSet &Rs) { 130 return static_cast<RegisterSet&>(BitVector::operator|=(Rs)); 132 RegisterSet &remove(const RegisterSet &Rs) { 133 return static_cast<RegisterSet&>(BitVector::reset(Rs)); 156 bool includes(const RegisterSet &Rs) const { 158 return !Rs.BitVector::test(*this) [all...] |
| /src/external/bsd/ntp/dist/include/ |
| ascii.h | 73 #define RS 30
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| SuffixTree.h | 244 RepeatedSubstring RS; 259 RS = RepeatedSubstring(); 298 RS.Length = Length; 300 RS.StartIndices.push_back(Leaf->SuffixIdx); 312 RepeatedSubstring &operator*() { return RS; }
|
| /src/external/apache2/llvm/dist/llvm/lib/MCA/HardwareUnits/ |
| RegisterFile.cpp | 356 bool RegisterFile::canEliminateMove(const WriteState &WS, const ReadState &RS, 358 const RegisterMapping &RMFrom = RegisterMappings[RS.getRegisterID()]; 394 bool IsZeroMove = ZeroRegisters[RS.getRegisterID()]; 422 const ReadState &RS = Reads[I]; 424 if (!canEliminateMove(WS, RS, RegisterFileIndex)) 429 ReadState &RS = Reads[I]; 432 const RegisterMapping &RMFrom = RegisterMappings[RS.getRegisterID()]; 439 RRIFrom.RenameAs ? RRIFrom.RenameAs : RS.getRegisterID(); 450 if (ZeroRegisters[RS.getRegisterID()]) { 452 RS.setReadZero() [all...] |
| ResourceManager.cpp | 105 getStrategyFor(const ResourceState &RS) { 106 if (RS.isAResourceGroup() || RS.getNumUnits() > 1) 107 return std::make_unique<DefaultResourceStrategy>(RS.getReadyMask()); 138 const ResourceState &RS = *Resources[Index]; 139 if (!RS.isAResourceGroup()) { 180 ResourceState &RS = *Resources[Index]; 181 assert(RS.isReady() && "No available units to select!"); 183 // Special case where RS is not a group, and it only declares a single 185 if (!RS.isAResourceGroup() && RS.getNumUnits() == 1 [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| AArch64SpeculationHardening.cpp | 288 RegScavenger RS; 289 RS.enterBasicBlock(MBB); 297 // instruction pointed to by RS.getCurrentPosition(). 300 RS.forward(std::prev(I)); 307 unsigned TmpReg = RS.FindUnusedReg(&AArch64::GPR64commonRegClass); 308 LLVM_DEBUG(dbgs() << "RS finds "
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| SILowerSGPRSpills.cpp | 203 RegScavenger *RS = nullptr; 207 TFI->determineCalleeSavesSGPR(MF, SavedRegs, RS); 327 std::unique_ptr<RegScavenger> RS; 364 if (!RS) 365 RS.reset(new RegScavenger()); 368 RS->enterBasicBlock(MBB); 369 TRI->eliminateFrameIndex(MI, 0, FIOp, RS.get());
|
| /src/external/apache2/llvm/dist/clang/tools/scan-build-py/libear/ |
| ear.c | 409 static int const RS = 0x1e; 433 fprintf(fd, "%d%c", getpid(), RS); 434 fprintf(fd, "%d%c", getppid(), RS); 435 fprintf(fd, "%s%c", fun, RS); 436 fprintf(fd, "%s%c", cwd, RS);
|