Searched refs:NewNode (Results 1 - 22 of 22) sorted by relevance

/freebsd-10.0-release/sys/contrib/dev/acpica/components/namespace/
H A Dnssearch.c306 ACPI_NAMESPACE_NODE *NewNode; local
396 NewNode = AcpiNsCreateNode (TargetName);
397 if (!NewNode)
409 NewNode->Flags |= ANOBJ_IS_EXTERNAL;
415 NewNode->Flags |= ANOBJ_TEMPORARY;
420 AcpiNsInstallNode (WalkState, Node, NewNode, Type);
421 *ReturnNode = NewNode;
H A Dnsaccess.c77 ACPI_NAMESPACE_NODE *NewNode; local
123 NULL, &NewNode);
178 NewNode->Value = ObjDesc->Method.ParamCount;
203 ObjDesc->Mutex.Node = NewNode;
244 Status = AcpiNsAttachObject (NewNode, ObjDesc,
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Rewrite/Core/
H A DRewriteRope.cpp308 RopePieceBTreeLeaf *NewNode = new RopePieceBTreeLeaf();
310 // Move over the last 'WidthFactor' values from here to NewNode.
312 &NewNode->Pieces[0]);
317 NewNode->NumPieces = NumPieces = WidthFactor;
320 NewNode->FullRecomputeSizeLocally();
324 NewNode->insertAfterLeafInOrder(this);
330 NewNode->insert(Offset - this->size(), R);
331 return NewNode;
541 RopePieceBTreeInterior *NewNode = new RopePieceBTreeInterior();
543 // Move over the last 'WidthFactor' values from here to NewNode
[all...]
H A DDeltaTree.cpp302 DeltaTreeNode *NewNode; local
309 NewNode = New;
312 NewNode = new DeltaTreeNode();
315 // Move over the last 'WidthFactor-1' values from here to NewNode.
316 memcpy(&NewNode->Values[0], &Values[WidthFactor],
320 NewNode->NumValuesUsed = NumValuesUsed = WidthFactor-1;
323 NewNode->RecomputeFullDeltaLocally();
327 InsertRes.RHS = NewNode;
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp146 BasicBlock* NewNode = BasicBlock::Create(Val->getContext(), "NodeBlock"); local
148 F->getBasicBlockList().insert(++FI, NewNode);
152 NewNode->getInstList().push_back(Comp);
153 BranchInst::Create(LBranch, RBranch, Comp, NewNode);
154 return NewNode;
H A DBasicBlockUtils.cpp307 DomTreeNode *NewNode = DT->addNewBlock(New,Old); local
310 DT->changeImmediateDominator(*I, NewNode);
H A DCodeExtractor.cpp278 DomTreeNode *NewNode = DT->addNewBlock(New, *I); local
282 DT->changeImmediateDominator(*I, NewNode);
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp41 // Note that it is possible to have nodes marked NewNode in the DAG. This can
46 // into a different node, leaving the original node as a NewNode in the DAG.
56 // The conclusion is that though there may be nodes marked NewNode in the DAG,
57 // all uses of such nodes are also marked NewNode: the result is a fungus of
62 // by nodes marked NewNode (see above).
64 // The final node obtained by mapping by ReplacedValues is not marked NewNode.
69 // also map nodes marked NewNode if the deallocated memory was reallocated as
76 // Remember nodes marked NewNode - they are subject to extra checking below.
77 if (I->getNodeId() == NewNode)
87 // Check that remapped values are only used by nodes marked NewNode
[all...]
H A DScheduleDAGRRList.cpp244 SUnit *NewNode = newSUnit(N); local
246 if (NewNode->NodeNum >= NumSUnits)
248 return NewNode;
255 SUnit *NewNode = Clone(N); local
257 if (NewNode->NodeNum >= NumSUnits)
259 return NewNode;
H A DLegalizeDAG.cpp1270 SDNode *NewNode = Node;
1286 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1301 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1308 if (NewNode != Node) {
1309 DAG.ReplaceAllUsesWith(Node, NewNode);
1311 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
1313 Node = NewNode;
H A DLegalizeTypes.h46 /// NewNode - This is a new node, not before seen, that was created in the
48 NewNode = -1, enumerator in enum:llvm::DAGTypeLegalizer::NodeIdFlags
/freebsd-10.0-release/sys/contrib/dev/acpica/components/dispatcher/
H A Ddswload2.c395 ACPI_NAMESPACE_NODE *NewNode; local
719 WalkState, &(NewNode));
727 if (NewNode->Type != ACPI_TYPE_METHOD)
736 Op->Common.Node = NewNode;
/freebsd-10.0-release/contrib/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp324 CallSite NewCS, CallGraphNode *NewNode){
330 I->second = NewNode;
331 NewNode->AddRef();
323 replaceCallEdge(CallSite CS, CallSite NewCS, CallGraphNode *NewNode) argument
/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp109 void AddMatcher(Matcher *NewNode);
184 void MatcherGen::AddMatcher(Matcher *NewNode) { argument
186 CurPredicate->setNext(NewNode);
188 TheMatcher = NewNode;
189 CurPredicate = NewNode;
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DCallGraph.h293 void replaceCallEdge(CallSite CS, CallSite NewCS, CallGraphNode *NewNode);
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DIntervalMap.h1993 unsigned NewNode = 0;
1995 // Insert NewNode at the penultimate position, or after a single node.
1996 NewNode = Nodes == 1 ? 1 : Nodes - 1;
1997 CurSize[Nodes] = CurSize[NewNode];
1998 Node[Nodes] = Node[NewNode];
1999 CurSize[NewNode] = 0;
2000 Node[NewNode] = this->map->template newNode<NodeT>();
2019 if (NewNode && Pos == NewNode) {
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DRegionInfo.cpp323 RegionNode *NewNode = new RegionNode(const_cast<Region*>(this), BB);
324 BBNodeMap.insert(std::make_pair(BB, NewNode));
325 return NewNode;
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp2538 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, local
2543 SDValue(NewNode, 0));
2575 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl, local
2580 SDValue(NewNode, 0));
2597 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, local
2602 SDValue(NewNode, 0));
2619 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, local
2624 SDValue(NewNode, 0));
H A DX86InstrInfo.cpp4310 SDNode *NewNode= DAG.getMachineNode(Opc, dl, VTs, BeforeOps); local
4311 NewNodes.push_back(NewNode);
4316 AddrOps.push_back(SDValue(NewNode, 0));
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2341 if (const ExplodedNode *NewNode = ForwardMap.lookup(Nodes[i])) {
2342 ReportNodes.push_back(std::make_pair(NewNode, i));
2343 RemainingNodes.insert(NewNode);
H A DExprEngine.cpp1172 ExplodedNode *NewNode = G.getNode(NewNodeLoc, NewNodeState, false, &IsNew); local
1178 NewNode->addPredecessor(BeforeProcessingCall, G);
1181 Engine.enqueueStmtNode(NewNode, CalleeSF->getCallSiteBlock(),
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp5797 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, PPCSubTarget); local
5799 Results.push_back(NewNode);
5800 Results.push_back(NewNode.getValue(1));

Completed in 425 milliseconds