/external/v8/src/compiler/ |
D | raw-machine-assembler.h | 80 return AddNode(common()->Int32Constant(value)); in Int32Constant() 83 return AddNode(common()->Int64Constant(value)); in Int64Constant() 86 return AddNode(common()->NumberConstant(value)); in NumberConstant() 89 return AddNode(common()->Float32Constant(value)); in Float32Constant() 92 return AddNode(common()->Float64Constant(value)); in Float64Constant() 95 return AddNode(common()->HeapConstant(object)); in HeapConstant() 102 return AddNode(common()->ExternalConstant(address)); in ExternalConstant() 106 return AddNode(common()->Projection(index), a); in Projection() 114 return AddNode(machine()->Load(rep), base, index); in Load() 122 return AddNode(machine()->Store(StoreRepresentation(rep, write_barrier)), in Store() [all …]
|
D | raw-machine-assembler.cc | 33 AddNode(common()->Parameter(static_cast<int>(i)), graph->start()); in RawMachineAssembler() 66 Node* branch = AddNode(common()->Branch(), condition); in Branch() 78 Node* switch_node = AddNode(common()->Switch(succ_count), index); in Switch() 85 schedule()->AddNode(case_block, case_node); in Switch() 90 schedule()->AddNode(default_block, default_node); in Switch() 134 return AddNode(common()->Call(desc), input_count, buffer); in CallN() 152 return AddNode(common()->Call(desc), input_count, buffer); in CallNWithFrameState() 163 Node* ref = AddNode( in CallRuntime1() 167 return AddNode(common()->Call(descriptor), centry, arg1, ref, arity, context); in CallRuntime1() 178 Node* ref = AddNode( in CallRuntime2() [all …]
|
D | schedule.cc | 53 void BasicBlock::AddNode(Node* node) { nodes_.push_back(node); } in AddNode() function in v8::internal::compiler::BasicBlock 184 void Schedule::AddNode(BasicBlock* block, Node* node) { in AddNode() function in v8::internal::compiler::Schedule 191 block->AddNode(node); in AddNode()
|
D | schedule.h | 99 void AddNode(Node* node); 204 void AddNode(BasicBlock* block, Node* node);
|
D | scheduler.cc | 118 schedule_->AddNode(block, node); in UpdatePlacement() 290 schedule_->AddNode(block, node); in FixNode() 1160 schedule_->AddNode(block, node); in Pre() 1670 schedule_->AddNode(block, node); in SealFinalSchedule()
|
/external/v8/test/unittests/compiler/ |
D | instruction-selector-unittest.cc | 247 m.AddNode(m.common()->FinishRegion(), param, m.graph()->start()); in TARGET_TEST_F() 336 m2.Return(m2.AddNode( in TARGET_TEST_F() 338 m2.AddNode(m2.common()->BeginRegion(), m2.graph()->start()))); in TARGET_TEST_F() 374 m.AddNode(m.common()->TypedStateValues(&int32_type), m.Int32Constant(1)); in TARGET_TEST_F() 375 Node* locals = m.AddNode(m.common()->TypedStateValues(&empty_types)); in TARGET_TEST_F() 376 Node* stack = m.AddNode(m.common()->TypedStateValues(&empty_types)); in TARGET_TEST_F() 378 Node* state_node = m.AddNode( in TARGET_TEST_F() 429 m.AddNode(m.common()->TypedStateValues(&int32_type), m.Int32Constant(43)); in TARGET_TEST_F() 430 Node* locals = m.AddNode(m.common()->TypedStateValues(&float64_type), in TARGET_TEST_F() 432 Node* stack = m.AddNode(m.common()->TypedStateValues(&tagged_type), in TARGET_TEST_F() [all …]
|
D | schedule-unittest.cc | 97 TEST_F(ScheduleTest, AddNode) { in TEST_F() argument 103 schedule.AddNode(start, node0); in TEST_F() 109 schedule.AddNode(start, node1); in TEST_F()
|
/external/v8/test/cctest/compiler/ |
D | test-multiple-return.cc | 100 Node* ret3 = mt.AddNode(mt.common()->Call(desc), mt.HeapConstant(code), a, b); in TEST() 101 Node* x = mt.AddNode(mt.common()->Projection(0), ret3); in TEST() 102 Node* y = mt.AddNode(mt.common()->Projection(1), ret3); in TEST() 103 Node* z = mt.AddNode(mt.common()->Projection(2), ret3); in TEST()
|
D | test-instruction.cc | 56 schedule.AddNode(schedule.start(), node); in Int32Constant() 62 schedule.AddNode(schedule.start(), node); in Float64Constant() 68 schedule.AddNode(schedule.start(), node); in Parameter() 74 schedule.AddNode(block, node); in NewNode()
|
D | test-run-machops.cc | 38 m.Return(m.AddNode(m.machine()->Word32Ctz().op(), m.Parameter(0))); in TEST() 122 m.Return(m.AddNode(m.machine()->Word32Popcnt().op(), m.Parameter(0))); in TEST() 214 m.Return(m.AddNode(m.machine()->Word64Ctz().op(), m.Parameter(0))); in TEST() 290 m.Return(m.AddNode(m.machine()->Word64Popcnt().op(), m.Parameter(0))); in TEST() 350 m.Return(m.AddNode(kOps[i], a, b)); in TEST() 411 m.Return(m.AddNode(kOps[i], a, b)); in TEST() 1098 m.AddNode(m.common()->Phi(MachineRepresentation::kWord32, num_results), in TEST() 1540 m.AddNode(shops[n], m.Parameter(1), in TEST() 1632 m.AddNode(shops[n], m.Parameter(1), m.Parameter(2))), in TEST() 1881 m.AddNode(shops[n], m.Parameter(1), in TEST() [all …]
|
D | codegen-tester.h | 448 return m->AddNode(op(m->machine()), a, b); in MakeNode()
|
/external/llvm/unittests/ADT/ |
D | SCCIteratorTest.cpp | 52 void AddNode(unsigned Idx) { in AddNode() function in llvm::Graph::NodeSubset 115 Nodes[FromIdx].second.AddNode(ToIdx); in AddEdge() 141 Reachable.AddNode(Idx); in NodesReachableFrom() 283 NodesInThisSCC.AddNode(SCC[i]->first); in TEST()
|
/external/v8/src/ |
D | futex-emulation.cc | 44 void FutexWaitList::AddNode(FutexWaitListNode* node) { in AddNode() function in v8::internal::FutexWaitList 119 wait_list_.Pointer()->AddNode(node); in Wait()
|
D | futex-emulation.h | 69 void AddNode(FutexWaitListNode* node);
|
/external/v8/test/cctest/wasm/ |
D | wasm-run-utils.h | 337 call_wrapper_.Return(call_wrapper_.AddNode( in Build()
|
/external/clang/lib/AST/ |
D | ASTDiagnostic.cpp | 663 void AddNode() { in AddNode() function in __anon9da9a8600111::TemplateDiff::DiffTree 1142 Tree.AddNode(); in DiffTemplate()
|
/external/opencv3/modules/videoio/src/ |
D | cap_msmf.cpp | 1599 CHECK_HR(hr = pTopology->AddNode(pNode.Get())); in AddSourceNode() 1620 CHECK_HR(hr = pTopology->AddNode(pNode.Get())); in AddOutputNode()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 412 SDValue &AddNode, 11021 SDValue &AddNode, in isMulAddWithConstProfitable() argument 11026 if (AddNode.getNode()->hasOneUse()) in isMulAddWithConstProfitable() 11037 SDNode *MulVar = AddNode.getOperand(0).getNode(); in isMulAddWithConstProfitable()
|