Searched refs:NewState (Results 1 - 20 of 20) sorted by last modified time

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAPacketizerEmitter.cpp326 for (uint64_t NewState : applyInsnClass(Resources, State)) {
327 if (SeenStates.emplace(NewState).second)
328 Worklist.emplace_back(NewState);
329 Emitter.addTransition(State, NewState, ResourcesID);
H A DDFAEmitter.cpp200 uint64_t NewState; member in class:__anon2921::Transition
299 uint64_t NewState = T.transitionFrom(State); local
300 if (SeenStates.emplace(NewState).second)
301 Worklist.emplace_back(NewState);
303 Emitter.addTransition(State, NewState, Actions.idFor(T.getActions()));
330 BitsInit *NewStateInit = R->getValueAsBitsInit("NewState");
331 NewState = 0;
337 NewState |= 1ULL << I;
364 if ((State & NewState) == 0)
371 return State | NewState;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp885 BDVState NewState; local
887 NewState = meetBDVState(NewState, getStateForInput(SI->getTrueValue()));
888 NewState =
889 meetBDVState(NewState, getStateForInput(SI->getFalseValue()));
892 NewState = meetBDVState(NewState, getStateForInput(Val));
896 NewState =
897 meetBDVState(NewState, getStateForInput(EE->getVectorOperand()));
901 NewState
[all...]
H A DNewGVN.cpp3071 auto NewState = AllEqual ? MPS_Equivalent : MPS_Unique;
3072 MemoryPhiState[MP] = NewState;
3073 if (setMemoryClass(MP, CC) || OldState != NewState)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSection.cpp37 void MCSection::setBundleLockState(BundleLockStateType NewState) { argument
38 if (NewState == NotBundleLocked) {
51 BundleLockState = NewState;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocFast.cpp140 void setPhysRegState(MCPhysReg PhysReg, unsigned NewState);
199 RegState NewState);
242 void RegAllocFast::setPhysRegState(MCPhysReg PhysReg, unsigned NewState) { argument
243 PhysRegState[PhysReg] = NewState;
522 MCPhysReg PhysReg, RegState NewState) {
532 setPhysRegState(PhysReg, NewState);
537 setPhysRegState(PhysReg, NewState);
521 definePhysReg(MachineBasicBlock::iterator MI, MCPhysReg PhysReg, RegState NewState) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp375 int NewState; member in struct:__anon1690::InvokeStateChange
395 LastStateChange.NewState = BaseState;
458 if (!VisitingInvoke && LastStateChange.NewState != BaseState &&
465 LastStateChange.NewState = BaseState;
485 int NewState = StateAndEnd.first; local
489 if (NewState == LastStateChange.NewState) {
498 LastStateChange.NewState = NewState;
507 if (LastStateChange.NewState !
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSection.h136 void setBundleLockState(BundleLockStateType NewState);
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp229 void makeState(ParserState NewState, PosPtr Start, PosPtr End) noexcept {
230 State = NewState;
233 void makeState(ParserState NewState) noexcept {
234 State = NewState;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp104 ProgramState NewState = *state; local
106 NewState.Env = EnvMgr.removeDeadBindings(NewState.Env, SymReaper, state);
109 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx,
111 NewState.setStore(newStore);
114 return getPersistentState(NewState);
396 ProgramState NewState(*FromState);
397 NewState.GDM = GDMState->GDM;
398 return getPersistentState(NewState);
523 ProgramState NewState
[all...]
H A DExprEngine.cpp806 ProgramStateRef NewState = Pred->getState(); local
809 NewState = processLoopEnd(S, NewState);
812 Bldr.generateNode(PP, NewState, Pred);
1585 ProgramStateRef NewState = local
1587 if (NewState != State) {
1588 Pred = Bldr.generateNode(OCE, Pred, NewState, /*tag=*/nullptr,
1932 ProgramStateRef NewState = updateLoopStack(Term, AMgr.getASTContext(), local
1934 if (NewState != Pred->getState()) {
1935 ExplodedNode *UpdatedNode = nodeBuilder.generateNode(NewState, Pre
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DTaint.cpp90 ProgramStateRef NewState = State->set<TaintMap>(Sym, Kind); local
91 assert(NewState);
92 return NewState;
116 ProgramStateRef NewState = State->remove<TaintMap>(Sym); local
117 assert(NewState);
118 return NewState;
139 ProgramStateRef NewState = State->set<DerivedSymTaint>(ParentSym, Regs); local
140 assert(NewState);
141 return NewState;
H A DIteratorModeling.cpp595 auto NewState =
598 assert(NewState &&
601 const auto *NewPos = getIteratorPosition(NewState, Iter);
621 auto NewState =
624 assert(NewState &&
627 const auto *NewPos = getIteratorPosition(NewState, Iter);
658 auto NewState = local
660 if (NewState) {
661 const auto *NewPos = getIteratorPosition(NewState, LHS);
665 State = setIteratorPosition(NewState, TgtVa
1400 ProgramStateRef NewState = State; local
1441 auto NewState = State->assume(comparison.castAs<DefinedSVal>(), Equal); local
[all...]
H A DStdLibraryFunctionsChecker.cpp358 ProgramStateRef NewState = State; local
360 NewState = VR.apply(NewState, Call, Summary);
361 if (!NewState)
365 if (NewState && NewState != State)
366 C.addTransition(NewState);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp6192 DiagState *NewState = &Diag.DiagStates.back();
6193 DiagStates.push_back(NewState);
6204 DiagnosticMapping &Mapping = NewState->getOrAddMapping(DiagID);
6216 return NewState;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp1308 SetTypestateAttr::ConsumedState NewState;
1312 if (!SetTypestateAttr::ConvertStrToConsumedState(Param, NewState)) {
1323 D->addAttr(::new (S.Context) SetTypestateAttr(S.Context, AL, NewState));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h360 CallEventRef<T> cloneWithState(ProgramStateRef NewState) const;
363 CallEventRef<> cloneWithState(ProgramStateRef NewState) const {
364 return cloneWithState<CallEvent>(NewState);
1243 CallEventRef<T> CallEvent::cloneWithState(ProgramStateRef NewState) const {
1248 if (NewState == State)
1256 Copy->State = NewState;
H A DSMTConstraintManager.h328 ProgramStateRef NewState = local
332 NewState->get<ConstraintSMT>().Profile(ID);
340 addStateConstraints(NewState);
/freebsd-11-stable/usr.sbin/ppp/
H A Dfsm.c171 NewState(struct fsm *fp, int new) function
252 NewState(fp, ST_REQSENT);
261 NewState(fp, ST_STARTING);
267 NewState(fp, ST_STOPPED); /* XXX: This is a hack ! */
272 NewState(fp, ST_STOPPED); /* XXX: This is a not-so-bad hack ! */
289 NewState(fp, ST_STOPPING);
301 NewState(fp, ST_CLOSED);
306 NewState(fp, ST_REQSENT);
320 NewState(fp, ST_INITIAL);
325 NewState(f
[all...]
/freebsd-11-stable/sys/dev/mpt/mpilib/
H A Dmpi_ioc.h715 U16 NewState; /* 02h */ member in struct:_IR2_STATE_CHANGED

Completed in 271 milliseconds