Searched defs:jump_bytecode (Results 1 - 3 of 3) sorted by relevance

/external/v8/test/unittests/interpreter/
H A Dbytecode-array-builder-unittest.cc515 static Bytecode PeepholeToBoolean(Bytecode jump_bytecode) { argument
517 ? Bytecodes::GetJumpWithoutToBoolean(jump_bytecode)
518 : jump_bytecode;
/external/v8/src/interpreter/
H A Dbytecode-array-writer.cc218 Bytecode GetJumpWithConstantOperand(Bytecode jump_bytecode) { argument
219 switch (jump_bytecode) {
244 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); local
245 DCHECK(Bytecodes::IsJumpImmediate(jump_bytecode));
262 jump_bytecode = GetJumpWithConstantOperand(jump_bytecode);
263 bytecodes()->at(jump_location) = Bytecodes::ToByte(jump_bytecode);
270 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); local
271 DCHECK(Bytecodes::IsJumpImmediate(jump_bytecode));
278 jump_bytecode
309 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); local
[all...]
H A Dbytecode-array-builder.cc406 BytecodeArrayBuilder& BytecodeArrayBuilder::OutputJump(Bytecode jump_bytecode, argument
408 BytecodeNode node(jump_bytecode, 0);

Completed in 224 milliseconds