/freebsd/sys/contrib/dev/acpica/components/namespace/ |
H A D | nsaccess.c | 186 ACPI_NAMESPACE_NODE *NewNode; in AcpiNsRootInitialize() local 254 NewNode = AcpiNsCreateNode (*ACPI_CAST_PTR (UINT32, InitVal->Name)); in AcpiNsRootInitialize() 255 if (!NewNode) in AcpiNsRootInitialize() 261 NewNode->DescriptorType = ACPI_DESC_TYPE_NAMED; in AcpiNsRootInitialize() 262 NewNode->Type = InitVal->Type; in AcpiNsRootInitialize() 266 AcpiGbl_RootNodeStruct.Child = NewNode; in AcpiNsRootInitialize() 270 PrevNode->Peer = NewNode; in AcpiNsRootInitialize() 273 NewNode->Parent = &AcpiGbl_RootNodeStruct; in AcpiNsRootInitialize() 274 PrevNode = NewNode; in AcpiNsRootInitialize() 322 NewNode->Value = ObjDesc->Method.ParamCount; in AcpiNsRootInitialize() [all …]
|
H A D | nssearch.c | 412 ACPI_NAMESPACE_NODE *NewNode; in AcpiNsSearchAndEnter() local 534 NewNode = AcpiNsCreateNode (TargetName); in AcpiNsSearchAndEnter() 535 if (!NewNode) in AcpiNsSearchAndEnter() 547 NewNode->Flags |= ANOBJ_IS_EXTERNAL; in AcpiNsSearchAndEnter() 553 NewNode->Flags |= ANOBJ_TEMPORARY; in AcpiNsSearchAndEnter() 558 AcpiNsInstallNode (WalkState, Node, NewNode, Type); in AcpiNsSearchAndEnter() 559 *ReturnNode = NewNode; in AcpiNsSearchAndEnter()
|
/freebsd/contrib/llvm-project/clang/lib/Rewrite/ |
H A D | RewriteRope.cpp | 309 RopePieceBTreeLeaf *NewNode = new RopePieceBTreeLeaf(); in insert() local 313 &NewNode->Pieces[0]); in insert() 318 NewNode->NumPieces = NumPieces = WidthFactor; in insert() 321 NewNode->FullRecomputeSizeLocally(); in insert() 325 NewNode->insertAfterLeafInOrder(this); in insert() 331 NewNode->insert(Offset - this->size(), R); in insert() 332 return NewNode; in insert() 548 RopePieceBTreeInterior *NewNode = new RopePieceBTreeInterior(); in HandleChildPiece() local 551 memcpy(&NewNode->Children[0], &Children[WidthFactor], in HandleChildPiece() 555 NewNode->NumChildren = NumChildren = WidthFactor; in HandleChildPiece() [all …]
|
H A D | DeltaTree.cpp | 307 DeltaTreeNode *NewNode; in DoSplit() local 314 NewNode = New; in DoSplit() 317 NewNode = new DeltaTreeNode(); in DoSplit() 321 memcpy(&NewNode->Values[0], &Values[WidthFactor], in DoSplit() 325 NewNode->NumValuesUsed = NumValuesUsed = WidthFactor-1; in DoSplit() 328 NewNode->RecomputeFullDeltaLocally(); in DoSplit() 332 InsertRes.RHS = NewNode; in DoSplit()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_function_call_trie.h | 402 auto* NewNode = Nodes.AppendEmplace( in enterFunction() local 404 if (UNLIKELY(NewNode == nullptr)) in enterFunction() 406 DCHECK_NE(NewNode, nullptr); in enterFunction() 407 TopNode->Callees.AppendEmplace(NewNode, FId); in enterFunction() 408 if (ShadowStack.AppendEmplace(TSC, NewNode, CPU) == nullptr) in enterFunction() 483 FunctionCallTrie::Node *NewNode; in deepCopyInto() member 511 DCHECK_NE(NP.NewNode, nullptr); in deepCopyInto() 514 auto NewNode = O.Nodes.AppendEmplace( in deepCopyInto() local 515 NP.NewNode, NodeIdPairArray(*O.NodeIdPairAllocator), in deepCopyInto() 518 if (UNLIKELY(NewNode == nullptr)) in deepCopyInto() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYISelDAGToDAG.cpp | 304 MachineSDNode *NewNode = nullptr; in selectAddCarry() local 316 NewNode = CurDAG->getMachineNode( in selectAddCarry() 322 NewNode = CurDAG->getMachineNode( in selectAddCarry() 326 NewNode = CurDAG->getMachineNode(Subtarget->has2E3() ? CSKY::ADDC32 in selectAddCarry() 330 ReplaceNode(N, NewNode); in selectAddCarry() 347 MachineSDNode *NewNode = nullptr; in selectSubCarry() local 359 NewNode = CurDAG->getMachineNode( in selectSubCarry() 365 NewNode = CurDAG->getMachineNode( in selectSubCarry() 370 NewNode = CurDAG->getMachineNode(Subtarget->has2E3() ? CSKY::SUBC32 in selectSubCarry() 374 auto CarryOut = InvertCarryFlag(Subtarget, CurDAG, Dl, SDValue(NewNode, 1)); in selectSubCarry() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeTypes.cpp | 76 if (Node.getNodeId() == NewNode) in PerformExpensiveChecks() 94 assert(UI->getNodeId() == NewNode && in PerformExpensiveChecks() 107 assert(NewVal.getNode()->getNodeId() != NewNode && in PerformExpensiveChecks() 134 if ((Node.getNodeId() == NewNode && Mapped > 1) || in PerformExpensiveChecks() 135 (Node.getNodeId() != NewNode && Mapped != 0)) { in PerformExpensiveChecks() 193 assert(U->getNodeId() == NewNode && "NewNode used by non-NewNode!"); in PerformExpensiveChecks() 369 N->setNodeId(NewNode); in run() 384 assert(N->getNodeId() == NewNode && "Unexpected node state!"); in run() 419 if (NodeId == NewNode) in run() 473 if (Node.getNodeId() == NewNode) in run() [all …]
|
H A D | ScheduleDAGRRList.cpp | 278 SUnit *NewNode = newSUnit(N); in CreateNewSUnit() local 280 if (NewNode->NodeNum >= NumSUnits) in CreateNewSUnit() 281 Topo.AddSUnitWithoutPredecessors(NewNode); in CreateNewSUnit() 282 return NewNode; in CreateNewSUnit() 288 SUnit *NewNode = Clone(N); in CreateClone() local 290 if (NewNode->NodeNum >= NumSUnits) in CreateClone() 291 Topo.AddSUnitWithoutPredecessors(NewNode); in CreateClone() 292 return NewNode; in CreateClone()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | CallGraph.cpp | 258 CallGraphNode *NewNode) { in replaceCallEdge() argument 264 I->second = NewNode; in replaceCallEdge() 265 NewNode->AddRef(); in replaceCallEdge() 280 CallGraphNode *NewNode = NewCBs[N]; in replaceCallEdge() local 285 J->second = NewNode; in replaceCallEdge() 287 NewNode->AddRef(); in replaceCallEdge()
|
H A D | DependenceGraphBuilder.cpp | 56 auto &NewNode = createFineGrainedNode(I); in createFineGrainedNodes() local 57 IMap.insert(std::make_pair(&I, &NewNode)); in createFineGrainedNodes() 58 NodeOrdinalMap.insert(std::make_pair(&NewNode, getOrdinal(I))); in createFineGrainedNodes()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | SampleContextTracker.cpp | 75 ContextTrieNode &NewNode = AllChildContext[Hash]; in moveContextSamples() local 76 NewNode.setCallSiteLoc(CallSite); in moveContextSamples() 82 NewNode.setParentContext(&ToNodeParent); in moveContextSamples() 83 NodeToUpdate.push(&NewNode); in moveContextSamples() 102 return NewNode; in moveContextSamples() 206 ContextTrieNode *NewNode = getOrCreateContextPath(Context, true); in SampleContextTracker() local 207 assert(!NewNode->getFunctionSamples() && in SampleContextTracker() 209 NewNode->setFunctionSamples(FSamples); in SampleContextTracker()
|
H A D | MemProfContextDisambiguation.cpp | 493 void connectNewNode(ContextNode *NewNode, ContextNode *OrigNode, 1137 ContextNode *NewNode, ContextNode *OrigNode, bool TowardsCallee, in connectNewNode() argument 1161 Edge->Callee, NewNode, NewAllocType, std::move(NewEdgeContextIds)); in connectNewNode() 1162 NewNode->CalleeEdges.push_back(NewEdge); in connectNewNode() 1167 NewNode, Edge->Caller, NewAllocType, std::move(NewEdgeContextIds)); in connectNewNode() 1168 NewNode->CallerEdges.push_back(NewEdge); in connectNewNode() 1336 ContextNode *NewNode = NodeOwner.back().get(); in assignStackNodesPostOrder() local 1337 NodeToCallingFunc[NewNode] = Func; in assignStackNodesPostOrder() 1338 NonAllocationCallToContextNodeMap[Call] = NewNode; in assignStackNodesPostOrder() 1339 NewNode->AllocTypes = computeAllocType(SavedContextIds); in assignStackNodesPostOrder() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LowerSwitch.cpp | 288 BasicBlock *NewNode = BasicBlock::Create(Val->getContext(), "NodeBlock"); in SwitchConvert() local 294 NewNode, OrigBlock, Default, UnreachableRanges); in SwitchConvert() 297 NewNode, OrigBlock, Default, UnreachableRanges); in SwitchConvert() 299 F->insert(++OrigBlock->getIterator(), NewNode); in SwitchConvert() 300 Comp->insertInto(NewNode, NewNode->end()); in SwitchConvert() 302 BranchInst::Create(LBranch, RBranch, Comp, NewNode); in SwitchConvert() 303 return NewNode; in SwitchConvert()
|
/freebsd/contrib/llvm-project/llvm/lib/XRay/ |
H A D | Profile.cpp | 174 auto NewNode = &NodeStorage.back(); in internPath() local 175 NewNode->Func = NodeFuncID; in internPath() 176 NewNode->Caller = Node; in internPath() 177 Node->Callees.push_back(NewNode); in internPath() 178 Node = NewNode; in internPath()
|
/freebsd/sys/contrib/dev/acpica/components/dispatcher/ |
H A D | dswload2.c | 534 ACPI_NAMESPACE_NODE *NewNode; in AcpiDsLoad2EndOp() local 869 WalkState, &(NewNode)); in AcpiDsLoad2EndOp() 877 if (NewNode->Type != ACPI_TYPE_METHOD) in AcpiDsLoad2EndOp() 886 Op->Common.Node = NewNode; in AcpiDsLoad2EndOp()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsISelDAGToDAG.cpp | 265 SDValue NewNode = CurDAG->getNode(ISD::SUB, DL, VT, X, NegC); in selectVecAddAsVecSubIfProfitable() local 267 ReplaceNode(Node, NewNode.getNode()); in selectVecAddAsVecSubIfProfitable() 268 SelectCode(NewNode.getNode()); in selectVecAddAsVecSubIfProfitable()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DAGISelMatcherGen.cpp | 112 void AddMatcher(Matcher *NewNode); 188 void MatcherGen::AddMatcher(Matcher *NewNode) { in AddMatcher() argument 190 CurPredicate->setNext(NewNode); in AddMatcher() 192 TheMatcher = NewNode; in AddMatcher() 193 CurPredicate = NewNode; in AddMatcher()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonCommonGEP.cpp | 950 GepNode *C = nullptr, *NewNode = nullptr; in separateChainForNode() local 958 NewNode = NewN; in separateChainForNode() 965 if (!NewNode) in separateChainForNode() 986 NewNode->Flags |= GepNode::Used; in separateChainForNode() 987 LLVM_DEBUG(dbgs() << "new node: " << NewNode << " " << *NewNode << '\n'); in separateChainForNode() 989 Uses[NewNode] = NewUs; in separateChainForNode()
|
H A D | HexagonISelDAGToDAG.cpp | 2330 SDValue NewNode; in balanceSubTree() local 2344 NewNode = CurDAG->getNode( in balanceSubTree() 2350 NewNode = CurDAG->getNode(NOpcode, SDLoc(N), VT, V0, V1); in balanceSubTree() 2352 NodeHeights[NewNode] = Height; in balanceSubTree() 2355 Leaves.push(WeightedLeaf(NewNode, Weight, L0.InsertionOrder)); in balanceSubTree() 2359 LLVM_DEBUG(NewNode.dump()); in balanceSubTree()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | SampleProf.cpp | 448 auto *NewNode = getOrCreateContextPath(FSamples->getContext()); in ProfileConverter() local 449 assert(!NewNode->FuncSamples && "New node cannot have sample profile"); in ProfileConverter() 450 NewNode->FuncSamples = FSamples; in ProfileConverter()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | GenericDomTree.h | 652 DomTreeNodeBase<NodeT> *NewNode = createNode(BB); 659 OldNode = NewNode->addChild(std::move(DomTreeNodes[OldRoot])); 660 OldNode->IDom = NewNode; 664 return RootNode = NewNode;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelDAGToDAG.cpp | 4188 MachineSDNode *NewNode; in matchBEXTRFromAndImm() local 4195 NewNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops); in matchBEXTRFromAndImm() 4197 ReplaceUses(Input.getValue(1), SDValue(NewNode, 2)); in matchBEXTRFromAndImm() 4199 CurDAG->setNodeMemRefs(NewNode, {cast<LoadSDNode>(Input)->getMemOperand()}); in matchBEXTRFromAndImm() 4201 NewNode = CurDAG->getMachineNode(ROpc, dl, NVT, MVT::i32, Input, Control); in matchBEXTRFromAndImm() 4209 NewNode = in matchBEXTRFromAndImm() 4210 CurDAG->getMachineNode(NewOpc, dl, NVT, SDValue(NewNode, 0), ShAmt); in matchBEXTRFromAndImm() 4213 return NewNode; in matchBEXTRFromAndImm() 5344 if (MachineSDNode *NewNode = matchBEXTRFromAndImm(Node)) { in Select() local 5345 ReplaceUses(SDValue(Node, 0), SDValue(NewNode, 0)); in Select() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | IntervalMap.h | 2045 unsigned NewNode = 0; in overflow() local 2047 // Insert NewNode at the penultimate position, or after a single node. in overflow() 2048 NewNode = Nodes == 1 ? 1 : Nodes - 1; in overflow() 2049 CurSize[Nodes] = CurSize[NewNode]; in overflow() 2050 Node[Nodes] = Node[NewNode]; in overflow() 2051 CurSize[NewNode] = 0; in overflow() 2052 Node[NewNode] = this->map->template newNode<NodeT>(); in overflow() 2071 if (NewNode && Pos == NewNode) { in overflow()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | CallGraph.h | 276 CallGraphNode *NewNode);
|
H A D | BlockFrequencyInfoImpl.h | 1152 BlockNode NewNode(Freqs.size()); 1153 Nodes[BB] = {NewNode, BFICallbackVH(BB, this)}; 1155 BlockFrequencyInfoImplBase::setBlockFreq(NewNode, Freq);
|