Lines Matching refs:Output
113 void BytecodeArrayBuilder::Output(Bytecode bytecode, uint32_t operand0, in Output() function in v8::internal::interpreter::BytecodeArrayBuilder
122 void BytecodeArrayBuilder::Output(Bytecode bytecode, uint32_t operand0, in Output() function in v8::internal::interpreter::BytecodeArrayBuilder
130 void BytecodeArrayBuilder::Output(Bytecode bytecode, uint32_t operand0, in Output() function in v8::internal::interpreter::BytecodeArrayBuilder
138 void BytecodeArrayBuilder::Output(Bytecode bytecode, uint32_t operand0) { in Output() function in v8::internal::interpreter::BytecodeArrayBuilder
145 void BytecodeArrayBuilder::Output(Bytecode bytecode) { in Output() function in v8::internal::interpreter::BytecodeArrayBuilder
154 Output(BytecodeForBinaryOperation(op), RegisterOperand(reg)); in BinaryOperation()
159 Output(BytecodeForCountOperation(op)); in CountOperation()
164 Output(Bytecode::kToBooleanLogicalNot); in LogicalNot()
170 Output(Bytecode::kTypeOf); in TypeOf()
176 Output(BytecodeForCompareOperation(op), RegisterOperand(reg)); in CompareOperation()
184 Output(Bytecode::kLdaZero); in LoadLiteral()
186 Output(Bytecode::kLdaSmi, SignedOperand(raw_smi)); in LoadLiteral()
193 Output(Bytecode::kLdaConstant, UnsignedOperand(entry)); in LoadLiteral()
198 Output(Bytecode::kLdaUndefined); in LoadUndefined()
203 Output(Bytecode::kLdaNull); in LoadNull()
208 Output(Bytecode::kLdaTheHole); in LoadTheHole()
213 Output(Bytecode::kLdaTrue); in LoadTrue()
218 Output(Bytecode::kLdaFalse); in LoadFalse()
224 Output(Bytecode::kLdar, RegisterOperand(reg)); in LoadAccumulatorWithRegister()
230 Output(Bytecode::kStar, RegisterOperand(reg)); in StoreAccumulatorInRegister()
237 Output(Bytecode::kMov, RegisterOperand(from), RegisterOperand(to)); in MoveRegister()
246 Output(bytecode, UnsignedOperand(feedback_slot)); in LoadGlobal()
254 Output(bytecode, UnsignedOperand(name_index), UnsignedOperand(feedback_slot)); in StoreGlobal()
260 Output(Bytecode::kLdaContextSlot, RegisterOperand(context), in LoadContextSlot()
267 Output(Bytecode::kStaContextSlot, RegisterOperand(context), in StoreContextSlot()
278 Output(bytecode, UnsignedOperand(name_index)); in LoadLookupSlot()
286 Output(bytecode, UnsignedOperand(name_index)); in StoreLookupSlot()
293 Output(Bytecode::kLdaNamedProperty, RegisterOperand(object), in LoadNamedProperty()
300 Output(Bytecode::kLdaKeyedProperty, RegisterOperand(object), in LoadKeyedProperty()
310 Output(bytecode, RegisterOperand(object), UnsignedOperand(name_index), in StoreNamedProperty()
319 Output(bytecode, RegisterOperand(object), RegisterOperand(key), in StoreKeyedProperty()
327 Output(Bytecode::kCreateClosure, UnsignedOperand(entry), in CreateClosure()
338 Output(bytecode); in CreateArguments()
345 Output(Bytecode::kCreateRegExpLiteral, UnsignedOperand(pattern_entry), in CreateRegExpLiteral()
353 Output(Bytecode::kCreateArrayLiteral, in CreateArrayLiteral()
362 Output(Bytecode::kCreateObjectLiteral, in CreateObjectLiteral()
369 Output(Bytecode::kPushContext, RegisterOperand(context)); in PushContext()
374 Output(Bytecode::kPopContext, RegisterOperand(context)); in PopContext()
379 Output(Bytecode::kToObject); in CastAccumulatorToJSObject()
384 Output(Bytecode::kToName); in CastAccumulatorToName()
389 Output(Bytecode::kToNumber); in CastAccumulatorToNumber()
459 Output(Bytecode::kStackCheck); in StackCheck()
464 Output(Bytecode::kThrow); in Throw()
469 Output(Bytecode::kReThrow); in ReThrow()
475 Output(Bytecode::kReturn); in Return()
481 Output(Bytecode::kDebugger); in Debugger()
487 Output(Bytecode::kForInPrepare, RegisterOperand(cache_info_triple)); in ForInPrepare()
493 Output(Bytecode::kForInDone, RegisterOperand(index), in ForInDone()
501 Output(Bytecode::kForInNext, RegisterOperand(receiver), in ForInNext()
508 Output(Bytecode::kForInStep, RegisterOperand(index)); in ForInStep()
514 Output(Bytecode::kSuspendGenerator, RegisterOperand(generator)); in SuspendGenerator()
520 Output(Bytecode::kResumeGenerator, RegisterOperand(generator)); in ResumeGenerator()
563 Output(bytecode, RegisterOperand(callable), RegisterOperand(receiver_args), in Call()
575 Output(Bytecode::kNew, RegisterOperand(constructor), in New()
597 Output(bytecode, id, RegisterOperand(first_arg), UnsignedOperand(arg_count)); in CallRuntime()
610 Output(Bytecode::kCallRuntimeForPair, static_cast<uint16_t>(function_id), in CallRuntimeForPair()
618 Output(Bytecode::kCallJSRuntime, UnsignedOperand(context_index), in CallJSRuntime()
625 Output(BytecodeForDelete(language_mode), RegisterOperand(object)); in Delete()