|
|
@ -1059,294 +1059,294 @@ impl Opcode { |
|
|
|
|
|
|
|
|
|
|
|
pub fn as_str(self) -> &'static str { |
|
|
|
pub fn as_str(self) -> &'static str { |
|
|
|
match self { |
|
|
|
match self { |
|
|
|
Opcode::Pop => "Pop", |
|
|
|
Self::Pop => "Pop", |
|
|
|
Opcode::Dup => "Dup", |
|
|
|
Self::Dup => "Dup", |
|
|
|
Opcode::Swap => "Swap", |
|
|
|
Self::Swap => "Swap", |
|
|
|
Opcode::PushZero => "PushZero", |
|
|
|
Self::PushZero => "PushZero", |
|
|
|
Opcode::PushOne => "PushOne", |
|
|
|
Self::PushOne => "PushOne", |
|
|
|
Opcode::PushInt8 => "PushInt8", |
|
|
|
Self::PushInt8 => "PushInt8", |
|
|
|
Opcode::PushInt16 => "PushInt16", |
|
|
|
Self::PushInt16 => "PushInt16", |
|
|
|
Opcode::PushInt32 => "PushInt32", |
|
|
|
Self::PushInt32 => "PushInt32", |
|
|
|
Opcode::PushRational => "PushRational", |
|
|
|
Self::PushRational => "PushRational", |
|
|
|
Opcode::PushNaN => "PushNaN", |
|
|
|
Self::PushNaN => "PushNaN", |
|
|
|
Opcode::PushPositiveInfinity => "PushPositiveInfinity", |
|
|
|
Self::PushPositiveInfinity => "PushPositiveInfinity", |
|
|
|
Opcode::PushNegativeInfinity => "PushNegativeInfinity", |
|
|
|
Self::PushNegativeInfinity => "PushNegativeInfinity", |
|
|
|
Opcode::PushNull => "PushNull", |
|
|
|
Self::PushNull => "PushNull", |
|
|
|
Opcode::PushTrue => "PushTrue", |
|
|
|
Self::PushTrue => "PushTrue", |
|
|
|
Opcode::PushFalse => "PushFalse", |
|
|
|
Self::PushFalse => "PushFalse", |
|
|
|
Opcode::PushUndefined => "PushUndefined", |
|
|
|
Self::PushUndefined => "PushUndefined", |
|
|
|
Opcode::PushLiteral => "PushLiteral", |
|
|
|
Self::PushLiteral => "PushLiteral", |
|
|
|
Opcode::PushEmptyObject => "PushEmptyObject", |
|
|
|
Self::PushEmptyObject => "PushEmptyObject", |
|
|
|
Opcode::PushClassPrototype => "PushClassPrototype", |
|
|
|
Self::PushClassPrototype => "PushClassPrototype", |
|
|
|
Opcode::PushNewArray => "PushNewArray", |
|
|
|
Self::PushNewArray => "PushNewArray", |
|
|
|
Opcode::PushValueToArray => "PushValueToArray", |
|
|
|
Self::PushValueToArray => "PushValueToArray", |
|
|
|
Opcode::PushElisionToArray => "PushElisionToArray", |
|
|
|
Self::PushElisionToArray => "PushElisionToArray", |
|
|
|
Opcode::PushIteratorToArray => "PushIteratorToArray", |
|
|
|
Self::PushIteratorToArray => "PushIteratorToArray", |
|
|
|
Opcode::Add => "Add", |
|
|
|
Self::Add => "Add", |
|
|
|
Opcode::Sub => "Sub", |
|
|
|
Self::Sub => "Sub", |
|
|
|
Opcode::Div => "Div", |
|
|
|
Self::Div => "Div", |
|
|
|
Opcode::Mul => "Mul", |
|
|
|
Self::Mul => "Mul", |
|
|
|
Opcode::Mod => "Mod", |
|
|
|
Self::Mod => "Mod", |
|
|
|
Opcode::Pow => "Pow", |
|
|
|
Self::Pow => "Pow", |
|
|
|
Opcode::ShiftRight => "ShiftRight", |
|
|
|
Self::ShiftRight => "ShiftRight", |
|
|
|
Opcode::ShiftLeft => "ShiftLeft", |
|
|
|
Self::ShiftLeft => "ShiftLeft", |
|
|
|
Opcode::UnsignedShiftRight => "UnsignedShiftRight", |
|
|
|
Self::UnsignedShiftRight => "UnsignedShiftRight", |
|
|
|
Opcode::BitOr => "BitOr", |
|
|
|
Self::BitOr => "BitOr", |
|
|
|
Opcode::BitAnd => "BitAnd", |
|
|
|
Self::BitAnd => "BitAnd", |
|
|
|
Opcode::BitXor => "BitXor", |
|
|
|
Self::BitXor => "BitXor", |
|
|
|
Opcode::BitNot => "BitNot", |
|
|
|
Self::BitNot => "BitNot", |
|
|
|
Opcode::In => "In", |
|
|
|
Self::In => "In", |
|
|
|
Opcode::Eq => "Eq", |
|
|
|
Self::Eq => "Eq", |
|
|
|
Opcode::StrictEq => "StrictEq", |
|
|
|
Self::StrictEq => "StrictEq", |
|
|
|
Opcode::NotEq => "NotEq", |
|
|
|
Self::NotEq => "NotEq", |
|
|
|
Opcode::StrictNotEq => "StrictNotEq", |
|
|
|
Self::StrictNotEq => "StrictNotEq", |
|
|
|
Opcode::GreaterThan => "GreaterThan", |
|
|
|
Self::GreaterThan => "GreaterThan", |
|
|
|
Opcode::GreaterThanOrEq => "GreaterThanOrEq", |
|
|
|
Self::GreaterThanOrEq => "GreaterThanOrEq", |
|
|
|
Opcode::LessThan => "LessThan", |
|
|
|
Self::LessThan => "LessThan", |
|
|
|
Opcode::LessThanOrEq => "LessThanOrEq", |
|
|
|
Self::LessThanOrEq => "LessThanOrEq", |
|
|
|
Opcode::InstanceOf => "InstanceOf", |
|
|
|
Self::InstanceOf => "InstanceOf", |
|
|
|
Opcode::TypeOf => "TypeOf", |
|
|
|
Self::TypeOf => "TypeOf", |
|
|
|
Opcode::Void => "Void", |
|
|
|
Self::Void => "Void", |
|
|
|
Opcode::LogicalNot => "LogicalNot", |
|
|
|
Self::LogicalNot => "LogicalNot", |
|
|
|
Opcode::LogicalAnd => "LogicalAnd", |
|
|
|
Self::LogicalAnd => "LogicalAnd", |
|
|
|
Opcode::LogicalOr => "LogicalOr", |
|
|
|
Self::LogicalOr => "LogicalOr", |
|
|
|
Opcode::Coalesce => "Coalesce", |
|
|
|
Self::Coalesce => "Coalesce", |
|
|
|
Opcode::Pos => "Pos", |
|
|
|
Self::Pos => "Pos", |
|
|
|
Opcode::Neg => "Neg", |
|
|
|
Self::Neg => "Neg", |
|
|
|
Opcode::Inc => "Inc", |
|
|
|
Self::Inc => "Inc", |
|
|
|
Opcode::IncPost => "IncPost", |
|
|
|
Self::IncPost => "IncPost", |
|
|
|
Opcode::Dec => "Dec", |
|
|
|
Self::Dec => "Dec", |
|
|
|
Opcode::DecPost => "DecPost", |
|
|
|
Self::DecPost => "DecPost", |
|
|
|
Opcode::DefInitArg => "DefInitArg", |
|
|
|
Self::DefInitArg => "DefInitArg", |
|
|
|
Opcode::DefVar => "DefVar", |
|
|
|
Self::DefVar => "DefVar", |
|
|
|
Opcode::DefInitVar => "DefInitVar", |
|
|
|
Self::DefInitVar => "DefInitVar", |
|
|
|
Opcode::DefLet => "DefLet", |
|
|
|
Self::DefLet => "DefLet", |
|
|
|
Opcode::DefInitLet => "DefInitLet", |
|
|
|
Self::DefInitLet => "DefInitLet", |
|
|
|
Opcode::DefInitConst => "DefInitConst", |
|
|
|
Self::DefInitConst => "DefInitConst", |
|
|
|
Opcode::GetName => "GetName", |
|
|
|
Self::GetName => "GetName", |
|
|
|
Opcode::GetNameOrUndefined => "GetNameOrUndefined", |
|
|
|
Self::GetNameOrUndefined => "GetNameOrUndefined", |
|
|
|
Opcode::SetName => "SetName", |
|
|
|
Self::SetName => "SetName", |
|
|
|
Opcode::GetPropertyByName => "GetPropertyByName", |
|
|
|
Self::GetPropertyByName => "GetPropertyByName", |
|
|
|
Opcode::GetPropertyByValue => "GetPropertyByValue", |
|
|
|
Self::GetPropertyByValue => "GetPropertyByValue", |
|
|
|
Opcode::SetPropertyByName => "SetPropertyByName", |
|
|
|
Self::SetPropertyByName => "SetPropertyByName", |
|
|
|
Opcode::DefineOwnPropertyByName => "DefineOwnPropertyByName", |
|
|
|
Self::DefineOwnPropertyByName => "DefineOwnPropertyByName", |
|
|
|
Opcode::DefineClassMethodByName => "DefineClassMethodByName", |
|
|
|
Self::DefineClassMethodByName => "DefineClassMethodByName", |
|
|
|
Opcode::SetPropertyByValue => "SetPropertyByValue", |
|
|
|
Self::SetPropertyByValue => "SetPropertyByValue", |
|
|
|
Opcode::DefineOwnPropertyByValue => "DefineOwnPropertyByValue", |
|
|
|
Self::DefineOwnPropertyByValue => "DefineOwnPropertyByValue", |
|
|
|
Opcode::DefineClassMethodByValue => "DefineClassMethodByValue", |
|
|
|
Self::DefineClassMethodByValue => "DefineClassMethodByValue", |
|
|
|
Opcode::SetPropertyGetterByName => "SetPropertyGetterByName", |
|
|
|
Self::SetPropertyGetterByName => "SetPropertyGetterByName", |
|
|
|
Opcode::DefineClassGetterByName => "DefineClassGetterByName", |
|
|
|
Self::DefineClassGetterByName => "DefineClassGetterByName", |
|
|
|
Opcode::SetPropertyGetterByValue => "SetPropertyGetterByValue", |
|
|
|
Self::SetPropertyGetterByValue => "SetPropertyGetterByValue", |
|
|
|
Opcode::DefineClassGetterByValue => "DefineClassGetterByValue", |
|
|
|
Self::DefineClassGetterByValue => "DefineClassGetterByValue", |
|
|
|
Opcode::SetPropertySetterByName => "SetPropertySetterByName", |
|
|
|
Self::SetPropertySetterByName => "SetPropertySetterByName", |
|
|
|
Opcode::DefineClassSetterByName => "DefineClassSetterByName", |
|
|
|
Self::DefineClassSetterByName => "DefineClassSetterByName", |
|
|
|
Opcode::SetPropertySetterByValue => "SetPropertySetterByValue", |
|
|
|
Self::SetPropertySetterByValue => "SetPropertySetterByValue", |
|
|
|
Opcode::DefineClassSetterByValue => "DefineClassSetterByValue", |
|
|
|
Self::DefineClassSetterByValue => "DefineClassSetterByValue", |
|
|
|
Opcode::SetPrivateValue => "SetPrivateValue", |
|
|
|
Self::SetPrivateValue => "SetPrivateValue", |
|
|
|
Opcode::SetPrivateSetter => "SetPrivateSetter", |
|
|
|
Self::SetPrivateSetter => "SetPrivateSetter", |
|
|
|
Opcode::SetPrivateGetter => "SetPrivateGetter", |
|
|
|
Self::SetPrivateGetter => "SetPrivateGetter", |
|
|
|
Opcode::GetPrivateField => "GetPrivateByName", |
|
|
|
Self::GetPrivateField => "GetPrivateByName", |
|
|
|
Opcode::PushClassComputedFieldName => "PushClassComputedFieldName", |
|
|
|
Self::PushClassComputedFieldName => "PushClassComputedFieldName", |
|
|
|
Opcode::DeletePropertyByName => "DeletePropertyByName", |
|
|
|
Self::DeletePropertyByName => "DeletePropertyByName", |
|
|
|
Opcode::DeletePropertyByValue => "DeletePropertyByValue", |
|
|
|
Self::DeletePropertyByValue => "DeletePropertyByValue", |
|
|
|
Opcode::CopyDataProperties => "CopyDataProperties", |
|
|
|
Self::CopyDataProperties => "CopyDataProperties", |
|
|
|
Opcode::ToPropertyKey => "ToPropertyKey", |
|
|
|
Self::ToPropertyKey => "ToPropertyKey", |
|
|
|
Opcode::Jump => "Jump", |
|
|
|
Self::Jump => "Jump", |
|
|
|
Opcode::JumpIfFalse => "JumpIfFalse", |
|
|
|
Self::JumpIfFalse => "JumpIfFalse", |
|
|
|
Opcode::JumpIfNotUndefined => "JumpIfNotUndefined", |
|
|
|
Self::JumpIfNotUndefined => "JumpIfNotUndefined", |
|
|
|
Opcode::Throw => "Throw", |
|
|
|
Self::Throw => "Throw", |
|
|
|
Opcode::TryStart => "TryStart", |
|
|
|
Self::TryStart => "TryStart", |
|
|
|
Opcode::TryEnd => "TryEnd", |
|
|
|
Self::TryEnd => "TryEnd", |
|
|
|
Opcode::CatchStart => "CatchStart", |
|
|
|
Self::CatchStart => "CatchStart", |
|
|
|
Opcode::CatchEnd => "CatchEnd", |
|
|
|
Self::CatchEnd => "CatchEnd", |
|
|
|
Opcode::CatchEnd2 => "CatchEnd2", |
|
|
|
Self::CatchEnd2 => "CatchEnd2", |
|
|
|
Opcode::FinallyStart => "FinallyStart", |
|
|
|
Self::FinallyStart => "FinallyStart", |
|
|
|
Opcode::FinallyEnd => "FinallyEnd", |
|
|
|
Self::FinallyEnd => "FinallyEnd", |
|
|
|
Opcode::FinallySetJump => "FinallySetJump", |
|
|
|
Self::FinallySetJump => "FinallySetJump", |
|
|
|
Opcode::ToBoolean => "ToBoolean", |
|
|
|
Self::ToBoolean => "ToBoolean", |
|
|
|
Opcode::This => "This", |
|
|
|
Self::This => "This", |
|
|
|
Opcode::Case => "Case", |
|
|
|
Self::Case => "Case", |
|
|
|
Opcode::Default => "Default", |
|
|
|
Self::Default => "Default", |
|
|
|
Opcode::GetFunction => "GetFunction", |
|
|
|
Self::GetFunction => "GetFunction", |
|
|
|
Opcode::GetGenerator => "GetGenerator", |
|
|
|
Self::GetGenerator => "GetGenerator", |
|
|
|
Opcode::CallEval => "CallEval", |
|
|
|
Self::CallEval => "CallEval", |
|
|
|
Opcode::CallEvalWithRest => "CallEvalWithRest", |
|
|
|
Self::CallEvalWithRest => "CallEvalWithRest", |
|
|
|
Opcode::Call => "Call", |
|
|
|
Self::Call => "Call", |
|
|
|
Opcode::CallWithRest => "CallWithRest", |
|
|
|
Self::CallWithRest => "CallWithRest", |
|
|
|
Opcode::New => "New", |
|
|
|
Self::New => "New", |
|
|
|
Opcode::NewWithRest => "NewWithRest", |
|
|
|
Self::NewWithRest => "NewWithRest", |
|
|
|
Opcode::Return => "Return", |
|
|
|
Self::Return => "Return", |
|
|
|
Opcode::PushDeclarativeEnvironment => "PushDeclarativeEnvironment", |
|
|
|
Self::PushDeclarativeEnvironment => "PushDeclarativeEnvironment", |
|
|
|
Opcode::PushFunctionEnvironment => "PushFunctionEnvironment", |
|
|
|
Self::PushFunctionEnvironment => "PushFunctionEnvironment", |
|
|
|
Opcode::PopEnvironment => "PopEnvironment", |
|
|
|
Self::PopEnvironment => "PopEnvironment", |
|
|
|
Opcode::LoopStart => "LoopStart", |
|
|
|
Self::LoopStart => "LoopStart", |
|
|
|
Opcode::LoopContinue => "LoopContinue", |
|
|
|
Self::LoopContinue => "LoopContinue", |
|
|
|
Opcode::LoopEnd => "LoopEnd", |
|
|
|
Self::LoopEnd => "LoopEnd", |
|
|
|
Opcode::ForInLoopInitIterator => "ForInLoopInitIterator", |
|
|
|
Self::ForInLoopInitIterator => "ForInLoopInitIterator", |
|
|
|
Opcode::InitIterator => "InitIterator", |
|
|
|
Self::InitIterator => "InitIterator", |
|
|
|
Opcode::IteratorNext => "IteratorNext", |
|
|
|
Self::IteratorNext => "IteratorNext", |
|
|
|
Opcode::IteratorNextFull => "IteratorNextFull", |
|
|
|
Self::IteratorNextFull => "IteratorNextFull", |
|
|
|
Opcode::IteratorClose => "IteratorClose", |
|
|
|
Self::IteratorClose => "IteratorClose", |
|
|
|
Opcode::IteratorToArray => "IteratorToArray", |
|
|
|
Self::IteratorToArray => "IteratorToArray", |
|
|
|
Opcode::ForInLoopNext => "ForInLoopNext", |
|
|
|
Self::ForInLoopNext => "ForInLoopNext", |
|
|
|
Opcode::ConcatToString => "ConcatToString", |
|
|
|
Self::ConcatToString => "ConcatToString", |
|
|
|
Opcode::RequireObjectCoercible => "RequireObjectCoercible", |
|
|
|
Self::RequireObjectCoercible => "RequireObjectCoercible", |
|
|
|
Opcode::ValueNotNullOrUndefined => "ValueNotNullOrUndefined", |
|
|
|
Self::ValueNotNullOrUndefined => "ValueNotNullOrUndefined", |
|
|
|
Opcode::RestParameterInit => "FunctionRestParameter", |
|
|
|
Self::RestParameterInit => "FunctionRestParameter", |
|
|
|
Opcode::RestParameterPop => "RestParameterPop", |
|
|
|
Self::RestParameterPop => "RestParameterPop", |
|
|
|
Opcode::PopOnReturnAdd => "PopOnReturnAdd", |
|
|
|
Self::PopOnReturnAdd => "PopOnReturnAdd", |
|
|
|
Opcode::PopOnReturnSub => "PopOnReturnSub", |
|
|
|
Self::PopOnReturnSub => "PopOnReturnSub", |
|
|
|
Opcode::Yield => "Yield", |
|
|
|
Self::Yield => "Yield", |
|
|
|
Opcode::GeneratorNext => "GeneratorNext", |
|
|
|
Self::GeneratorNext => "GeneratorNext", |
|
|
|
Opcode::GeneratorNextDelegate => "GeneratorNextDelegate", |
|
|
|
Self::GeneratorNextDelegate => "GeneratorNextDelegate", |
|
|
|
Opcode::Nop => "Nop", |
|
|
|
Self::Nop => "Nop", |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// Name of the profiler event for this opcode
|
|
|
|
/// Name of the profiler event for this opcode
|
|
|
|
pub fn as_instruction_str(self) -> &'static str { |
|
|
|
pub fn as_instruction_str(self) -> &'static str { |
|
|
|
match self { |
|
|
|
match self { |
|
|
|
Opcode::Pop => "INST - Pop", |
|
|
|
Self::Pop => "INST - Pop", |
|
|
|
Opcode::Dup => "INST - Dup", |
|
|
|
Self::Dup => "INST - Dup", |
|
|
|
Opcode::Swap => "INST - Swap", |
|
|
|
Self::Swap => "INST - Swap", |
|
|
|
Opcode::PushZero => "INST - PushZero", |
|
|
|
Self::PushZero => "INST - PushZero", |
|
|
|
Opcode::PushOne => "INST - PushOne", |
|
|
|
Self::PushOne => "INST - PushOne", |
|
|
|
Opcode::PushInt8 => "INST - PushInt8", |
|
|
|
Self::PushInt8 => "INST - PushInt8", |
|
|
|
Opcode::PushInt16 => "INST - PushInt16", |
|
|
|
Self::PushInt16 => "INST - PushInt16", |
|
|
|
Opcode::PushInt32 => "INST - PushInt32", |
|
|
|
Self::PushInt32 => "INST - PushInt32", |
|
|
|
Opcode::PushRational => "INST - PushRational", |
|
|
|
Self::PushRational => "INST - PushRational", |
|
|
|
Opcode::PushNaN => "INST - PushNaN", |
|
|
|
Self::PushNaN => "INST - PushNaN", |
|
|
|
Opcode::PushPositiveInfinity => "INST - PushPositiveInfinity", |
|
|
|
Self::PushPositiveInfinity => "INST - PushPositiveInfinity", |
|
|
|
Opcode::PushNegativeInfinity => "INST - PushNegativeInfinity", |
|
|
|
Self::PushNegativeInfinity => "INST - PushNegativeInfinity", |
|
|
|
Opcode::PushNull => "INST - PushNull", |
|
|
|
Self::PushNull => "INST - PushNull", |
|
|
|
Opcode::PushTrue => "INST - PushTrue", |
|
|
|
Self::PushTrue => "INST - PushTrue", |
|
|
|
Opcode::PushFalse => "INST - PushFalse", |
|
|
|
Self::PushFalse => "INST - PushFalse", |
|
|
|
Opcode::PushUndefined => "INST - PushUndefined", |
|
|
|
Self::PushUndefined => "INST - PushUndefined", |
|
|
|
Opcode::PushLiteral => "INST - PushLiteral", |
|
|
|
Self::PushLiteral => "INST - PushLiteral", |
|
|
|
Opcode::PushEmptyObject => "INST - PushEmptyObject", |
|
|
|
Self::PushEmptyObject => "INST - PushEmptyObject", |
|
|
|
Opcode::PushNewArray => "INST - PushNewArray", |
|
|
|
Self::PushNewArray => "INST - PushNewArray", |
|
|
|
Opcode::PushValueToArray => "INST - PushValueToArray", |
|
|
|
Self::PushValueToArray => "INST - PushValueToArray", |
|
|
|
Opcode::PushElisionToArray => "INST - PushElisionToArray", |
|
|
|
Self::PushElisionToArray => "INST - PushElisionToArray", |
|
|
|
Opcode::PushIteratorToArray => "INST - PushIteratorToArray", |
|
|
|
Self::PushIteratorToArray => "INST - PushIteratorToArray", |
|
|
|
Opcode::Add => "INST - Add", |
|
|
|
Self::Add => "INST - Add", |
|
|
|
Opcode::Sub => "INST - Sub", |
|
|
|
Self::Sub => "INST - Sub", |
|
|
|
Opcode::Div => "INST - Div", |
|
|
|
Self::Div => "INST - Div", |
|
|
|
Opcode::Mul => "INST - Mul", |
|
|
|
Self::Mul => "INST - Mul", |
|
|
|
Opcode::Mod => "INST - Mod", |
|
|
|
Self::Mod => "INST - Mod", |
|
|
|
Opcode::Pow => "INST - Pow", |
|
|
|
Self::Pow => "INST - Pow", |
|
|
|
Opcode::ShiftRight => "INST - ShiftRight", |
|
|
|
Self::ShiftRight => "INST - ShiftRight", |
|
|
|
Opcode::ShiftLeft => "INST - ShiftLeft", |
|
|
|
Self::ShiftLeft => "INST - ShiftLeft", |
|
|
|
Opcode::UnsignedShiftRight => "INST - UnsignedShiftRight", |
|
|
|
Self::UnsignedShiftRight => "INST - UnsignedShiftRight", |
|
|
|
Opcode::BitOr => "INST - BitOr", |
|
|
|
Self::BitOr => "INST - BitOr", |
|
|
|
Opcode::BitAnd => "INST - BitAnd", |
|
|
|
Self::BitAnd => "INST - BitAnd", |
|
|
|
Opcode::BitXor => "INST - BitXor", |
|
|
|
Self::BitXor => "INST - BitXor", |
|
|
|
Opcode::BitNot => "INST - BitNot", |
|
|
|
Self::BitNot => "INST - BitNot", |
|
|
|
Opcode::In => "INST - In", |
|
|
|
Self::In => "INST - In", |
|
|
|
Opcode::Eq => "INST - Eq", |
|
|
|
Self::Eq => "INST - Eq", |
|
|
|
Opcode::StrictEq => "INST - StrictEq", |
|
|
|
Self::StrictEq => "INST - StrictEq", |
|
|
|
Opcode::NotEq => "INST - NotEq", |
|
|
|
Self::NotEq => "INST - NotEq", |
|
|
|
Opcode::StrictNotEq => "INST - StrictNotEq", |
|
|
|
Self::StrictNotEq => "INST - StrictNotEq", |
|
|
|
Opcode::GreaterThan => "INST - GreaterThan", |
|
|
|
Self::GreaterThan => "INST - GreaterThan", |
|
|
|
Opcode::GreaterThanOrEq => "INST - GreaterThanOrEq", |
|
|
|
Self::GreaterThanOrEq => "INST - GreaterThanOrEq", |
|
|
|
Opcode::LessThan => "INST - LessThan", |
|
|
|
Self::LessThan => "INST - LessThan", |
|
|
|
Opcode::LessThanOrEq => "INST - LessThanOrEq", |
|
|
|
Self::LessThanOrEq => "INST - LessThanOrEq", |
|
|
|
Opcode::InstanceOf => "INST - InstanceOf", |
|
|
|
Self::InstanceOf => "INST - InstanceOf", |
|
|
|
Opcode::TypeOf => "INST - TypeOf", |
|
|
|
Self::TypeOf => "INST - TypeOf", |
|
|
|
Opcode::Void => "INST - Void", |
|
|
|
Self::Void => "INST - Void", |
|
|
|
Opcode::LogicalNot => "INST - LogicalNot", |
|
|
|
Self::LogicalNot => "INST - LogicalNot", |
|
|
|
Opcode::LogicalAnd => "INST - LogicalAnd", |
|
|
|
Self::LogicalAnd => "INST - LogicalAnd", |
|
|
|
Opcode::LogicalOr => "INST - LogicalOr", |
|
|
|
Self::LogicalOr => "INST - LogicalOr", |
|
|
|
Opcode::Coalesce => "INST - Coalesce", |
|
|
|
Self::Coalesce => "INST - Coalesce", |
|
|
|
Opcode::Pos => "INST - Pos", |
|
|
|
Self::Pos => "INST - Pos", |
|
|
|
Opcode::Neg => "INST - Neg", |
|
|
|
Self::Neg => "INST - Neg", |
|
|
|
Opcode::Inc => "INST - Inc", |
|
|
|
Self::Inc => "INST - Inc", |
|
|
|
Opcode::IncPost => "INST - IncPost", |
|
|
|
Self::IncPost => "INST - IncPost", |
|
|
|
Opcode::Dec => "INST - Dec", |
|
|
|
Self::Dec => "INST - Dec", |
|
|
|
Opcode::DecPost => "INST - DecPost", |
|
|
|
Self::DecPost => "INST - DecPost", |
|
|
|
Opcode::DefInitArg => "INST - DefInitArg", |
|
|
|
Self::DefInitArg => "INST - DefInitArg", |
|
|
|
Opcode::DefVar => "INST - DefVar", |
|
|
|
Self::DefVar => "INST - DefVar", |
|
|
|
Opcode::DefInitVar => "INST - DefInitVar", |
|
|
|
Self::DefInitVar => "INST - DefInitVar", |
|
|
|
Opcode::DefLet => "INST - DefLet", |
|
|
|
Self::DefLet => "INST - DefLet", |
|
|
|
Opcode::DefInitLet => "INST - DefInitLet", |
|
|
|
Self::DefInitLet => "INST - DefInitLet", |
|
|
|
Opcode::DefInitConst => "INST - DefInitConst", |
|
|
|
Self::DefInitConst => "INST - DefInitConst", |
|
|
|
Opcode::GetName => "INST - GetName", |
|
|
|
Self::GetName => "INST - GetName", |
|
|
|
Opcode::GetNameOrUndefined => "INST - GetNameOrUndefined", |
|
|
|
Self::GetNameOrUndefined => "INST - GetNameOrUndefined", |
|
|
|
Opcode::SetName => "INST - SetName", |
|
|
|
Self::SetName => "INST - SetName", |
|
|
|
Opcode::GetPropertyByName => "INST - GetPropertyByName", |
|
|
|
Self::GetPropertyByName => "INST - GetPropertyByName", |
|
|
|
Opcode::GetPropertyByValue => "INST - GetPropertyByValue", |
|
|
|
Self::GetPropertyByValue => "INST - GetPropertyByValue", |
|
|
|
Opcode::SetPropertyByName => "INST - SetPropertyByName", |
|
|
|
Self::SetPropertyByName => "INST - SetPropertyByName", |
|
|
|
Opcode::DefineOwnPropertyByName => "INST - DefineOwnPropertyByName", |
|
|
|
Self::DefineOwnPropertyByName => "INST - DefineOwnPropertyByName", |
|
|
|
Opcode::SetPropertyByValue => "INST - SetPropertyByValue", |
|
|
|
Self::SetPropertyByValue => "INST - SetPropertyByValue", |
|
|
|
Opcode::DefineOwnPropertyByValue => "INST - DefineOwnPropertyByValue", |
|
|
|
Self::DefineOwnPropertyByValue => "INST - DefineOwnPropertyByValue", |
|
|
|
Opcode::SetPropertyGetterByName => "INST - SetPropertyGetterByName", |
|
|
|
Self::SetPropertyGetterByName => "INST - SetPropertyGetterByName", |
|
|
|
Opcode::SetPropertyGetterByValue => "INST - SetPropertyGetterByValue", |
|
|
|
Self::SetPropertyGetterByValue => "INST - SetPropertyGetterByValue", |
|
|
|
Opcode::SetPropertySetterByName => "INST - SetPropertySetterByName", |
|
|
|
Self::SetPropertySetterByName => "INST - SetPropertySetterByName", |
|
|
|
Opcode::SetPropertySetterByValue => "INST - SetPropertySetterByValue", |
|
|
|
Self::SetPropertySetterByValue => "INST - SetPropertySetterByValue", |
|
|
|
Opcode::DeletePropertyByName => "INST - DeletePropertyByName", |
|
|
|
Self::DeletePropertyByName => "INST - DeletePropertyByName", |
|
|
|
Opcode::DeletePropertyByValue => "INST - DeletePropertyByValue", |
|
|
|
Self::DeletePropertyByValue => "INST - DeletePropertyByValue", |
|
|
|
Opcode::CopyDataProperties => "INST - CopyDataProperties", |
|
|
|
Self::CopyDataProperties => "INST - CopyDataProperties", |
|
|
|
Opcode::Jump => "INST - Jump", |
|
|
|
Self::Jump => "INST - Jump", |
|
|
|
Opcode::JumpIfFalse => "INST - JumpIfFalse", |
|
|
|
Self::JumpIfFalse => "INST - JumpIfFalse", |
|
|
|
Opcode::JumpIfNotUndefined => "INST - JumpIfNotUndefined", |
|
|
|
Self::JumpIfNotUndefined => "INST - JumpIfNotUndefined", |
|
|
|
Opcode::Throw => "INST - Throw", |
|
|
|
Self::Throw => "INST - Throw", |
|
|
|
Opcode::TryStart => "INST - TryStart", |
|
|
|
Self::TryStart => "INST - TryStart", |
|
|
|
Opcode::TryEnd => "INST - TryEnd", |
|
|
|
Self::TryEnd => "INST - TryEnd", |
|
|
|
Opcode::CatchStart => "INST - CatchStart", |
|
|
|
Self::CatchStart => "INST - CatchStart", |
|
|
|
Opcode::CatchEnd => "INST - CatchEnd", |
|
|
|
Self::CatchEnd => "INST - CatchEnd", |
|
|
|
Opcode::CatchEnd2 => "INST - CatchEnd2", |
|
|
|
Self::CatchEnd2 => "INST - CatchEnd2", |
|
|
|
Opcode::FinallyStart => "INST - FinallyStart", |
|
|
|
Self::FinallyStart => "INST - FinallyStart", |
|
|
|
Opcode::FinallyEnd => "INST - FinallyEnd", |
|
|
|
Self::FinallyEnd => "INST - FinallyEnd", |
|
|
|
Opcode::FinallySetJump => "INST - FinallySetJump", |
|
|
|
Self::FinallySetJump => "INST - FinallySetJump", |
|
|
|
Opcode::ToBoolean => "INST - ToBoolean", |
|
|
|
Self::ToBoolean => "INST - ToBoolean", |
|
|
|
Opcode::This => "INST - This", |
|
|
|
Self::This => "INST - This", |
|
|
|
Opcode::Case => "INST - Case", |
|
|
|
Self::Case => "INST - Case", |
|
|
|
Opcode::Default => "INST - Default", |
|
|
|
Self::Default => "INST - Default", |
|
|
|
Opcode::GetFunction => "INST - GetFunction", |
|
|
|
Self::GetFunction => "INST - GetFunction", |
|
|
|
Opcode::GetGenerator => "INST - GetGenerator", |
|
|
|
Self::GetGenerator => "INST - GetGenerator", |
|
|
|
Opcode::CallEval => "INST - CallEval", |
|
|
|
Self::CallEval => "INST - CallEval", |
|
|
|
Opcode::CallEvalWithRest => "INST - CallEvalWithRest", |
|
|
|
Self::CallEvalWithRest => "INST - CallEvalWithRest", |
|
|
|
Opcode::Call => "INST - Call", |
|
|
|
Self::Call => "INST - Call", |
|
|
|
Opcode::CallWithRest => "INST - CallWithRest", |
|
|
|
Self::CallWithRest => "INST - CallWithRest", |
|
|
|
Opcode::New => "INST - New", |
|
|
|
Self::New => "INST - New", |
|
|
|
Opcode::NewWithRest => "INST - NewWithRest", |
|
|
|
Self::NewWithRest => "INST - NewWithRest", |
|
|
|
Opcode::Return => "INST - Return", |
|
|
|
Self::Return => "INST - Return", |
|
|
|
Opcode::PushDeclarativeEnvironment => "INST - PushDeclarativeEnvironment", |
|
|
|
Self::PushDeclarativeEnvironment => "INST - PushDeclarativeEnvironment", |
|
|
|
Opcode::PushFunctionEnvironment => "INST - PushFunctionEnvironment", |
|
|
|
Self::PushFunctionEnvironment => "INST - PushFunctionEnvironment", |
|
|
|
Opcode::PopEnvironment => "INST - PopEnvironment", |
|
|
|
Self::PopEnvironment => "INST - PopEnvironment", |
|
|
|
Opcode::LoopStart => "INST - LoopStart", |
|
|
|
Self::LoopStart => "INST - LoopStart", |
|
|
|
Opcode::LoopContinue => "INST - LoopContinue", |
|
|
|
Self::LoopContinue => "INST - LoopContinue", |
|
|
|
Opcode::LoopEnd => "INST - LoopEnd", |
|
|
|
Self::LoopEnd => "INST - LoopEnd", |
|
|
|
Opcode::ForInLoopInitIterator => "INST - ForInLoopInitIterator", |
|
|
|
Self::ForInLoopInitIterator => "INST - ForInLoopInitIterator", |
|
|
|
Opcode::InitIterator => "INST - InitIterator", |
|
|
|
Self::InitIterator => "INST - InitIterator", |
|
|
|
Opcode::IteratorNext => "INST - IteratorNext", |
|
|
|
Self::IteratorNext => "INST - IteratorNext", |
|
|
|
Opcode::IteratorNextFull => "INST - IteratorNextFull", |
|
|
|
Self::IteratorNextFull => "INST - IteratorNextFull", |
|
|
|
Opcode::IteratorClose => "INST - IteratorClose", |
|
|
|
Self::IteratorClose => "INST - IteratorClose", |
|
|
|
Opcode::IteratorToArray => "INST - IteratorToArray", |
|
|
|
Self::IteratorToArray => "INST - IteratorToArray", |
|
|
|
Opcode::ForInLoopNext => "INST - ForInLoopNext", |
|
|
|
Self::ForInLoopNext => "INST - ForInLoopNext", |
|
|
|
Opcode::ConcatToString => "INST - ConcatToString", |
|
|
|
Self::ConcatToString => "INST - ConcatToString", |
|
|
|
Opcode::RequireObjectCoercible => "INST - RequireObjectCoercible", |
|
|
|
Self::RequireObjectCoercible => "INST - RequireObjectCoercible", |
|
|
|
Opcode::ValueNotNullOrUndefined => "INST - ValueNotNullOrUndefined", |
|
|
|
Self::ValueNotNullOrUndefined => "INST - ValueNotNullOrUndefined", |
|
|
|
Opcode::RestParameterInit => "INST - FunctionRestParameter", |
|
|
|
Self::RestParameterInit => "INST - FunctionRestParameter", |
|
|
|
Opcode::RestParameterPop => "INST - RestParameterPop", |
|
|
|
Self::RestParameterPop => "INST - RestParameterPop", |
|
|
|
Opcode::PopOnReturnAdd => "INST - PopOnReturnAdd", |
|
|
|
Self::PopOnReturnAdd => "INST - PopOnReturnAdd", |
|
|
|
Opcode::PopOnReturnSub => "INST - PopOnReturnSub", |
|
|
|
Self::PopOnReturnSub => "INST - PopOnReturnSub", |
|
|
|
Opcode::Yield => "INST - Yield", |
|
|
|
Self::Yield => "INST - Yield", |
|
|
|
Opcode::GeneratorNext => "INST - GeneratorNext", |
|
|
|
Self::GeneratorNext => "INST - GeneratorNext", |
|
|
|
Opcode::GeneratorNextDelegate => "INST - GeneratorNextDelegate", |
|
|
|
Self::GeneratorNextDelegate => "INST - GeneratorNextDelegate", |
|
|
|
Opcode::Nop => "INST - Nop", |
|
|
|
Self::Nop => "INST - Nop", |
|
|
|
Opcode::PushClassPrototype => "INST - PushClassPrototype", |
|
|
|
Self::PushClassPrototype => "INST - PushClassPrototype", |
|
|
|
Opcode::DefineClassMethodByName => "INST - DefineClassMethodByName", |
|
|
|
Self::DefineClassMethodByName => "INST - DefineClassMethodByName", |
|
|
|
Opcode::DefineClassMethodByValue => "INST - DefineClassMethodByValue", |
|
|
|
Self::DefineClassMethodByValue => "INST - DefineClassMethodByValue", |
|
|
|
Opcode::DefineClassGetterByName => "INST - DefineClassGetterByName", |
|
|
|
Self::DefineClassGetterByName => "INST - DefineClassGetterByName", |
|
|
|
Opcode::DefineClassGetterByValue => "INST - DefineClassGetterByValue", |
|
|
|
Self::DefineClassGetterByValue => "INST - DefineClassGetterByValue", |
|
|
|
Opcode::DefineClassSetterByName => "INST - DefineClassSetterByName", |
|
|
|
Self::DefineClassSetterByName => "INST - DefineClassSetterByName", |
|
|
|
Opcode::DefineClassSetterByValue => "INST - DefineClassSetterByValue", |
|
|
|
Self::DefineClassSetterByValue => "INST - DefineClassSetterByValue", |
|
|
|
Opcode::SetPrivateValue => "INST - SetPrivateValue", |
|
|
|
Self::SetPrivateValue => "INST - SetPrivateValue", |
|
|
|
Opcode::SetPrivateSetter => "INST - SetPrivateSetter", |
|
|
|
Self::SetPrivateSetter => "INST - SetPrivateSetter", |
|
|
|
Opcode::SetPrivateGetter => "INST - SetPrivateGetter", |
|
|
|
Self::SetPrivateGetter => "INST - SetPrivateGetter", |
|
|
|
Opcode::GetPrivateField => "INST - GetPrivateField", |
|
|
|
Self::GetPrivateField => "INST - GetPrivateField", |
|
|
|
Opcode::PushClassComputedFieldName => "INST - PushClassComputedFieldName", |
|
|
|
Self::PushClassComputedFieldName => "INST - PushClassComputedFieldName", |
|
|
|
Opcode::ToPropertyKey => "INST - ToPropertyKey", |
|
|
|
Self::ToPropertyKey => "INST - ToPropertyKey", |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|