Home
last modified time | relevance | path

Searched refs:Jump (Results 1 – 25 of 161) sorted by relevance

1234567

/external/mesa3d/src/intel/tools/tests/gen4/
Dbreak.asm1 (-f0.0) break(16) Jump: 10 Pop: 0 { align1 };
2 break(16) Jump: 5 Pop: 1 { align1 };
3 (+f0.0) break(16) Jump: 156 Pop: 0 { align1 };
4 (+f0.0.x) break(8) Jump: 16 Pop: 0 { align16 };
5 break(8) Jump: 6 Pop: 2 { align16 };
Dwhile.asm1 while(16) Jump: -10 { align1 };
2 while(8) Jump: -16 { align16 };
3 (-f0.0) while(16) Jump: -11 { align1 };
4 (-f0.0.x) while(8) Jump: -11 { align16 };
Diff.asm1 (-f0.0) iff(16) Jump: 5 { align1 switch };
2 (+f0.0.x) iff(8) Jump: 11 { align16 switch };
3 (+f0.0) iff(16) Jump: 7 { align1 switch };
Delse.asm1 else(16) Jump: 7 Pop: 1 { align1 switch };
2 else(8) Jump: 3 Pop: 1 { align16 switch };
Dif.asm1 (+f0.0) if(16) Jump: 15 { align1 switch };
2 (+f0.0.x) if(8) Jump: 7 { align16 switch };
Dcont.asm1 cont(16) Jump: 4 Pop: 1 { align1 };
2 cont(8) Jump: 4 Pop: 1 { align16 };
/external/mesa3d/src/intel/tools/tests/gen4.5/
Dbreak.asm1 (-f0.0) break(16) Jump: 10 Pop: 0 { align1 };
2 break(16) Jump: 5 Pop: 1 { align1 };
3 (+f0.0) break(16) Jump: 141 Pop: 0 { align1 };
4 (+f0.0.x) break(8) Jump: 16 Pop: 0 { align16 };
5 break(8) Jump: 6 Pop: 2 { align16 };
Dwhile.asm1 while(16) Jump: -10 { align1 };
2 while(8) Jump: -16 { align16 };
3 (-f0.0) while(16) Jump: -11 { align1 };
4 (-f0.0.x) while(8) Jump: -11 { align16 };
Diff.asm1 (-f0.0) iff(16) Jump: 5 { align1 switch };
2 (+f0.0.x) iff(8) Jump: 11 { align16 switch };
3 (+f0.0) iff(16) Jump: 7 { align1 switch };
Delse.asm1 else(16) Jump: 7 Pop: 1 { align1 switch };
2 else(8) Jump: 3 Pop: 1 { align16 switch };
Dif.asm1 (+f0.0) if(16) Jump: 15 { align1 switch };
2 (+f0.0.x) if(8) Jump: 7 { align16 switch };
Dcont.asm1 cont(16) Jump: 4 Pop: 1 { align1 };
2 cont(8) Jump: 4 Pop: 1 { align16 };
/external/mesa3d/src/intel/tools/tests/gen5/
Dbreak.asm1 (+f0.0) break(8) Jump: 282 Pop: 0 { align1 };
2 (+f0.0) break(16) Jump: 282 Pop: 0 { align1 };
3 (+f0.0.x) break(8) Jump: 32 Pop: 0 { align16 };
4 break(8) Jump: 12 Pop: 2 { align16 };
Dwhile.asm1 while(8) Jump: -282 { align1 };
2 while(16) Jump: -282 { align1 };
3 while(8) Jump: -32 { align16 };
Delse.asm1 else(8) Jump: 86 Pop: 1 { align1 switch };
2 else(16) Jump: 86 Pop: 1 { align1 switch };
3 else(8) Jump: 14 Pop: 1 { align16 switch };
Dif.asm1 (+f0.0) if(8) Jump: 10 { align1 switch };
2 (+f0.0) if(16) Jump: 10 { align1 switch };
3 (+f0.0.x) if(8) Jump: 26 { align16 switch };
Diff.asm1 (+f0.0.x) iff(8) Jump: 22 { align16 switch };
2 (+f0.0) iff(8) Jump: 44 { align1 switch };
3 (+f0.0) iff(16) Jump: 44 { align1 switch };
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DInstructionsBuilder.java58 private final List<Jump> jumps;
74 this.jumps = new ArrayList<Jump>(); in InstructionsBuilder()
136 jumps.add(new Jump(currentInsn, target, branch)); in addJump()
161 for (final Jump j : jumps) { in getInstructions()
168 private static class Jump { class in InstructionsBuilder
174 Jump(final Instruction source, final Label target, final int branch) { in Jump() method in InstructionsBuilder.Jump
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dmin-jump-table.ll15 ; CHECK0-NEXT: Jump Tables:
16 ; CHECK2-NEXT: Jump Tables:
17 ; CHECK4-NOT: {{^}}Jump Tables:
18 ; CHECK8-NOT: {{^}}Jump Tables:
35 ; CHECK0-NEXT: Jump Tables:
36 ; CHECK2-NEXT: Jump Tables:
37 ; CHECK4-NEXT: Jump Tables:
38 ; CHECK8-NOT: {{^}}Jump Tables:
61 ; CHECK-NEXT: Jump Tables:
/external/llvm-project/clang/lib/Sema/
DJumpDiagnostics.cpp631 Stmt *Jump = Jumps.pop_back_val(); in VerifyJumps() local
634 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps()
647 if (IndirectGotoStmt *IGS = dyn_cast<IndirectGotoStmt>(Jump)) { in VerifyJumps()
656 SwitchStmt *SS = cast<SwitchStmt>(Jump); in VerifyJumps()
833 static void DiagnoseIndirectOrAsmJumpStmt(Sema &S, Stmt *Jump, in DiagnoseIndirectOrAsmJumpStmt() argument
837 bool IsAsmGoto = isa<GCCAsmStmt>(Jump); in DiagnoseIndirectOrAsmJumpStmt()
838 S.Diag(Jump->getBeginLoc(), diag::err_indirect_goto_in_protected_scope) in DiagnoseIndirectOrAsmJumpStmt()
855 void JumpScopeChecker::DiagnoseIndirectOrAsmJump(Stmt *Jump, unsigned JumpScope, in DiagnoseIndirectOrAsmJump() argument
867 DiagnoseIndirectOrAsmJumpStmt(S, Jump, Target, Diagnosed); in DiagnoseIndirectOrAsmJump()
878 DiagnoseIndirectOrAsmJumpStmt(S, Jump, Target, Diagnosed); in DiagnoseIndirectOrAsmJump()
[all …]
/external/clang/lib/Sema/
DJumpDiagnostics.cpp578 Stmt *Jump = Jumps.pop_back_val(); in VerifyJumps() local
581 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps()
594 if (IndirectGotoStmt *IGS = dyn_cast<IndirectGotoStmt>(Jump)) { in VerifyJumps()
603 SwitchStmt *SS = cast<SwitchStmt>(Jump); in VerifyJumps()
776 static void DiagnoseIndirectJumpStmt(Sema &S, IndirectGotoStmt *Jump, in DiagnoseIndirectJumpStmt() argument
780 S.Diag(Jump->getGotoLoc(), diag::err_indirect_goto_in_protected_scope); in DiagnoseIndirectJumpStmt()
795 void JumpScopeChecker::DiagnoseIndirectJump(IndirectGotoStmt *Jump, in DiagnoseIndirectJump() argument
808 DiagnoseIndirectJumpStmt(S, Jump, Target, Diagnosed); in DiagnoseIndirectJump()
819 DiagnoseIndirectJumpStmt(S, Jump, Target, Diagnosed); in DiagnoseIndirectJump()
825 S.Diag(Jump->getGotoLoc(), in DiagnoseIndirectJump()
/external/llvm-project/compiler-rt/test/asan/TestCases/Posix/
Dunpoison-alternate-stack.cpp44 template <class Jump>
45 void __attribute__((noinline)) poisonStackAndJump(TestContext &c, Jump jump) { in poisonStackAndJump()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVSchedule.td18 def WriteJmp : SchedWrite; // Jump
19 def WriteJal : SchedWrite; // Jump and link
20 def WriteJalr : SchedWrite; // Jump and link register
21 def WriteJmpReg : SchedWrite; // Jump register
/external/llvm-project/llvm/lib/Target/RISCV/
DRISCVSchedule.td18 def WriteJmp : SchedWrite; // Jump
19 def WriteJal : SchedWrite; // Jump and link
20 def WriteJalr : SchedWrite; // Jump and link register
21 def WriteJmpReg : SchedWrite; // Jump register
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
DControlFlow.cpp20 const bool NearJmp = AssemblerX8632::k##Near##Jump; \ in TEST_F()
154 __ jmp(&ForwardJmp, AssemblerX8632::k##Near##Jump); \ in TEST_F()
166 __ jmp(&Done, AssemblerX8632::k##Near##Jump); \ in TEST_F()

1234567