Home
last modified time | relevance | path

Searched refs:FR (Results 1 – 25 of 119) sorted by relevance

12345

/openbsd/gnu/usr.bin/binutils/opcodes/
H A Dip2k-opc.c300 { { MNEM, ' ', OP (FR), 0 } },
324 { { MNEM, ' ', OP (FR), 0 } },
348 { { MNEM, ' ', OP (FR), 0 } },
354 { { MNEM, ' ', OP (FR), 0 } },
372 { { MNEM, ' ', OP (FR), 0 } },
384 { { MNEM, ' ', OP (FR), 0 } },
396 { { MNEM, ' ', OP (FR), 0 } },
408 { { MNEM, ' ', OP (FR), 0 } },
420 { { MNEM, ' ', OP (FR), 0 } },
432 { { MNEM, ' ', OP (FR), 0 } },
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/
H A Dip2k-opc.c298 { { MNEM, ' ', OP (FR), 0 } },
322 { { MNEM, ' ', OP (FR), 0 } },
346 { { MNEM, ' ', OP (FR), 0 } },
352 { { MNEM, ' ', OP (FR), 0 } },
370 { { MNEM, ' ', OP (FR), 0 } },
382 { { MNEM, ' ', OP (FR), 0 } },
394 { { MNEM, ' ', OP (FR), 0 } },
406 { { MNEM, ' ', OP (FR), 0 } },
418 { { MNEM, ' ', OP (FR), 0 } },
430 { { MNEM, ' ', OP (FR), 0 } },
[all …]
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedPointee.cpp36 : FieldNode(FR), IsDereferenced(IsDereferenced) {} in LocField()
65 NeedsCastLocField(const FieldRegion *FR, const QualType &T) in NeedsCastLocField() argument
66 : FieldNode(FR), CastBackType(T) {} in NeedsCastLocField()
93 CyclicLocField(const FieldRegion *FR) : FieldNode(FR) {} in CyclicLocField() argument
138 const FieldRegion *FR, FieldChainInfo LocalChain) { in isDereferencableUninit() argument
140 SVal V = State->getSVal(FR); in isDereferencableUninit()
142 assert((isDereferencableType(FR->getDecl()->getType()) || in isDereferencableUninit()
153 LocalChain.add(LocField(FR, /*IsDereferenced*/ false)), FR); in isDereferencableUninit()
170 return addFieldToUninits(LocalChain.add(CyclicLocField(FR)), FR); in isDereferencableUninit()
181 return isNonUnionUninit(R, LocalChain.add(LocField(FR))); in isDereferencableUninit()
[all …]
H A DUninitializedObject.h87 const FieldRegion *FR;
94 FieldNode(const FieldRegion *FR) : FR(FR) {} in FieldNode() argument
111 if (FR == nullptr) in isSameRegion()
114 return FR == OtherFR; in isSameRegion()
117 const FieldRegion *getRegion() const { return FR; } in getRegion()
119 assert(FR); in getDecl()
120 return FR->getDecl(); in getDecl()
185 bool contains(const FieldRegion *FR) const;
299 bool isDereferencableUninit(const FieldRegion *FR, FieldChainInfo LocalChain);
H A DUninitializedObjectChecker.cpp58 RegularField(const FieldRegion *FR) : FieldNode(FR) {} in RegularField() argument
242 const FieldRegion *FR = Chain.getUninitRegion(); in addFieldToUninits() local
249 FR->getDecl()->getLocation())) in addFieldToUninits()
255 if (State->contains<AnalyzedRegions>(FR)) in addFieldToUninits()
265 State = State->add<AnalyzedRegions>(FR); in addFieldToUninits()
300 const auto *FR = FieldVal.getRegionAs<FieldRegion>(); in isNonUnionUninit() local
306 if (LocalChain.contains(FR)) in isNonUnionUninit()
310 if (isNonUnionUninit(FR, LocalChain.add(RegularField(FR)))) in isNonUnionUninit()
316 if (isUnionUninit(FR)) { in isNonUnionUninit()
332 if (isDereferencableUninit(FR, LocalChain)) in isNonUnionUninit()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DTargetProcessControlTypes.h192 static size_t size(const tpctypes::FinalizeRequest &FR) { in size() argument
193 return FRAL::size(FR.Segments, FR.Actions); in size()
197 const tpctypes::FinalizeRequest &FR) { in serialize() argument
198 return FRAL::serialize(OB, FR.Segments, FR.Actions); in serialize()
202 return FRAL::deserialize(IB, FR.Segments, FR.Actions); in deserialize()
233 static size_t size(const tpctypes::SharedMemoryFinalizeRequest &FR) { in size() argument
234 return FRAL::size(FR.Segments, FR.Actions); in size()
238 const tpctypes::SharedMemoryFinalizeRequest &FR) { in serialize() argument
239 return FRAL::serialize(OB, FR.Segments, FR.Actions); in serialize()
243 tpctypes::SharedMemoryFinalizeRequest &FR) { in deserialize() argument
[all …]
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DSimpleExecutorMemoryManager.cpp36 Error SimpleExecutorMemoryManager::finalize(tpctypes::FinalizeRequest &FR) { in finalize() argument
41 if (FR.Segments.empty()) { in finalize()
43 if (FR.Actions.empty()) in finalize()
51 for (auto &Seg : FR.Segments) in finalize()
54 for (auto &ActPair : FR.Actions) in finalize()
98 joinErrors(std::move(Err), FR.Actions[--SuccessfulFinalizationActions] in finalize()
110 for (auto &Seg : FR.Segments) { in finalize()
142 for (auto &ActPair : FR.Actions) { in finalize()
H A DExecutorSharedMemoryMapperService.cpp122 ExecutorAddr Reservation, tpctypes::SharedMemoryFinalizeRequest &FR) { in initialize() argument
128 for (auto &Segment : FR.Segments) { in initialize()
162 auto DeinitializeActions = shared::runFinalizeActions(FR.Actions); in initialize()
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp166 Alloc->finalize([S = std::move(Self)](FinalizeResult FR) mutable { in linkPhase3() argument
171 TmpSelf->linkPhase4(std::move(S), std::move(FR)); in linkPhase3()
176 FinalizeResult FR) { in linkPhase4() argument
182 if (!FR) in linkPhase4()
183 return Ctx->notifyFailed(FR.takeError()); in linkPhase4()
185 Ctx->notifyFinalized(std::move(*FR)); in linkPhase4()
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericJITLinkMemoryManager.cpp46 tpctypes::FinalizeRequest FR; in finalize() local
49 FR.Segments.push_back(tpctypes::SegFinalizeRequest{ in finalize()
58 std::swap(FR.Actions, G.allocActions()); in finalize()
74 Parent.SAs.Allocator, std::move(FR)); in finalize()
H A DEPCGenericRTDyldMemoryManager.cpp232 tpctypes::FinalizeRequest FR; in finalizeMemory() local
236 FR.Segments.push_back({}); in finalizeMemory()
237 auto &Seg = FR.Segments.back(); in finalizeMemory()
260 FR.Actions.push_back( in finalizeMemory()
273 SAs.Finalize, FinalizeErr, SAs.Instance, std::move(FR))) { in finalizeMemory()
H A DMemoryMapper.cpp313 tpctypes::SharedMemoryFinalizeRequest FR; in initialize() local
315 AI.Actions.swap(FR.Actions); in initialize()
317 FR.Segments.reserve(AI.Segments.size()); in initialize()
329 FR.Segments.push_back(SegReq); in initialize()
344 SAs.Instance, Reservation->first, std::move(FR)); in initialize()
/openbsd/gnu/usr.bin/binutils/cpu/
H A Dfrv.cpu298 ; FR Move to FR unit
299 (unit u-fr2fr "FR Move to FR Unit" ()
663 ; FR Move to FR unit
664 (unit u-fr2fr "FR Move to FR Unit" ()
3955 (load-double-r-r lddf 1 DF OP_02 OPE1_0B FR FR-ACCESS
4377 (load-double-r-simm lddfi 1 DF OP_3B FR FR-ACCESS
4526 (store-double-r-r stdf DF OP_03 OPE1_0B FR FR-ACCESS
4550 (r-store-double rstdf DF OP_03 OPE1_2B FR 1 FR-ACCESS
5017 (store-double-r-simm stdfi DF OP_56 FR FR-ACCESS
6353 (clear-ne-flag-r clrfr OP_0A OPE1_02 FR 1 FR-ACCESS
[all …]
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonEarlyIfConv.cpp204 unsigned TSR, unsigned FR, unsigned FSR);
779 unsigned PredR, unsigned TR, unsigned TSR, unsigned FR, unsigned FSR) { in buildMux() argument
806 .addReg(FR, 0, FSR); in buildMux()
818 unsigned TR = 0, TSR = 0, FR = 0, FSR = 0, SR = 0, SSR = 0; in updatePhiNodes() local
826 FR = RO.getReg(), FSR = RO.getSubReg(); in updatePhiNodes()
834 else if (FR == 0) in updatePhiNodes()
835 FR = SR, FSR = SSR; in updatePhiNodes()
837 assert(TR || FR); in updatePhiNodes()
840 if (TR && FR) { in updatePhiNodes()
844 FP.PredR, TR, TSR, FR, FSR); in updatePhiNodes()
[all …]
H A DRDFCopy.cpp146 auto FR = EM.find(DR); in run() local
147 if (FR == EM.end()) in run()
149 RegisterRef SR = FR->second; in run()
/openbsd/gnu/usr.bin/binutils-2.17/cpu/
H A Dfrv.cpu274 ; FR load unit
298 ; FR Move to FR unit
299 (unit u-fr2fr "FR Move to FR Unit" ()
663 ; FR Move to FR unit
664 (unit u-fr2fr "FR Move to FR Unit" ()
4463 (load-double-r-r lddf 1 DF OP_02 OPE1_0B FR FR-ACCESS
4902 (load-double-r-simm lddfi 1 DF OP_3B FR FR-ACCESS
5031 (store-double-r-r stdf DF OP_03 OPE1_0B FR FR-ACCESS
5536 (store-double-r-simm stdfi DF OP_56 FR FR-ACCESS
6982 (clear-ne-flag-r clrfr OP_0A OPE1_02 FR 1 FR-ACCESS
[all …]
/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DLocalStackSlotAllocation.cpp350 FrameRef &FR = FrameReferenceInsns[ref]; in insertFrameReferenceRegisters() local
351 MachineInstr &MI = *FR.getMachineInstr(); in insertFrameReferenceRegisters()
352 int64_t LocalOffset = FR.getLocalOffset(); in insertFrameReferenceRegisters()
353 int FrameIdx = FR.getFrameIndex(); in insertFrameReferenceRegisters()
H A DStackMaps.cpp618 for (auto const &FR : FnInfos) { in emitFunctionFrameRecords() local
619 LLVM_DEBUG(dbgs() << WSMP << "function addr: " << FR.first in emitFunctionFrameRecords()
620 << " frame size: " << FR.second.StackSize in emitFunctionFrameRecords()
621 << " callsite count: " << FR.second.RecordCount << '\n'); in emitFunctionFrameRecords()
622 OS.emitSymbolValue(FR.first, 8); in emitFunctionFrameRecords()
623 OS.emitIntValue(FR.second.StackSize, 8); in emitFunctionFrameRecords()
624 OS.emitIntValue(FR.second.RecordCount, 8); in emitFunctionFrameRecords()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp802 static inline bool isUnionField(const FieldRegion *FR) { in isUnionField() argument
803 return FR->getDecl()->getParent()->isUnion(); in isUnionField()
815 if (const FieldRegion *FR = dyn_cast<FieldRegion>(R)) in getSymbolicOffsetFields() local
816 if (!isUnionField(FR)) in getSymbolicOffsetFields()
817 Fields.push_back(FR->getDecl()); in getSymbolicOffsetFields()
873 if (FR->getDecl()->isBitField()) in collectSubRegionBindings()
1470 if (const FieldRegion* FR = dyn_cast<FieldRegion>(R)) in getBinding() local
2720 const FieldRegion* FR = MRMgr.getFieldRegion(*FI, R); in bindStruct() local
2723 NewB = bindArray(NewB, FR, *VI); in bindStruct()
2725 NewB = bindStruct(NewB, FR, *VI); in bindStruct()
[all …]
/openbsd/regress/lib/libcrypto/x509/bettertls/certificates/
H A D1415.crt13 FR+MWLM8J/Xx+p7Z2aDH+yjnZ46K6L/89Y31uGiAlD8qJg4V74XbI7Zqmjf9AHTj
H A D1709.key5 Fb/ERZiHHJTCKUtT+FR/OSLr8cxPVijlrxFZua5RTOo4rw4H4HO/L+eWS7kxx2FK
H A D1559.key14 6hfUk7UKDnETpME6QeHphPR2PpXkMDiYcTAMI0bHH/FR+ZmHu1AlCmUsS1bPCTta
H A D2806.chain10 MDYwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCyIg9Q6jeU2zk6+FR
/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DSimpleExecutorMemoryManager.h37 Error finalize(tpctypes::FinalizeRequest &FR);
H A DExecutorSharedMemoryMapperService.h34 tpctypes::SharedMemoryFinalizeRequest &FR);

12345