• Home
  • Raw
  • Download

Lines Matching defs:decoder

385   void unsupported(FullDecoder* decoder, LiftoffBailoutReason reason,  in unsupported()
396 bool DidAssemblerBailout(FullDecoder* decoder) { in DidAssemblerBailout()
420 bool CheckSupportedType(FullDecoder* decoder, in CheckSupportedType()
443 void UnuseLabels(FullDecoder* decoder) { in UnuseLabels()
461 void StartFunction(FullDecoder* decoder) { in StartFunction()
525 bool SpillLocalsInitially(FullDecoder* decoder, uint32_t num_params) { in SpillLocalsInitially()
543 void TierUpFunction(FullDecoder* decoder) { in TierUpFunction()
548 void TraceFunctionEntry(FullDecoder* decoder) { in TraceFunctionEntry()
557 void StartFunctionBody(FullDecoder* decoder, Control* block) { in StartFunctionBody()
757 void FinishFunction(FullDecoder* decoder) { in FinishFunction()
771 void OnFirstError(FullDecoder* decoder) { in OnFirstError()
777 V8_NOINLINE void EmitDebuggingInfo(FullDecoder* decoder, WasmOpcode opcode) { in EmitDebuggingInfo()
830 void NextInstruction(FullDecoder* decoder, WasmOpcode opcode) { in NextInstruction()
845 void EmitBreakpoint(FullDecoder* decoder) { in EmitBreakpoint()
856 void Block(FullDecoder* decoder, Control* block) {} in Block()
858 void Loop(FullDecoder* decoder, Control* loop) { in Loop()
878 void Try(FullDecoder* decoder, Control* block) { in Try()
882 void Catch(FullDecoder* decoder, Control* block, Value* exception) { in Catch()
886 void If(FullDecoder* decoder, const Value& cond, Control* if_block) { in If()
902 void FallThruTo(FullDecoder* decoder, Control* c) { in FallThruTo()
911 void FinishOneArmedIf(FullDecoder* decoder, Control* c) { in FinishOneArmedIf()
944 void PopControl(FullDecoder* decoder, Control* c) { in PopControl()
963 void EndControl(FullDecoder* decoder, Control* c) {} in EndControl()
1096 void UnOp(FullDecoder* decoder, WasmOpcode opcode, const Value& value, in UnOp()
1304 void EmitI32CmpOp(FullDecoder* decoder) { in EmitI32CmpOp()
1315 void BinOp(FullDecoder* decoder, WasmOpcode opcode, const Value& lhs, in BinOp()
1599 void I32Const(FullDecoder* decoder, Value* result, int32_t value) { in I32Const()
1603 void I64Const(FullDecoder* decoder, Value* result, int64_t value) { in I64Const()
1618 void F32Const(FullDecoder* decoder, Value* result, float value) { in F32Const()
1624 void F64Const(FullDecoder* decoder, Value* result, double value) { in F64Const()
1630 void RefNull(FullDecoder* decoder, ValueType type, Value*) { in RefNull()
1646 void RefFunc(FullDecoder* decoder, uint32_t function_index, Value* result) { in RefFunc()
1650 void RefAsNonNull(FullDecoder* decoder, const Value& arg, Value* result) { in RefAsNonNull()
1654 void Drop(FullDecoder* decoder, const Value& value) { in Drop()
1661 void TraceFunctionExit(FullDecoder* decoder) { in TraceFunctionExit()
1697 void ReturnImpl(FullDecoder* decoder) { in ReturnImpl()
1707 void DoReturn(FullDecoder* decoder, Vector<Value> /*values*/) { in DoReturn()
1711 void LocalGet(FullDecoder* decoder, Value* result, in LocalGet()
1775 void LocalSet(FullDecoder* decoder, const Value& value, in LocalSet()
1780 void LocalTee(FullDecoder* decoder, const Value& value, Value* result, in LocalTee()
1785 void AllocateLocals(FullDecoder* decoder, Vector<Value> local_values) { in AllocateLocals()
1790 void DeallocateLocals(FullDecoder* decoder, uint32_t count) { in DeallocateLocals()
1810 void GlobalGet(FullDecoder* decoder, Value* result, in GlobalGet()
1849 void GlobalSet(FullDecoder* decoder, const Value& value, in GlobalSet()
1885 void TableGet(FullDecoder* decoder, const Value& index, Value* result, in TableGet()
1890 void TableSet(FullDecoder* decoder, const Value& index, const Value& value, in TableSet()
1895 void Unreachable(FullDecoder* decoder) { in Unreachable()
1902 void Select(FullDecoder* decoder, const Value& cond, const Value& fval, in Select()
1937 void Br(FullDecoder* decoder, Control* target) { BrImpl(target); } in Br()
1939 void BrOrRet(FullDecoder* decoder, uint32_t depth) { in BrOrRet()
1947 void BrIf(FullDecoder* decoder, const Value& /* cond */, uint32_t depth) { in BrIf()
1981 void GenerateBrCase(FullDecoder* decoder, uint32_t br_depth, in GenerateBrCase()
1994 void GenerateBrTable(FullDecoder* decoder, LiftoffRegister tmp, in GenerateBrTable()
2022 void BrTable(FullDecoder* decoder, const BranchTableImmediate<validate>& imm, in BrTable()
2049 void Else(FullDecoder* decoder, Control* c) { in Else()
2093 bool BoundsCheckMem(FullDecoder* decoder, uint32_t access_size, in BoundsCheckMem()
2151 void AlignmentCheckMem(FullDecoder* decoder, uint32_t access_size, in AlignmentCheckMem()
2252 void LoadMem(FullDecoder* decoder, LoadType type, in LoadMem()
2286 void LoadTransform(FullDecoder* decoder, LoadType type, in LoadTransform()
2336 void LoadLane(FullDecoder* decoder, LoadType type, const Value& value, in LoadLane()
2342 void StoreMem(FullDecoder* decoder, StoreType type, in StoreMem()
2376 void StoreLane(FullDecoder* decoder, StoreType type, in StoreLane()
2382 void CurrentMemoryPages(FullDecoder* decoder, Value* result) { in CurrentMemoryPages()
2389 void MemoryGrow(FullDecoder* decoder, const Value& value, Value* result_val) { in MemoryGrow()
2431 void CallDirect(FullDecoder* decoder, in CallDirect()
2437 void CallIndirect(FullDecoder* decoder, const Value& index_val, in CallIndirect()
2443 void CallRef(FullDecoder* decoder, const Value& func_ref, in CallRef()
2449 void ReturnCall(FullDecoder* decoder, in ReturnCall()
2455 void ReturnCallIndirect(FullDecoder* decoder, const Value& index_val, in ReturnCallIndirect()
2461 void ReturnCallRef(FullDecoder* decoder, const Value& func_ref, in ReturnCallRef()
2467 void BrOnNull(FullDecoder* decoder, const Value& ref_object, uint32_t depth) { in BrOnNull()
2531 void SimdOp(FullDecoder* decoder, WasmOpcode opcode, Vector<Value> args, in SimdOp()
2969 void SimdLaneOp(FullDecoder* decoder, WasmOpcode opcode, in SimdLaneOp()
3014 void S128Const(FullDecoder* decoder, const Simd128Immediate<validate>& imm, in S128Const()
3036 void Simd8x16ShuffleOp(FullDecoder* decoder, in Simd8x16ShuffleOp()
3061 void Throw(FullDecoder* decoder, const ExceptionIndexImmediate<validate>&, in Throw()
3065 void Rethrow(FullDecoder* decoder, const Value& exception) { in Rethrow()
3068 void BrOnException(FullDecoder* decoder, const Value& exception, in BrOnException()
3074 void AtomicStoreMem(FullDecoder* decoder, StoreType type, in AtomicStoreMem()
3098 void AtomicLoadMem(FullDecoder* decoder, LoadType type, in AtomicLoadMem()
3124 void AtomicBinop(FullDecoder* decoder, StoreType type, in AtomicBinop()
3165 void AtomicCompareExchange(FullDecoder* decoder, StoreType type, in AtomicCompareExchange()
3238 void AtomicWait(FullDecoder* decoder, ValueType type, in AtomicWait()
3315 void AtomicNotify(FullDecoder* decoder, in AtomicNotify()
3430 void AtomicOp(FullDecoder* decoder, WasmOpcode opcode, Vector<Value> args, in AtomicOp()
3484 void AtomicFence(FullDecoder* decoder) { __ AtomicFence(); } in AtomicFence()
3486 void MemoryInit(FullDecoder* decoder, in MemoryInit()
3516 void DataDrop(FullDecoder* decoder, const DataDropImmediate<validate>& imm) { in DataDrop()
3536 void MemoryCopy(FullDecoder* decoder, in MemoryCopy()
3559 void MemoryFill(FullDecoder* decoder, in MemoryFill()
3582 void TableInit(FullDecoder* decoder, const TableInitImmediate<validate>& imm, in TableInit()
3632 void ElemDrop(FullDecoder* decoder, const ElemDropImmediate<validate>& imm) { in ElemDrop()
3650 void TableCopy(FullDecoder* decoder, const TableCopyImmediate<validate>& imm, in TableCopy()
3702 void TableGrow(FullDecoder* decoder, const TableIndexImmediate<validate>& imm, in TableGrow()
3707 void TableSize(FullDecoder* decoder, const TableIndexImmediate<validate>& imm, in TableSize()
3712 void TableFill(FullDecoder* decoder, const TableIndexImmediate<validate>& imm, in TableFill()
3717 void StructNewWithRtt(FullDecoder* decoder, in StructNewWithRtt()
3723 void StructNewDefault(FullDecoder* decoder, in StructNewDefault()
3729 void StructGet(FullDecoder* decoder, const Value& struct_obj, in StructGet()
3735 void StructSet(FullDecoder* decoder, const Value& struct_obj, in StructSet()
3742 void ArrayNewWithRtt(FullDecoder* decoder, in ArrayNewWithRtt()
3749 void ArrayNewDefault(FullDecoder* decoder, in ArrayNewDefault()
3755 void ArrayGet(FullDecoder* decoder, const Value& array_obj, in ArrayGet()
3761 void ArraySet(FullDecoder* decoder, const Value& array_obj, in ArraySet()
3767 void ArrayLen(FullDecoder* decoder, const Value& array_obj, Value* result) { in ArrayLen()
3772 void I31New(FullDecoder* decoder, const Value& input, Value* result) { in I31New()
3776 void I31GetS(FullDecoder* decoder, const Value& input, Value* result) { in I31GetS()
3780 void I31GetU(FullDecoder* decoder, const Value& input, Value* result) { in I31GetU()
3785 void RttCanon(FullDecoder* decoder, const HeapTypeImmediate<validate>& imm, in RttCanon()
3790 void RttSub(FullDecoder* decoder, const HeapTypeImmediate<validate>& imm, in RttSub()
3796 void RefTest(FullDecoder* decoder, const Value& obj, const Value& rtt, in RefTest()
3801 void RefCast(FullDecoder* decoder, const Value& obj, const Value& rtt, in RefCast()
3806 void BrOnCast(FullDecoder* decoder, const Value& obj, const Value& rtt, in BrOnCast()
3812 void PassThrough(FullDecoder* decoder, const Value& from, Value* to) { in PassThrough()
3818 void CallDirect(FullDecoder* decoder, in CallDirect()
3897 void CallIndirect(FullDecoder* decoder, const Value& index_val, in CallIndirect()
4134 WasmFullDecoder<Decoder::kBooleanValidation, LiftoffCompiler> decoder( in ExecuteLiftoffCompilation() local
4187 WasmFullDecoder<Decoder::kBooleanValidation, LiftoffCompiler> decoder( in GenerateLiftoffDebugSideTable() local