Home
last modified time | relevance | path

Searched refs:current_bytecode (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-array-accessor.cc93 Bytecode current_bytecode = Bytecodes::FromByte(current_byte); in UpdateOperandScale() local
94 if (Bytecodes::IsPrefixScalingBytecode(current_bytecode)) { in UpdateOperandScale()
96 Bytecodes::PrefixBytecodeToOperandScale(current_bytecode); in UpdateOperandScale()
109 Bytecode BytecodeArrayAccessor::current_bytecode() const { in current_bytecode() function in v8::internal::interpreter::BytecodeArrayAccessor
113 Bytecode current_bytecode = Bytecodes::FromByte(current_byte); in current_bytecode() local
114 DCHECK(!Bytecodes::IsPrefixScalingBytecode(current_bytecode)); in current_bytecode()
115 return current_bytecode; in current_bytecode()
120 Bytecodes::Size(current_bytecode(), current_operand_scale()); in current_bytecode_size()
126 DCHECK_LT(operand_index, Bytecodes::NumberOfOperands(current_bytecode())); in GetUnsignedOperand()
128 Bytecodes::GetOperandType(current_bytecode(), operand_index)); in GetUnsignedOperand()
[all …]
Dbytecode-array-accessor.h101 Bytecode current_bytecode() const;
/external/v8/src/compiler/
Dbytecode-analysis.cc325 Bytecode bytecode = iterator.current_bytecode(); in Analyze()
478 DCHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpLoop); in Analyze()
497 Bytecode bytecode = iterator.current_bytecode(); in Analyze()
506 UpdateOutLiveness(iterator.current_bytecode(), header_liveness.out, in Analyze()
517 DCHECK_EQ(iterator.current_bytecode(), Bytecode::kSwitchOnGeneratorState); in Analyze()
539 Bytecode bytecode = iterator.current_bytecode(); in Analyze()
671 if (iterator.current_bytecode() == Bytecode::kSwitchOnGeneratorState) { in ResumeJumpTargetsAreValid()
774 if (accessor.current_bytecode() != Bytecode::kResumeGenerator) { in ResumeJumpTargetLeavesResolveSuspendIds()
779 Bytecodes::ToString(accessor.current_bytecode())); in ResumeJumpTargetLeavesResolveSuspendIds()
825 Bytecode bytecode = iterator.current_bytecode(); in LivenessIsValid()
[all …]
Dbytecode-graph-builder.cc1426 if (bytecode_iterator().current_bytecode() == in AdvanceToOsrEntryAndPeelLoops()
1474 switch (bytecode_iterator().current_bytecode()) { in VisitSingleBytecode()
1504 bytecode_iterator().current_bytecode())) { in VisitBytecodes()
2456 bytecode_iterator().current_bytecode()), in BuildCall()
2508 bytecode_iterator().current_bytecode()), in BuildCallVarArgs()
2531 bytecode_iterator().current_bytecode()), in VisitCallNoFeedback()
Dserializer-for-background-compilation.cc1283 interpreter::Bytecodes::IsOneShotBytecode(iterator.current_bytecode()); in TraverseBytecode()
1293 << iterator.current_bytecode()); in TraverseBytecode()
1320 switch (iterator.current_bytecode()) { in TraverseBytecode()
/external/v8/src/runtime/
Druntime-interpreter.cc57 interpreter::Bytecode bytecode = bytecode_iterator.current_bytecode(); in PrintRegisters()
/external/v8/src/debug/
Ddebug-evaluate.cc917 interpreter::Bytecode bytecode = it.current_bytecode(); in FunctionGetSideEffectState()
1126 interpreter::Bytecode bytecode = it.current_bytecode(); in ApplySideEffectChecks()
Ddebug.cc317 DCHECK_EQ(accessor.current_bytecode(), in GetBreakLocation()
2437 Bytecode bytecode = bytecode_accessor.current_bytecode(); in PerformSideEffectCheckAtBytecode()
/external/v8/src/objects/
Dcode.cc844 if (interpreter::Bytecodes::IsJump(iterator.current_bytecode())) { in Disassemble()
849 if (interpreter::Bytecodes::IsSwitch(iterator.current_bytecode())) { in Disassemble()