HomeSort by relevance Sort by last modified time
    Searched defs:Jump (Results 1 - 25 of 36) sorted by null

1 2

  /external/v8/src/arm/
macro-assembler-arm.cc 34 void MacroAssembler::Jump(Register target, Condition cond) {
39 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
46 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode,
49 Jump(reinterpret_cast<intptr_t>(target), rmode, cond);
53 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
58 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
    [all...]
  /external/v8/test/cctest/compiler/
test-jump-threading.cc 7 #include "src/compiler/jump-threading.h"
28 int Jump(int target) {
124 code.Jump(1);
126 code.Jump(2);
140 code.Jump(1);
143 code.Jump(2);
235 code.Jump(1);
248 code.Jump(0);
261 code.Jump(0);
276 code.Jump(0)
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 1 //===--- JumpDiagnostics.cpp - Protected scope jump analysis ------*- C++ -*-=//
49 /// InDiag - The note to emit if there is a jump into this scope.
52 /// OutDiag - The note to emit if there is an indirect jump out
331 // Jump from the catch into the try is not allowed either.
354 // Jump from __except or __finally into the __try are not allowed either.
425 // Jump from the catch to the finally or try is not valid.
437 // Jump from the finally to the try or catch is not valid.
524 Stmt *Jump = Jumps.pop_back_val();
527 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) {
540 if (IndirectGotoStmt *IGS = dyn_cast<IndirectGotoStmt>(Jump)) {
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
MethodAnalyzer.java 53 private final List<Jump> jumps = new ArrayList<Jump>();
165 jumps.add(new Jump(lastInsn, label));
193 jumps.add(new Jump(lastInsn, dflt));
197 jumps.add(new Jump(lastInsn, l));
254 jumps.add(new Jump(lastInsn, label));
265 for (final Jump j : jumps) {
293 private static class Jump {
298 Jump(final Instruction source, final Label target) {
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 478 SDValue Jump = Op.getOperand(2);
484 Chain, Jump, Cond);
  /external/v8/test/unittests/compiler/
instruction-sequence-unittest.h 111 static BlockCompletion Jump(int offset) {
  /external/v8/src/compiler/
interpreter-assembler.cc 654 void InterpreterAssembler::Jump(Node* delta) { DispatchTo(Advance(delta)); }
  /external/v8/src/ia32/
macro-assembler-ia32.h 82 // Compare the object in a register to a value and jump if they are equal.
95 // Compare the object in a register to a value and jump if they are not equal.
152 // Checks the color of an object. If the object is white we jump to the
360 // Jump to the specified label if it does not.
365 // and HeapObject elements. Jump to the specified label if it does not.
370 // elements. Jump to the specified label if it does not.
376 // the FastDoubleElements array elements, otherwise jump to fail.
458 // Jump the register contains a smi.
464 // Jump if the operand is a smi.
470 // Jump if register contain a non-smi
    [all...]
  /external/v8/src/x87/
macro-assembler-x87.h 82 // Compare the object in a register to a value and jump if they are equal.
95 // Compare the object in a register to a value and jump if they are not equal.
152 // Checks the color of an object. If the object is white we jump to the
350 // Jump to the specified label if it does not.
355 // and HeapObject elements. Jump to the specified label if it does not.
360 // elements. Jump to the specified label if it does not.
366 // the FastDoubleElements array elements, otherwise jump to fail.
449 // Jump the register contains a smi.
455 // Jump if the operand is a smi.
461 // Jump if register contain a non-smi
    [all...]
  /external/v8/src/interpreter/
bytecode-array-builder.cc 733 // An earlier jump instruction refers to this label. Update it's location.
830 // The jump fits within the range of an Imm8 operand, so cancel
831 // the reservation and jump directly.
835 // The jump does not fit within the range of an Imm8 operand, so
837 // and update the jump instruction and operand.
895 // Label has been bound already so this is a backwards jump.
919 // reservation in the constant pool so the jump can be patched
921 // of the operand for the constant is known and the jump can
943 BytecodeArrayBuilder& BytecodeArrayBuilder::Jump(BytecodeLabel* label) {
    [all...]
  /external/valgrind/memcheck/
mc_errors.c 93 // - as a jump target
117 SizeT szB; // not used for exec (jump) errors
122 // Jump to an unaddressable memory location.
125 } Jump;
464 emit( " <what>Conditional jump or move depends"
473 emit( "Conditional jump or move depends"
619 emit( " <what>Jump to the invalid address stated "
622 VG_(pp_addrinfo_mc)( VG_(get_error_address)(err), &extra->Err.Jump.ai,
625 emit( "Jump to the invalid address stated on the next line\n" );
627 VG_(pp_addrinfo_mc)( VG_(get_error_address)(err), &extra->Err.Jump.ai
    [all...]
  /external/llvm/lib/Target/AMDGPU/
R600ISelLowering.cpp 502 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::JUMP))
    [all...]
  /external/v8/src/parsing/
preparser.h 359 static PreParserStatement Jump() {
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc     [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.cc 35 void MacroAssembler::Jump(Register target) {
43 Jump(ip);
47 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
63 void MacroAssembler::Jump(Address target, RelocInfo::Mode rmode, Condition cond,
66 Jump(reinterpret_cast<intptr_t>(target), rmode, cond, cr);
70 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
75 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
790 Jump(r3);
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.cc     [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 608 Jump(stub->GetCode(), RelocInfo::CODE_TARGET);
686 // Set the entry point and jump to the C entry runtime stub.
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
i386-opc.h 322 /* special case for jump insns. */
323 Jump,
324 /* call and jump */
551 unsigned int jump:1; member in struct:i386_opcode_modifier
685 /* Absolute address for jump. */
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.1.201405082137/
org.jacoco.core-0.7.1.201405082137.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/
org.jacoco.core-0.7.3.201501221555.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/
org.jacoco.core-0.7.4.201502262128.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.5.201505241946/
org.jacoco.core-0.7.5.201505241946.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.6.201602180812/
org.jacoco.core-0.7.6.201602180812.jar 
  /prebuilts/tools/common/offline-m2/org/jacoco/org.jacoco.core/0.7.4.201502262128/
org.jacoco.core-0.7.4.201502262128.jar 
  /prebuilts/tools/common/offline-m2/org/jacoco/org.jacoco.core/0.7.5.201505241946/
org.jacoco.core-0.7.5.201505241946.jar 

Completed in 340 milliseconds

1 2