Home
last modified time | relevance | path

Searched refs:isNew (Results 1 – 12 of 12) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DInstrEmitter.cpp97 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; in EmitCopyFromReg() local
98 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
99 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
186 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitCopyFromReg() local
187 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
188 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
264 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in CreateVirtualRegisters() local
265 (void)isNew; // Silence compiler warning. in CreateVirtualRegisters()
266 assert(isNew && "Node emitted out of order - early"); in CreateVirtualRegisters()
597 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitSubregNode() local
[all …]
DScheduleDAGSDNodes.cpp835 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second; in EmitPhysRegCopy() local
836 (void)isNew; // Silence compiler warning. in EmitPhysRegCopy()
837 assert(isNew && "Node emitted out of order - early"); in EmitPhysRegCopy()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp64 bool isNew; in processCallEnter() local
65 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew); in processCallEnter()
67 if (isNew) { in processCallEnter()
285 bool isNew; in processCallExit() local
286 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew); in processCallExit()
288 if (!isNew) in processCallExit()
311 bool isNew; in processCallExit() local
314 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew); in processCallExit()
316 if (!isNew) in processCallExit()
464 bool isNew; in REGISTER_MAP_WITH_PROGRAMSTATE() local
[all …]
DCoreEngine.cpp572 bool isNew; in generateCallExitBeginNode() local
573 ExplodedNode *Node = G.getNode(Loc, N->getState(), false, &isNew); in generateCallExitBeginNode()
575 return isNew ? Node : nullptr; in generateCallExitBeginNode()
/freebsd-12-stable/contrib/bmake/
Dtarg.c336 Boolean isNew; /* Set TRUE if Hash_CreateEntry had to create */ in Targ_FindNode() local
347 he = Hash_CreateEntry(&targets, name, &isNew); in Targ_FindNode()
348 if (!isNew) in Targ_FindNode()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp659 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; in scanUses() local
660 if (!isNew) in scanUses()
672 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; in scanUses() local
673 if (!isNew) in scanUses()
677 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; in scanUses() local
678 if (!isNew) in scanUses()
707 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; in processCopy() local
708 if (!isNew) in processCopy()
DMachineLICM.cpp839 bool isNew = ConsiderSeen ? RegSeen.insert(Reg).second : false; in calcRegisterCost() local
848 if (isNew && !isKill && ConsiderUnseenAsDef) in calcRegisterCost()
851 else if (!isNew && isKill) in calcRegisterCost()
/freebsd-12-stable/contrib/llvm-project/lld/ELF/
DSymbolTable.cpp73 bool isNew = p.second; in insert() local
75 if (!isNew) in insert()
DRelocations.cpp2066 bool isNew; in createThunks() local
2067 std::tie(t, isNew) = getThunk(isec, rel, src); in createThunks()
2069 if (isNew) { in createThunks()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
DParseExprCXX.cpp2529 bool isNew = Tok.getKind() == tok::kw_new; in ParseUnqualifiedIdOperator() local
2544 Op = isNew? OO_Array_New : OO_Array_Delete; in ParseUnqualifiedIdOperator()
2546 Op = isNew? OO_New : OO_Delete; in ParseUnqualifiedIdOperator()
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c98232 int isNew, /* 1 for new.* ref mask, 0 for old.* ref mask */
98241 assert( isNew==1 || isNew==0 );
98249 mask |= pPrg->aColmask[isNew];
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c151444 int isNew, /* 1 for new.* ref mask, 0 for old.* ref mask */
151453 assert( isNew==1 || isNew==0 );
151468 mask |= pPrg->aColmask[isNew];