Searched refs:addJump (Results 1 - 9 of 9) sorted by relevance

/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DScannerTest.java118 /* 12 */ addJump(code, Opcode.GOTO, 125);
122 /* 20 */ addJump(code, Opcode.GOTO, 125);
124 /* 25 */ addJump(code, Opcode.JSR, 31);
139 /* 66 */ addJump(code, Opcode.GOTO, 111);
141 /* 71 */ addJump(code, Opcode.JSR, 77);
148 /* 85 */ addJump(code, Opcode.GOTO, 106);
150 /* 90 */ addJump(code, Opcode.JSR, 96);
158 /* 106 */ addJump(code, Opcode.JSR, 96);
160 /* 111 */ addJump(code, Opcode.JSR, 77);
161 /* 114 */ addJump(cod
180 private static void addJump(Bytecode code, int opcode, int pos) { method in class:ScannerTest
[all...]
H A DAnalyzerTest.java142 private static void addJump(Bytecode code, int opcode, int pos) { method in class:AnalyzerTest
204 /* 1 */ addJump(code, Opcode.GOTO, 5);
257 /* 2 */ addJump(code, Opcode.JSR, 7);
279 /* 0 */ addJump(code, Opcode.JSR, 5);
/external/webkit/Source/JavaScriptCore/jit/
H A DJITArithmetic32_64.cpp103 addJump(branch32(LessThanOrEqual, regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
112 addJump(branch32(GreaterThanOrEqual, regT0, Imm32(asString(getConstantOperand(op2))->tryGetValue()[0])), target);
119 addJump(branch32(LessThanOrEqual, regT2, Imm32(getConstantOperand(op1).asInt32())), target);
123 addJump(branch32(GreaterThanOrEqual, regT0, Imm32(getConstantOperand(op2).asInt32())), target);
128 addJump(branch32(GreaterThanOrEqual, regT0, regT2), target);
192 addJump(branch32(GreaterThan, regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
201 addJump(branch32(LessThan, regT0, Imm32(asString(getConstantOperand(op2))->tryGetValue()[0])), target);
207 addJump(branch32(GreaterThan, regT2, Imm32(getConstantOperand(op1).asInt32())), target);
211 addJump(branch32(LessThan, regT0, Imm32(getConstantOperand(op2).asInt32())), target);
216 addJump(branch3
[all...]
H A DJITArithmetic.cpp262 addJump(branch32(LessThanOrEqual, regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
271 addJump(branch32(GreaterThanOrEqual, regT0, Imm32(asString(getConstantOperand(op2))->tryGetValue()[0])), target);
278 addJump(branch32(GreaterThanOrEqual, regT0, Imm32(op2imm)), target);
283 addJump(branch32(LessThanOrEqual, regT1, Imm32(op1imm)), target);
289 addJump(branch32(GreaterThanOrEqual, regT0, regT1), target);
415 addJump(branch32(GreaterThan, regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
424 addJump(branch32(LessThan, regT0, Imm32(asString(getConstantOperand(op2))->tryGetValue()[0])), target);
431 addJump(branch32(LessThan, regT0, Imm32(op2imm)), target);
436 addJump(branch32(GreaterThan, regT1, Imm32(op1imm)), target);
442 addJump(branch3
[all...]
H A DJITOpcodes32_64.cpp500 addJump(jump(), target);
514 addJump(branch32(GreaterThanOrEqual, regT0, Imm32(getConstantOperand(op1).asInt32())), target);
521 addJump(branch32(LessThanOrEqual, regT0, Imm32(getConstantOperand(op2).asInt32())), target);
528 addJump(branch32(LessThanOrEqual, regT0, regT2), target);
900 addJump(branchTest32(Zero, regT0), target);
936 addJump(branchTest32(NonZero, regT0), target);
974 addJump(branchTest8(NonZero, Address(regT2, Structure::typeInfoFlagsOffset()), TrustedImm32(MasqueradesAsUndefined)), target);
983 addJump(branch32(Equal, regT1, TrustedImm32(JSValue::NullTag)), target);
999 addJump(branchTest8(Zero, Address(regT2, Structure::typeInfoFlagsOffset()), TrustedImm32(MasqueradesAsUndefined)), target);
1008 addJump(branch3
[all...]
H A DJITOpcodes.cpp342 addJump(jump(), target);
357 addJump(branch32(LessThanOrEqual, regT0, Imm32(op2imm)), target);
362 addJump(branch32(LessThanOrEqual, regT0, regT1), target);
714 addJump(branchPtr(Equal, regT0, TrustedImmPtr(JSValue::encode(jsNumber(0)))), target);
717 addJump(branchPtr(Equal, regT0, TrustedImmPtr(JSValue::encode(jsBoolean(false)))), target);
734 addJump(branchTest8(NonZero, Address(regT2, Structure::typeInfoFlagsOffset()), TrustedImm32(MasqueradesAsUndefined)), target);
740 addJump(branchPtr(Equal, regT0, TrustedImmPtr(JSValue::encode(jsNull()))), target);
755 addJump(branchTest8(Zero, Address(regT2, Structure::typeInfoFlagsOffset()), TrustedImm32(MasqueradesAsUndefined)), target);
761 addJump(branchPtr(NotEqual, regT0, TrustedImmPtr(JSValue::encode(jsNull()))), target);
774 addJump(branchPt
[all...]
H A DJITInlineMethods.h287 ALWAYS_INLINE void JIT::addJump(Jump jump, int relativeOffset) function in class:JSC::JIT
H A DJIT.h281 void addJump(Jump, int);
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrJIT.cpp307 addJump(jump);
316 void addJump(Jump jump) function in struct:JSC::Yarr::YarrGenerator::IndirectJumpEntry
364 result->second->addJump(jump);

Completed in 154 milliseconds