Home
last modified time | relevance | path

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

12

/external/llvm/lib/CodeGen/SelectionDAG/
DInstrEmitter.cpp95 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; in EmitCopyFromReg() local
96 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
97 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
184 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitCopyFromReg() local
185 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
186 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
275 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in CreateVirtualRegisters() local
276 (void)isNew; // Silence compiler warning. in CreateVirtualRegisters()
277 assert(isNew && "Node emitted out of order - early"); in CreateVirtualRegisters()
578 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitSubregNode() local
[all …]
DScheduleDAGSDNodes.cpp783 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second; in EmitPhysRegCopy() local
784 (void)isNew; // Silence compiler warning. in EmitPhysRegCopy()
785 assert(isNew && "Node emitted out of order - early"); in EmitPhysRegCopy()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp61 bool isNew; in processCallEnter() local
62 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew); in processCallEnter()
64 if (isNew) { in processCallEnter()
290 bool isNew; in processCallExit() local
291 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew); in processCallExit()
293 if (!isNew) in processCallExit()
316 bool isNew; in processCallExit() local
318 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew); in processCallExit()
320 if (!isNew) in processCallExit()
438 bool isNew; in REGISTER_TRAIT_WITH_PROGRAMSTATE() local
[all …]
DCoreEngine.cpp601 bool isNew; in generateCallExitBeginNode() local
602 ExplodedNode *Node = G.getNode(Loc, N->getState(), false, &isNew); in generateCallExitBeginNode()
604 return isNew ? Node : nullptr; in generateCallExitBeginNode()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DInstrEmitter.cpp94 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; in EmitCopyFromReg() local
95 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
96 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
184 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitCopyFromReg() local
185 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
186 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
257 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in CreateVirtualRegisters() local
258 (void)isNew; // Silence compiler warning. in CreateVirtualRegisters()
259 assert(isNew && "Node emitted out of order - early"); in CreateVirtualRegisters()
598 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitSubregNode() local
[all …]
DScheduleDAGSDNodes.cpp812 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second; in EmitPhysRegCopy() local
813 (void)isNew; // Silence compiler warning. in EmitPhysRegCopy()
814 assert(isNew && "Node emitted out of order - early"); in EmitPhysRegCopy()
/external/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()
187 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitCopyFromReg() local
188 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
189 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
265 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in CreateVirtualRegisters() local
266 (void)isNew; // Silence compiler warning. in CreateVirtualRegisters()
267 assert(isNew && "Node emitted out of order - early"); in CreateVirtualRegisters()
598 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitSubregNode() local
[all …]
DScheduleDAGSDNodes.cpp816 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second; in EmitPhysRegCopy() local
817 (void)isNew; // Silence compiler warning. in EmitPhysRegCopy()
818 assert(isNew && "Node emitted out of order - early"); in EmitPhysRegCopy()
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp63 bool isNew; in processCallEnter() local
64 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew); in processCallEnter()
66 if (isNew) { in processCallEnter()
284 bool isNew; in processCallExit() local
285 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew); in processCallExit()
287 if (!isNew) in processCallExit()
310 bool isNew; in processCallExit() local
313 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew); in processCallExit()
315 if (!isNew) in processCallExit()
463 bool isNew; in REGISTER_MAP_WITH_PROGRAMSTATE() local
[all …]
DCoreEngine.cpp570 bool isNew; in generateCallExitBeginNode() local
571 ExplodedNode *Node = G.getNode(Loc, N->getState(), false, &isNew); in generateCallExitBeginNode()
573 return isNew ? Node : nullptr; in generateCallExitBeginNode()
/external/llvm-project/lld/ELF/
DSymbolTable.cpp73 bool isNew = p.second; in insert() local
75 if (!isNew) in insert()
DRelocations.cpp1993 bool isNew; in createThunks() local
1994 std::tie(t, isNew) = getThunk(isec, rel, src); in createThunks()
1996 if (isNew) { in createThunks()
/external/llvm-project/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp654 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; in scanUses() local
655 if (!isNew) in scanUses()
667 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; in scanUses() local
668 if (!isNew) in scanUses()
672 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; in scanUses() local
673 if (!isNew) in scanUses()
702 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; in processCopy() local
703 if (!isNew) in processCopy()
DMachineLICM.cpp908 bool isNew = ConsiderSeen ? RegSeen.insert(Reg).second : false; in calcRegisterCost() local
917 if (isNew && !isKill && ConsiderUnseenAsDef) in calcRegisterCost()
920 else if (!isNew && isKill) in calcRegisterCost()
/external/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp753 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; in scanUses() local
754 if (!isNew) in scanUses()
766 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; in scanUses() local
767 if (!isNew) in scanUses()
771 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; in scanUses() local
772 if (!isNew) in scanUses()
801 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; in processCopy() local
802 if (!isNew) in processCopy()
DMachineLICM.cpp809 bool isNew = ConsiderSeen ? RegSeen.insert(Reg).second : false; in calcRegisterCost() local
818 if (isNew && !isKill && ConsiderUnseenAsDef) in calcRegisterCost()
821 else if (!isNew && isKill) in calcRegisterCost()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp793 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; in scanUses() local
794 if (!isNew) in scanUses()
806 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; in scanUses() local
807 if (!isNew) in scanUses()
811 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; in scanUses() local
812 if (!isNew) in scanUses()
841 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; in processCopy() local
842 if (!isNew) in processCopy()
DMachineLICM.cpp895 bool isNew = ConsiderSeen ? RegSeen.insert(Reg).second : false; in calcRegisterCost() local
904 if (isNew && !isKill && ConsiderUnseenAsDef) in calcRegisterCost()
907 else if (!isNew && isKill) in calcRegisterCost()
/external/proguard/src/proguard/optimize/peephole/
DBranchTargetFinder.java241 public boolean isNew(int offset) in isNew() method in BranchTargetFinder
445 … (isNew(index) ? " ["+initializationOffset(index)+"] " : " ---- ") + in visitCodeAttribute()
/external/freetype/src/psaux/
Dpshints.h75 FT_Bool isNew; member
Dpsintrp.c85 return hintmask->isNew; in cf2_hintmask_isNew()
93 hintmask->isNew = val; in cf2_hintmask_setNew()
122 hintmask->isNew = TRUE; in cf2_hintmask_setCounts()
1805 hintMask.isNew = TRUE; in cf2_interpT2CharString()
2477 hintMask.isNew = TRUE; in cf2_interpT2CharString()
/external/llvm-project/lld/wasm/
DSymbolTable.cpp102 bool isNew = p.second; in insertName() local
106 isNew = true; in insertName()
109 if (!isNew) in insertName()
DInputFiles.cpp379 bool isNew = ignoreComdats || symtab->addComdat(comdat); in parse() local
380 keptComdats.push_back(isNew); in parse()
/external/clang/lib/Parse/
DParseExprCXX.cpp2247 bool isNew = Tok.getKind() == tok::kw_new; in ParseUnqualifiedIdOperator() local
2262 Op = isNew? OO_Array_New : OO_Array_Delete; in ParseUnqualifiedIdOperator()
2264 Op = isNew? OO_New : OO_Delete; in ParseUnqualifiedIdOperator()
/external/guice/extensions/struts2/lib/
Djetty-util-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/ ...

12