| /src/external/gpl3/gdb/dist/sim/testsuite/bfin/ |
| cir1.s | 29 .macro dag i:req, b:req, l:req, m:req, addi:req, subi:req 46 dag 0, 0, 0, 0, 0, 0 47 dag 100, 0, 0, 0, 100, 100 48 dag 100, 0, 0, 11, 111, 89 49 dag 100, 0xaa00ff00, 0, 0, 100, 100 50 dag 100, 0xaa00ff00, 0, 11, 111, 89 53 dag 0, 0, 100, 10, 10, 90 54 dag 50, 0, 100, 10, 60, 40 55 dag 99, 0, 100, 10, 9, 89 56 dag 50, 0, 100, 50, 0, [all...] |
| /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/ |
| cir1.s | 29 .macro dag i:req, b:req, l:req, m:req, addi:req, subi:req 46 dag 0, 0, 0, 0, 0, 0 47 dag 100, 0, 0, 0, 100, 100 48 dag 100, 0, 0, 11, 111, 89 49 dag 100, 0xaa00ff00, 0, 0, 100, 100 50 dag 100, 0xaa00ff00, 0, 11, 111, 89 53 dag 0, 0, 100, 10, 10, 90 54 dag 50, 0, 100, 10, 60, 40 55 dag 99, 0, 100, 10, 9, 89 56 dag 50, 0, 100, 50, 0, [all...] |
| /src/external/bsd/libpcap/dist/cmake/Modules/ |
| FindDAG.cmake | 2 # Try to find the Endace DAG library. 14 find_library(DAG_LIBRARY dag) 20 get_link_info_from_library_path(DAG dag) 24 find_package_handle_standard_args(DAG
|
| /src/sys/dev/raidframe/ |
| rf_engine.c | 31 * engine.c -- code for DAG execution engine * 40 * queue. A dedicated dag-execution thread grabs nodes off of this * 46 * associated with the DAG to be invoked. * 48 * If a node fails, the dag either rolls forward to the completion or * 110 /* Now shut down the DAG execution engine. */ 250 printf("Execution engine found illegal DAG status in NodeReady\n"); 260 /* user context and dag-exec-thread context: Fire a node. The node's 493 the dag 541 * terminal node in a DAG. If so, it will 542 * cause the DAG to complete, which will i [all...] |
| rf_dagutils.c | 69 /* The maximum number of nodes in a DAG is bounded by 86 * InitNode - initialize a dag node 600 /* set dag status */ 618 printf("DAG type: %s\n", dag_h->creator); 712 printf("INVALID DAG: next pointer in node is not NULL\n"); 716 printf("INVALID DAG: Node status is not wait\n"); 720 printf("INVALID DAG: numAntDone is not zero\n"); 725 printf("INVALID DAG: Terminator node has succedents\n"); 730 printf("INVALID DAG: Non-terminator node has no succedents\n"); 736 printf("INVALID DAG: succedent %d of node %s is NULL\n", i, node->name) [all...] |
| /src/external/apache2/llvm/lib/libLLVMSparcCodeGen/ |
| Makefile | 26 SparcGenDAGISel.inc|-gen-dag-isel \
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| R600MachineScheduler.h | 28 const ScheduleDAGMILive *DAG = nullptr; 72 void initialize(ScheduleDAGMI *dag) override;
|
| R600MachineScheduler.cpp | 22 void R600SchedStrategy::initialize(ScheduleDAGMI *dag) { 23 assert(dag->hasVRegLiveness() && "R600SchedStrategy needs vreg liveness"); 24 DAG = static_cast<ScheduleDAGMILive*>(dag); 25 const R600Subtarget &ST = DAG->MF.getSubtarget<R600Subtarget>(); 26 TII = static_cast<const R600InstrInfo*>(DAG->TII); 27 TRI = static_cast<const R600RegisterInfo*>(DAG->TRI); 29 MRI = &DAG->MRI; 124 DAG->dumpNode(*SU); 127 for (unsigned i = 0; i < DAG->SUnits.size(); i++) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| SystemZMachineScheduler.h | 35 // A SchedModel is needed before any DAG is built while advancing past 37 // DAG->getSchedClass(SU). 130 void initialize(ScheduleDAGMI *dag) override;
|
| SystemZMachineScheduler.cpp | 74 void SystemZPostRASchedStrategy::initialize(ScheduleDAGMI *dag) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonMachineScheduler.h | 134 VLIWMachineScheduler *DAG = nullptr; 165 void init(VLIWMachineScheduler *dag, const TargetSchedModel *smodel) { 166 DAG = dag; 175 CriticalPathLength = DAG->getBBSize() / SchedModel->getIssueWidth(); 176 if (DAG->getBBSize() < 50) 185 for (auto &SU : DAG->SUnits) 217 VLIWMachineScheduler *DAG = nullptr; 237 void initialize(ScheduleDAGMI *dag) override;
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| ScheduleDAGSDNodes.h | 44 /// the DAG and must be handled explicitly by schedulers. 49 SelectionDAG *DAG; // DAG of the current basic block 61 void Run(SelectionDAG *dag, MachineBasicBlock *bb); 93 /// BuildSchedGraph - Build the SUnit graph from the selection dag that we
|
| SelectionDAGBuilder.h | 1 //===- SelectionDAGBuilder.h - Selection-DAG building -----------*- C++ -*-===// 234 /// implying one could not create a DAG Combine to move the callinst. 389 SelectionDAG &DAG; 434 /// a tail call. In this case, no subsequent DAG nodes should be created. 439 SelectionDAGBuilder(SelectionDAG &dag, FunctionLoweringInfo &funcinfo, 441 : SDNodeOrder(LowestSDNodeOrder), TM(dag.getTarget()), DAG(dag), 461 /// Return the current virtual root of the Selection DAG, flushing any 510 /// resolve the debuginfo to something that is represented in this DAG. I [all...] |
| ScheduleDAGSDNodes.cpp | 50 : ScheduleDAG(mf), BB(nullptr), DAG(nullptr), 55 void ScheduleDAGSDNodes::Run(SelectionDAG *dag, MachineBasicBlock *bb) { 57 DAG = dag; 59 // Clear the scheduler's SUnit DAG. 80 const TargetLowering &TLI = DAG->getTargetLoweringInfo(); 140 static void CloneNodeWithValues(SDNode *N, SelectionDAG *DAG, ArrayRef<EVT> VTs, 146 SDVTList VTList = DAG->getVTList(VTs); 154 DAG->MorphNodeTo(N, N->getOpcode(), VTList, Ops); 158 DAG->setNodeMemRefs(MN, MMOs) [all...] |
| /src/external/apache2/llvm/lib/libLLVMARMCodeGen/ |
| Makefile | 65 ARMGenDAGISel.inc|-gen-dag-isel \
|
| /src/external/apache2/llvm/lib/libLLVMMipsCodeGen/ |
| Makefile | 56 MipsGenDAGISel.inc|-gen-dag-isel \
|
| /src/external/apache2/llvm/lib/libLLVMPowerPCCodeGen/ |
| Makefile | 60 PPCGenDAGISel.inc|-gen-dag-isel \
|
| /src/external/apache2/llvm/lib/libLLVMX86CodeGen/ |
| Makefile | 76 X86GenDAGISel.inc|-gen-dag-isel \
|
| /src/external/apache2/llvm/dist/llvm/utils/vim/syntax/ |
| tablegen.vim | 17 syn keyword tgKeyword def let in code dag field include defm foreach defset defvar if then else
|
| /src/external/apache2/llvm/lib/libLLVMAMDGPUCodeGen/ |
| Makefile | 119 AMDGPUGenDAGISel.inc|-gen-dag-isel \ 142 R600GenDAGISel.inc|-gen-dag-isel \
|
| /src/external/mit/xorg/lib/ |
| driver.mk | 18 dag.c \
|
| /src/external/apache2/llvm/lib/libLLVMAArch64CodeGen/ |
| Makefile | 74 AArch64GenDAGISel.inc|-gen-dag-isel \
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| MachineScheduler.h | 17 // scheduled. Targets can override the DAG builder and scheduler without 25 // The default scheduler, ScheduleDAGMILive, builds the DAG and drives list 27 // intervals. Most targets don't need to override the DAG builder and list 37 // The DAG builder can also be customized in a sense by adding DAG mutations 38 // that will run after DAG building and before list scheduling. DAG mutations 44 // ScheduleDAGMI *DAG = createGenericSchedLive(C); 45 // DAG->addMutation(new CustomDAGMutation(...)); 46 // return DAG; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| TGLexer.cpp | 353 .Case("dag", tgtok::Dag) 564 .Case("dag", tgtok::XDag)
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachineScheduler.cpp | 142 // DAG subtrees must have at least this many nodes. 367 /// consistent with the DAG builder, which traverses the interior of the 370 /// This design avoids exposing scheduling boundaries to the DAG builder, 371 /// simplifying the DAG builder's support for "special" target instructions. 453 /// handle calls, the DAG builder needs to be modified to create register 549 // points to the scheduling boundary at the bottom of the region. The DAG 770 // Build the DAG. 782 // Initialize the strategy before modifying the DAG. 786 // Initialize ready queues now that the DAG and priority data are finalized. 819 // Notify the scheduling strategy before updating the DAG [all...] |