| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SampleProfileInference.cpp | 634 for (auto &Jump : Path) { in joinIsolatedComponents() local 635 Jump->Flow += 1; in joinIsolatedComponents() 636 Func.Blocks[Jump->Target].Flow += 1; in joinIsolatedComponents() 638 findReachable(Jump->Target, Visited); in joinIsolatedComponents() 655 for (auto *Jump : Func.Blocks[Src].SuccJumps) { in findReachable() local 656 uint64_t Dst = Jump->Target; in findReachable() 657 if (Jump->Flow > 0 && !Visited[Dst]) { in findReachable() 706 for (auto *Jump : Func.Blocks[Src].SuccJumps) { in findShortestPath() local 707 uint64_t Dst = Jump->Target; in findShortestPath() 708 int64_t JumpDist = jumpDistance(Jump); in findShortestPath() [all …]
|
| H A D | CodeLayout.cpp | 375 explicit ChainEdge(JumpT *Jump) in ChainEdge() 376 : SrcChain(Jump->Source->CurChain), DstChain(Jump->Target->CurChain), in ChainEdge() 377 Jumps(1, Jump) {} in ChainEdge() 387 void appendJump(JumpT *Jump) { Jumps.push_back(Jump); } in appendJump() 453 for (JumpT *Jump : OutJumps) in isSuccessor() 454 if (Jump->Target == Other) in isSuccessor() 461 for (JumpT *Jump : OutJumps) in outCount() 462 Count += Jump->ExecutionCount; in outCount() 468 for (JumpT *Jump : InJumps) in inCount() 469 Count += Jump->ExecutionCount; in inCount() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | SampleProfileInference.h | 221 for (auto &Jump : Func.Jumps) { in apply() 222 Edge E = std::make_pair(BasicBlocks[Jump.Source], BasicBlocks[Jump.Target]); in apply() 223 EdgeWeights[E] = Jump.Flow; in apply() 266 FlowJump Jump; in createFlowFunction() local 267 Jump.Source = BlockIndex[BB]; in createFlowFunction() 268 Jump.Target = BlockIndex[Succ]; in createFlowFunction() 269 Func.Jumps.push_back(Jump); in createFlowFunction() 272 for (auto &Jump : Func.Jumps) { in createFlowFunction() 273 uint64_t Src = Jump.Source; in createFlowFunction() 274 uint64_t Dst = Jump.Target; in createFlowFunction() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 679 Stmt *Jump = Jumps.pop_back_val(); in VerifyJumps() local 682 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps() 701 if (auto *G = dyn_cast<GCCAsmStmt>(Jump)) { in VerifyJumps() 713 if (IndirectGotoStmt *IGS = dyn_cast<IndirectGotoStmt>(Jump)) { in VerifyJumps() 724 SwitchStmt *SS = cast<SwitchStmt>(Jump); in VerifyJumps() 889 static void DiagnoseIndirectOrAsmJumpStmt(Sema &S, Stmt *Jump, in DiagnoseIndirectOrAsmJumpStmt() argument 893 bool IsAsmGoto = isa<GCCAsmStmt>(Jump); in DiagnoseIndirectOrAsmJumpStmt() 894 S.Diag(Jump->getBeginLoc(), diag::err_indirect_goto_in_protected_scope) in DiagnoseIndirectOrAsmJumpStmt() 911 void JumpScopeChecker::DiagnoseIndirectOrAsmJump(Stmt *Jump, unsigned JumpScope, in DiagnoseIndirectOrAsmJump() argument 923 DiagnoseIndirectOrAsmJumpStmt(S, Jump, Target, Diagnosed); in DiagnoseIndirectOrAsmJump() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | BlockFrequencyInfoImpl.h | 1432 for (const auto &Jump : ProbMatrix[I]) { 1433 Successors[Jump.first].push_back(I); 1462 for (const auto &Jump : ProbMatrix[I]) { 1463 if (Jump.first == I) { 1464 OneMinusSelfProb -= Jump.second; 1466 NewFreq += Freq[Jump.first] * Jump.second; 1595 for (auto &Jump : Succs[Src]) { 1596 size_t Dst = Jump.first; 1597 Scaled64 Prob = Jump.second; 1619 for (const auto &Jump : ProbMatrix[I]) { [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRInterpreter.cpp | 127 void Jump(const BasicBlock *bb) { in Jump() function in InterpreterStackFrame 729 frame.Jump(&function.front()); in Interpret() 990 frame.Jump(br_inst->getSuccessor(0)); in Interpret() 992 frame.Jump(br_inst->getSuccessor(1)); in Interpret() 1000 frame.Jump(br_inst->getSuccessor(0)); in Interpret()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiInstrFormats.td | 83 // A Jump is accomplished by `Rd' being `pc', and it has one shadow. 145 // A Jump is accomplished by `Rd' being `pc', and it has one shadow. 195 // A Jump is accomplished by `Rd' being `pc', and it has *two* delay slots. 255 // A Jump is accomplished by `Rd' being `pc', and it has *two* delay slots.
|
| H A D | LanaiInstrInfo.td | 725 // Jump and link
|
| /freebsd/stand/i386/mbr/ |
| H A D | mbr.S | 48 # Jump to the relocated code.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVSchedule.td | 22 def WriteJmp : SchedWrite; // Jump 23 def WriteJal : SchedWrite; // Jump and link 24 def WriteJalr : SchedWrite; // Jump and link register
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MicroMipsInstrInfo.td | 424 // 16-bit Jump and Link (Call) 434 // 16-bit Jump Reg 453 // 16-bit Jump and Link (Call) - Short Delay Slot 462 // 16-bit Jump Register Compact - No delay slot 487 // MicroMIPS Jump and Link (Call) - Short Delay Slot 954 /// Jump Instructions 972 /// Jump Instructions - Short Delay Slot
|
| H A D | Mips64r6InstrInfo.td | 167 // Jump and Branch Instructions
|
| H A D | Mips16InstrInfo.td | 737 // Purpose: Jump and Link 756 // Purpose: Jump Register Through Register ra 1385 // Jump and Link (Call)
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | SampleProfile.cpp | 620 for (auto &Jump : Func.Jumps) { in findUnlikelyJumps() local 621 const auto *BB = BasicBlocks[Jump.Source]; in findUnlikelyJumps() 622 const auto *Succ = BasicBlocks[Jump.Target]; in findUnlikelyJumps() 629 Jump.IsUnlikely = true; in findUnlikelyJumps() 636 Jump.IsUnlikely = true; in findUnlikelyJumps()
|
| /freebsd/stand/i386/pmbr/ |
| H A D | pmbr.S | 81 # Jump to the relocated code.
|
| /freebsd/sys/contrib/xz-embedded/linux/Documentation/ |
| H A D | xz.txt | 10 compression ratio even further. E.g. Branch/Call/Jump (BCJ) filters
|
| /freebsd/stand/i386/boot0/ |
| H A D | boot0.S | 199 jmp main-LOAD+ORIGIN # Jump to relocated code
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | jpeg | 47 # Jump to the first segment
|
| /freebsd/contrib/xz/ |
| H A D | README | 50 For example, putting a BCJ (Branch/Call/Jump) filter before LZMA2
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCInstrInfo.td | 461 // Unconditional Jump. 602 // Indexed Jump or Execute.
|
| H A D | ARCInstrFormats.td | 712 // Indexed Jump or Execute.
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Opcodes.td | 164 // Jump opcodes
|
| /freebsd/contrib/less/ |
| H A D | less.hlp | 53 ^O^L ^Ol Jump to the currently selected OSC8 hyperlink.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFInstrInfo.td | 756 // Jump always 762 // Jump and link
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | R600ISelLowering.cpp | 1412 SDValue Jump = Op.getOperand(2); in LowerBRCOND() local 1415 Chain, Jump, Cond); in LowerBRCOND()
|