Searched refs:JumpIfTrue (Results 1 – 9 of 9) sorted by relevance
/external/v8/test/unittests/interpreter/ |
D | bytecode-array-builder-unittest.cc | 175 .JumpIfTrue(&start) in TEST_F() 181 .JumpIfTrue(&start) in TEST_F() 195 .JumpIfTrue(&start) in TEST_F() 201 .JumpIfTrue(&start) in TEST_F() 272 .JumpIfTrue(&start) in TEST_F() 278 .JumpIfTrue(&start) in TEST_F() 427 .JumpIfTrue(&near1) in TEST_F() 431 .JumpIfTrue(&near3) in TEST_F() 441 .JumpIfTrue(&far1) in TEST_F() 445 .JumpIfTrue(&far3) in TEST_F() [all …]
|
/external/v8/src/interpreter/ |
D | control-flow-builders.cc | 31 builder()->JumpIfTrue(&sites->back()); in EmitJumpIfTrue() 64 builder()->JumpIfTrue(&sites->at(index)); in EmitJumpIfTrue()
|
D | control-flow-builders.h | 94 void JumpToHeaderIfTrue() { builder()->JumpIfTrue(&loop_header_); } in JumpToHeaderIfTrue()
|
D | bytecode-array-builder.h | 215 BytecodeArrayBuilder& JumpIfTrue(BytecodeLabel* label);
|
D | bytecodes.h | 202 V(JumpIfTrue, OperandType::kImm8) \
|
D | bytecode-array-builder.cc | 948 BytecodeArrayBuilder& BytecodeArrayBuilder::JumpIfTrue(BytecodeLabel* label) { in JumpIfTrue() function in v8::internal::interpreter::BytecodeArrayBuilder
|
D | bytecode-generator.cc | 1938 builder()->JumpIfTrue(&end_label); in VisitLogicalOrExpression()
|
/external/v8/test/cctest/interpreter/ |
D | test-bytecode-generator.cc | 458 B(JumpIfTrue), U8(4), // in TEST() 2531 B(JumpIfTrue), U8(-52), // in TEST() 3032 B(JumpIfTrue), U8(-12), // in TEST() 5265 B(JumpIfTrue), U8(20), // in TEST() 5297 B(JumpIfTrue), U8(29), // in TEST() 5336 B(JumpIfTrue), U8(63), // in TEST() 5387 B(JumpIfTrue), U8(40), // in TEST() 5483 B(JumpIfTrue), U8(10), // in TEST() 5486 B(JumpIfTrue), U8(7), // in TEST() 5510 B(JumpIfTrue), U8(10), // in TEST() [all …]
|
D | test-interpreter.cc | 1292 IncrementRegister(builder, reg, 1, scratch).LoadTrue().JumpIfTrue(&label[1]); in TEST() 1294 IncrementRegister(builder, reg, 2, scratch).LoadFalse().JumpIfTrue(&done1); in TEST() 1328 IncrementRegister(builder, reg, 1, scratch).LoadTrue().JumpIfTrue(&label[1]); in TEST() 1330 IncrementRegister(builder, reg, 2, scratch).LoadFalse().JumpIfTrue(&done1); in TEST()
|