• Home
  • Raw
  • Download

Lines Matching refs:LCodeGen

22   SafepointGenerator(LCodeGen* codegen,  in SafepointGenerator()
37 LCodeGen* codegen_;
52 BranchOnCondition(LCodeGen* codegen, Condition cond) in BranchOnCondition()
78 CompareAndBranch(LCodeGen* codegen, in CompareAndBranch()
108 TestAndBranch(LCodeGen* codegen, in TestAndBranch()
156 BranchIfNonZeroNumber(LCodeGen* codegen, const FPRegister& value, in BranchIfNonZeroNumber()
183 BranchIfHeapNumber(LCodeGen* codegen, const Register& value) in BranchIfHeapNumber()
202 BranchIfRoot(LCodeGen* codegen, const Register& value, in BranchIfRoot()
220 void LCodeGen::WriteTranslation(LEnvironment* environment, in WriteTranslation()
241 void LCodeGen::AddToTranslation(LEnvironment* environment, in AddToTranslation()
311 void LCodeGen::RegisterEnvironmentForDeoptimization(LEnvironment* environment, in RegisterEnvironmentForDeoptimization()
335 void LCodeGen::CallCode(Handle<Code> code, in CallCode()
342 void LCodeGen::CallCodeGeneric(Handle<Code> code, in CallCodeGeneric()
361 void LCodeGen::DoCallNewArray(LCallNewArray* instr) { in DoCallNewArray()
409 void LCodeGen::CallRuntime(const Runtime::Function* function, in CallRuntime()
421 void LCodeGen::LoadContextFromDeferred(LOperand* context) { in LoadContextFromDeferred()
437 void LCodeGen::CallRuntimeFromDeferred(Runtime::FunctionId id, in CallRuntimeFromDeferred()
448 void LCodeGen::RecordAndWritePosition(int position) { in RecordAndWritePosition()
454 void LCodeGen::RecordSafepointWithLazyDeopt(LInstruction* instr, in RecordSafepointWithLazyDeopt()
466 void LCodeGen::RecordSafepoint(LPointerMap* pointers, in RecordSafepoint()
486 void LCodeGen::RecordSafepoint(LPointerMap* pointers, in RecordSafepoint()
492 void LCodeGen::RecordSafepoint(Safepoint::DeoptMode deopt_mode) { in RecordSafepoint()
498 void LCodeGen::RecordSafepointWithRegisters(LPointerMap* pointers, in RecordSafepointWithRegisters()
505 bool LCodeGen::GenerateCode() { in GenerateCode()
520 void LCodeGen::SaveCallerDoubles() { in SaveCallerDoubles()
538 void LCodeGen::RestoreCallerDoubles() { in RestoreCallerDoubles()
556 bool LCodeGen::GeneratePrologue() { in GeneratePrologue()
588 void LCodeGen::DoPrologue(LPrologue* instr) { in DoPrologue()
653 void LCodeGen::GenerateOsrPrologue() { in GenerateOsrPrologue()
668 void LCodeGen::GenerateBodyInstructionPre(LInstruction* instr) { in GenerateBodyInstructionPre()
678 bool LCodeGen::GenerateDeferredCode() { in GenerateDeferredCode()
733 bool LCodeGen::GenerateJumpTable() { in GenerateJumpTable()
813 bool LCodeGen::GenerateSafepointTable() { in GenerateSafepointTable()
823 void LCodeGen::FinishCode(Handle<Code> code) { in FinishCode()
831 void LCodeGen::DeoptimizeBranch( in DeoptimizeBranch()
907 void LCodeGen::Deoptimize(LInstruction* instr, in Deoptimize()
915 void LCodeGen::DeoptimizeIf(Condition cond, LInstruction* instr, in DeoptimizeIf()
921 void LCodeGen::DeoptimizeIfZero(Register rt, LInstruction* instr, in DeoptimizeIfZero()
927 void LCodeGen::DeoptimizeIfNotZero(Register rt, LInstruction* instr, in DeoptimizeIfNotZero()
933 void LCodeGen::DeoptimizeIfNegative(Register rt, LInstruction* instr, in DeoptimizeIfNegative()
940 void LCodeGen::DeoptimizeIfSmi(Register rt, LInstruction* instr, in DeoptimizeIfSmi()
946 void LCodeGen::DeoptimizeIfNotSmi(Register rt, LInstruction* instr, in DeoptimizeIfNotSmi()
952 void LCodeGen::DeoptimizeIfRoot(Register rt, Heap::RootListIndex index, in DeoptimizeIfRoot()
960 void LCodeGen::DeoptimizeIfNotRoot(Register rt, Heap::RootListIndex index, in DeoptimizeIfNotRoot()
968 void LCodeGen::DeoptimizeIfMinusZero(DoubleRegister input, LInstruction* instr, in DeoptimizeIfMinusZero()
975 void LCodeGen::DeoptimizeIfNotHeapNumber(Register object, LInstruction* instr) { in DeoptimizeIfNotHeapNumber()
981 void LCodeGen::DeoptimizeIfBitSet(Register rt, int bit, LInstruction* instr, in DeoptimizeIfBitSet()
987 void LCodeGen::DeoptimizeIfBitClear(Register rt, int bit, LInstruction* instr, in DeoptimizeIfBitClear()
993 void LCodeGen::EnsureSpaceForLazyDeopt(int space_needed) { in EnsureSpaceForLazyDeopt()
1015 Register LCodeGen::ToRegister(LOperand* op) const { in ToRegister()
1022 Register LCodeGen::ToRegister32(LOperand* op) const { in ToRegister32()
1034 Smi* LCodeGen::ToSmi(LConstantOperand* op) const { in ToSmi()
1040 DoubleRegister LCodeGen::ToDoubleRegister(LOperand* op) const { in ToDoubleRegister()
1046 Operand LCodeGen::ToOperand(LOperand* op) { in ToOperand()
1075 Operand LCodeGen::ToOperand32(LOperand* op) { in ToOperand32()
1102 MemOperand LCodeGen::ToMemOperand(LOperand* op, StackMode stack_mode) const { in ToMemOperand()
1142 Handle<Object> LCodeGen::ToHandle(LConstantOperand* op) const { in ToHandle()
1150 Operand LCodeGen::ToShiftedRightOperand32(LOperand* right, LI* shift_info) { in ToShiftedRightOperand32()
1162 bool LCodeGen::IsSmi(LConstantOperand* op) const { in IsSmi()
1167 bool LCodeGen::IsInteger32Constant(LConstantOperand* op) const { in IsInteger32Constant()
1172 int32_t LCodeGen::ToInteger32(LConstantOperand* op) const { in ToInteger32()
1178 double LCodeGen::ToDouble(LConstantOperand* op) const { in ToDouble()
1185 Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { in TokenToCondition()
1218 void LCodeGen::EmitBranchGeneric(InstrType instr, in EmitBranchGeneric()
1239 void LCodeGen::EmitBranch(InstrType instr, Condition condition) { in EmitBranch()
1247 void LCodeGen::EmitCompareAndBranch(InstrType instr, in EmitCompareAndBranch()
1258 void LCodeGen::EmitTestAndBranch(InstrType instr, in EmitTestAndBranch()
1269 void LCodeGen::EmitBranchIfNonZeroNumber(InstrType instr, in EmitBranchIfNonZeroNumber()
1278 void LCodeGen::EmitBranchIfHeapNumber(InstrType instr, in EmitBranchIfHeapNumber()
1286 void LCodeGen::EmitBranchIfRoot(InstrType instr, in EmitBranchIfRoot()
1294 void LCodeGen::DoGap(LGap* gap) { in DoGap()
1307 void LCodeGen::DoAccessArgumentsAt(LAccessArgumentsAt* instr) { in DoAccessArgumentsAt()
1342 void LCodeGen::DoAddE(LAddE* instr) { in DoAddE()
1359 void LCodeGen::DoAddI(LAddI* instr) { in DoAddI()
1374 void LCodeGen::DoAddS(LAddS* instr) { in DoAddS()
1388 void LCodeGen::DoAllocate(LAllocate* instr) { in DoAllocate()
1391 DeferredAllocate(LCodeGen* codegen, LAllocate* instr) in DoAllocate()
1454 void LCodeGen::DoDeferredAllocate(LAllocate* instr) { in DoDeferredAllocate()
1502 void LCodeGen::DoFastAllocate(LFastAllocate* instr) { in DoFastAllocate()
1528 void LCodeGen::DoApplyArguments(LApplyArguments* instr) { in DoApplyArguments()
1590 void LCodeGen::DoArgumentsElements(LArgumentsElements* instr) { in DoArgumentsElements()
1620 void LCodeGen::DoArgumentsLength(LArgumentsLength* instr) { in DoArgumentsLength()
1641 void LCodeGen::DoArithmeticD(LArithmeticD* instr) { in DoArithmeticD()
1676 void LCodeGen::DoArithmeticT(LArithmeticT* instr) { in DoArithmeticT()
1687 void LCodeGen::DoBitI(LBitI* instr) { in DoBitI()
1703 void LCodeGen::DoBitS(LBitS* instr) { in DoBitS()
1719 void LCodeGen::DoBoundsCheck(LBoundsCheck *instr) { in DoBoundsCheck()
1741 void LCodeGen::DoBranch(LBranch* instr) { in DoBranch()
1889 void LCodeGen::CallKnownFunction(Handle<JSFunction> function, in CallKnownFunction()
1951 void LCodeGen::DoCallWithDescriptor(LCallWithDescriptor* instr) { in DoCallWithDescriptor()
1997 void LCodeGen::DoCallRuntime(LCallRuntime* instr) { in DoCallRuntime()
2003 void LCodeGen::DoUnknownOSRValue(LUnknownOSRValue* instr) { in DoUnknownOSRValue()
2008 void LCodeGen::DoDeferredInstanceMigration(LCheckMaps* instr, Register object) { in DoDeferredInstanceMigration()
2023 void LCodeGen::DoCheckMaps(LCheckMaps* instr) { in DoCheckMaps()
2026 DeferredCheckMaps(LCodeGen* codegen, LCheckMaps* instr, Register object) in DoCheckMaps()
2081 void LCodeGen::DoCheckNonSmi(LCheckNonSmi* instr) { in DoCheckNonSmi()
2088 void LCodeGen::DoCheckSmi(LCheckSmi* instr) { in DoCheckSmi()
2095 void LCodeGen::DoCheckArrayBufferNotNeutered( in DoCheckArrayBufferNotNeutered()
2108 void LCodeGen::DoCheckInstanceType(LCheckInstanceType* instr) { in DoCheckInstanceType()
2159 void LCodeGen::DoClampDToUint8(LClampDToUint8* instr) { in DoClampDToUint8()
2166 void LCodeGen::DoClampIToUint8(LClampIToUint8* instr) { in DoClampIToUint8()
2173 void LCodeGen::DoClampTToUint8(LClampTToUint8* instr) { in DoClampTToUint8()
2208 void LCodeGen::DoDoubleBits(LDoubleBits* instr) { in DoDoubleBits()
2220 void LCodeGen::DoClassOfTestAndBranch(LClassOfTestAndBranch* instr) { in DoClassOfTestAndBranch()
2270 void LCodeGen::DoCmpHoleAndBranchD(LCmpHoleAndBranchD* instr) { in DoCmpHoleAndBranchD()
2286 void LCodeGen::DoCmpHoleAndBranchT(LCmpHoleAndBranchT* instr) { in DoCmpHoleAndBranchT()
2294 void LCodeGen::DoCmpMapAndBranch(LCmpMapAndBranch* instr) { in DoCmpMapAndBranch()
2303 void LCodeGen::DoCompareNumericAndBranch(LCompareNumericAndBranch* instr) { in DoCompareNumericAndBranch()
2364 void LCodeGen::DoCmpObjectEqAndBranch(LCmpObjectEqAndBranch* instr) { in DoCmpObjectEqAndBranch()
2371 void LCodeGen::DoCmpT(LCmpT* instr) { in DoCmpT()
2392 void LCodeGen::DoConstantD(LConstantD* instr) { in DoConstantD()
2407 void LCodeGen::DoConstantE(LConstantE* instr) { in DoConstantE()
2412 void LCodeGen::DoConstantI(LConstantI* instr) { in DoConstantI()
2420 void LCodeGen::DoConstantS(LConstantS* instr) { in DoConstantS()
2425 void LCodeGen::DoConstantT(LConstantT* instr) { in DoConstantT()
2432 void LCodeGen::DoContext(LContext* instr) { in DoContext()
2444 void LCodeGen::DoCheckValue(LCheckValue* instr) { in DoCheckValue()
2462 void LCodeGen::DoLazyBailout(LLazyBailout* instr) { in DoLazyBailout()
2471 void LCodeGen::DoDeoptimize(LDeoptimize* instr) { in DoDeoptimize()
2485 void LCodeGen::DoDivByPowerOf2I(LDivByPowerOf2I* instr) { in DoDivByPowerOf2I()
2530 void LCodeGen::DoDivByConstI(LDivByConstI* instr) { in DoDivByConstI()
2562 void LCodeGen::DoDivI(LDivI* instr) { in DoDivI()
2613 void LCodeGen::DoDoubleToIntOrSmi(LDoubleToIntOrSmi* instr) { in DoDoubleToIntOrSmi()
2630 void LCodeGen::DoDrop(LDrop* instr) { in DoDrop()
2637 void LCodeGen::DoDummy(LDummy* instr) { in DoDummy()
2642 void LCodeGen::DoDummyUse(LDummyUse* instr) { in DoDummyUse()
2647 void LCodeGen::DoForInCacheArray(LForInCacheArray* instr) { in DoForInCacheArray()
2668 void LCodeGen::DoForInPrepareMap(LForInPrepareMap* instr) { in DoForInPrepareMap()
2688 void LCodeGen::DoGetCachedArrayIndex(LGetCachedArrayIndex* instr) { in DoGetCachedArrayIndex()
2701 void LCodeGen::EmitGoto(int block) { in EmitGoto()
2709 void LCodeGen::DoGoto(LGoto* instr) { in DoGoto()
2714 void LCodeGen::DoHasCachedArrayIndexAndBranch( in DoHasCachedArrayIndexAndBranch()
2761 void LCodeGen::DoHasInstanceTypeAndBranch(LHasInstanceTypeAndBranch* instr) { in DoHasInstanceTypeAndBranch()
2773 void LCodeGen::DoInnerAllocatedObject(LInnerAllocatedObject* instr) { in DoInnerAllocatedObject()
2784 void LCodeGen::DoHasInPrototypeChainAndBranch( in DoHasInPrototypeChainAndBranch()
2823 void LCodeGen::DoInstructionGap(LInstructionGap* instr) { in DoInstructionGap()
2828 void LCodeGen::DoInteger32ToDouble(LInteger32ToDouble* instr) { in DoInteger32ToDouble()
2834 void LCodeGen::PrepareForTailCall(const ParameterCount& actual, in PrepareForTailCall()
2881 void LCodeGen::DoInvokeFunction(LInvokeFunction* instr) { in DoInvokeFunction()
2914 Condition LCodeGen::EmitIsString(Register input, in EmitIsString()
2927 void LCodeGen::DoIsStringAndBranch(LIsStringAndBranch* instr) { in DoIsStringAndBranch()
2941 void LCodeGen::DoIsSmiAndBranch(LIsSmiAndBranch* instr) { in DoIsSmiAndBranch()
2948 void LCodeGen::DoIsUndetectableAndBranch(LIsUndetectableAndBranch* instr) { in DoIsUndetectableAndBranch()
2969 void LCodeGen::DoLabel(LLabel* label) { in DoLabel()
2992 void LCodeGen::DoLoadContextSlot(LLoadContextSlot* instr) { in DoLoadContextSlot()
3010 void LCodeGen::DoLoadFunctionPrototype(LLoadFunctionPrototype* instr) { in DoLoadFunctionPrototype()
3037 void LCodeGen::EmitVectorLoadICRegisters(T* instr) { in EmitVectorLoadICRegisters()
3054 void LCodeGen::EmitVectorStoreICRegisters(T* instr) { in EmitVectorStoreICRegisters()
3067 void LCodeGen::DoLoadGlobalGeneric(LLoadGlobalGeneric* instr) { in DoLoadGlobalGeneric()
3079 MemOperand LCodeGen::PrepareKeyedExternalArrayOperand( in PrepareKeyedExternalArrayOperand()
3110 void LCodeGen::DoLoadKeyedExternal(LLoadKeyedExternal* instr) { in DoLoadKeyedExternal()
3192 MemOperand LCodeGen::PrepareKeyedArrayOperand(Register base, in PrepareKeyedArrayOperand()
3233 void LCodeGen::DoLoadKeyedFixedDouble(LLoadKeyedFixedDouble* instr) { in DoLoadKeyedFixedDouble()
3269 void LCodeGen::DoLoadKeyedFixed(LLoadKeyedFixed* instr) { in DoLoadKeyedFixed()
3327 void LCodeGen::DoLoadKeyedGeneric(LLoadKeyedGeneric* instr) { in DoLoadKeyedGeneric()
3341 void LCodeGen::DoLoadNamedField(LLoadNamedField* instr) { in DoLoadNamedField()
3382 void LCodeGen::DoLoadNamedGeneric(LLoadNamedGeneric* instr) { in DoLoadNamedGeneric()
3395 void LCodeGen::DoLoadRoot(LLoadRoot* instr) { in DoLoadRoot()
3401 void LCodeGen::DoMathAbs(LMathAbs* instr) { in DoMathAbs()
3418 void LCodeGen::DoDeferredMathAbsTagged(LMathAbsTagged* instr, in DoDeferredMathAbsTagged()
3484 void LCodeGen::DoMathAbsTagged(LMathAbsTagged* instr) { in DoMathAbsTagged()
3488 DeferredMathAbsTagged(LCodeGen* codegen, LMathAbsTagged* instr) in DoMathAbsTagged()
3536 void LCodeGen::DoMathCos(LMathCos* instr) { in DoMathCos()
3543 void LCodeGen::DoMathSin(LMathSin* instr) { in DoMathSin()
3550 void LCodeGen::DoMathExp(LMathExp* instr) { in DoMathExp()
3558 void LCodeGen::DoMathFloorD(LMathFloorD* instr) { in DoMathFloorD()
3566 void LCodeGen::DoMathFloorI(LMathFloorI* instr) { in DoMathFloorI()
3585 void LCodeGen::DoFlooringDivByPowerOf2I(LFlooringDivByPowerOf2I* instr) { in DoFlooringDivByPowerOf2I()
3629 void LCodeGen::DoFlooringDivByConstI(LFlooringDivByConstI* instr) { in DoFlooringDivByConstI()
3675 void LCodeGen::DoFlooringDivI(LFlooringDivI* instr) { in DoFlooringDivI()
3720 void LCodeGen::DoMathLog(LMathLog* instr) { in DoMathLog()
3728 void LCodeGen::DoMathClz32(LMathClz32* instr) { in DoMathClz32()
3735 void LCodeGen::DoMathPowHalf(LMathPowHalf* instr) { in DoMathPowHalf()
3759 void LCodeGen::DoPower(LPower* instr) { in DoPower()
3798 void LCodeGen::DoMathRoundD(LMathRoundD* instr) { in DoMathRoundD()
3828 void LCodeGen::DoMathRoundI(LMathRoundI* instr) { in DoMathRoundI()
3882 void LCodeGen::DoMathFround(LMathFround* instr) { in DoMathFround()
3890 void LCodeGen::DoMathSqrt(LMathSqrt* instr) { in DoMathSqrt()
3897 void LCodeGen::DoMathMinMax(LMathMinMax* instr) { in DoMathMinMax()
3929 void LCodeGen::DoModByPowerOf2I(LModByPowerOf2I* instr) { in DoModByPowerOf2I()
3961 void LCodeGen::DoModByConstI(LModByConstI* instr) { in DoModByConstI()
3989 void LCodeGen::DoModI(LModI* instr) { in DoModI()
4009 void LCodeGen::DoMulConstIS(LMulConstIS* instr) { in DoMulConstIS()
4125 void LCodeGen::DoMulI(LMulI* instr) { in DoMulI()
4155 void LCodeGen::DoMulS(LMulS* instr) { in DoMulS()
4205 void LCodeGen::DoDeferredNumberTagD(LNumberTagD* instr) { in DoDeferredNumberTagD()
4226 void LCodeGen::DoNumberTagD(LNumberTagD* instr) { in DoNumberTagD()
4229 DeferredNumberTagD(LCodeGen* codegen, LNumberTagD* instr) in DoNumberTagD()
4254 void LCodeGen::DoDeferredNumberTagU(LInstruction* instr, in DoDeferredNumberTagU()
4300 void LCodeGen::DoNumberTagU(LNumberTagU* instr) { in DoNumberTagU()
4303 DeferredNumberTagU(LCodeGen* codegen, LNumberTagU* instr) in DoNumberTagU()
4327 void LCodeGen::DoNumberUntagD(LNumberUntagD* instr) { in DoNumberUntagD()
4383 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { in DoOsrEntry()
4398 void LCodeGen::DoParameter(LParameter* instr) { in DoParameter()
4403 void LCodeGen::DoPreparePushArguments(LPreparePushArguments* instr) { in DoPreparePushArguments()
4408 void LCodeGen::DoPushArguments(LPushArguments* instr) { in DoPushArguments()
4427 void LCodeGen::DoReturn(LReturn* instr) { in DoReturn()
4460 MemOperand LCodeGen::BuildSeqStringOperand(Register string, in BuildSeqStringOperand()
4483 void LCodeGen::DoSeqStringGetChar(LSeqStringGetChar* instr) { in DoSeqStringGetChar()
4518 void LCodeGen::DoSeqStringSetChar(LSeqStringSetChar* instr) { in DoSeqStringSetChar()
4545 void LCodeGen::DoSmiTag(LSmiTag* instr) { in DoSmiTag()
4557 void LCodeGen::DoSmiUntag(LSmiUntag* instr) { in DoSmiUntag()
4572 void LCodeGen::DoShiftI(LShiftI* instr) { in DoShiftI()
4614 void LCodeGen::DoShiftS(LShiftS* instr) { in DoShiftS()
4689 void LCodeGen::DoDebugBreak(LDebugBreak* instr) { in DoDebugBreak()
4694 void LCodeGen::DoDeclareGlobals(LDeclareGlobals* instr) { in DoDeclareGlobals()
4709 void LCodeGen::DoDeferredStackCheck(LStackCheck* instr) { in DoDeferredStackCheck()
4721 void LCodeGen::DoStackCheck(LStackCheck* instr) { in DoStackCheck()
4724 DeferredStackCheck(LCodeGen* codegen, LStackCheck* instr) in DoStackCheck()
4769 void LCodeGen::DoStoreCodeEntry(LStoreCodeEntry* instr) { in DoStoreCodeEntry()
4778 void LCodeGen::DoStoreContextSlot(LStoreContextSlot* instr) { in DoStoreContextSlot()
4809 void LCodeGen::DoStoreKeyedExternal(LStoreKeyedExternal* instr) { in DoStoreKeyedExternal()
4881 void LCodeGen::DoStoreKeyedFixedDouble(LStoreKeyedFixedDouble* instr) { in DoStoreKeyedFixedDouble()
4912 void LCodeGen::DoStoreKeyedFixed(LStoreKeyedFixed* instr) { in DoStoreKeyedFixed()
4968 void LCodeGen::DoStoreKeyedGeneric(LStoreKeyedGeneric* instr) { in DoStoreKeyedGeneric()
4983 void LCodeGen::DoMaybeGrowElements(LMaybeGrowElements* instr) { in DoMaybeGrowElements()
4986 DeferredMaybeGrowElements(LCodeGen* codegen, LMaybeGrowElements* instr) in DoMaybeGrowElements()
5035 void LCodeGen::DoDeferredMaybeGrowElements(LMaybeGrowElements* instr) { in DoDeferredMaybeGrowElements()
5068 void LCodeGen::DoStoreNamedField(LStoreNamedField* instr) { in DoStoreNamedField()
5167 void LCodeGen::DoStoreNamedGeneric(LStoreNamedGeneric* instr) { in DoStoreNamedGeneric()
5182 void LCodeGen::DoStringAdd(LStringAdd* instr) { in DoStringAdd()
5193 void LCodeGen::DoStringCharCodeAt(LStringCharCodeAt* instr) { in DoStringCharCodeAt()
5196 DeferredStringCharCodeAt(LCodeGen* codegen, LStringCharCodeAt* instr) in DoStringCharCodeAt()
5216 void LCodeGen::DoDeferredStringCharCodeAt(LStringCharCodeAt* instr) { in DoDeferredStringCharCodeAt()
5240 void LCodeGen::DoStringCharFromCode(LStringCharFromCode* instr) { in DoStringCharFromCode()
5243 DeferredStringCharFromCode(LCodeGen* codegen, LStringCharFromCode* instr) in DoStringCharFromCode()
5269 void LCodeGen::DoDeferredStringCharFromCode(LStringCharFromCode* instr) { in DoDeferredStringCharFromCode()
5286 void LCodeGen::DoStringCompareAndBranch(LStringCompareAndBranch* instr) { in DoStringCompareAndBranch()
5298 void LCodeGen::DoSubI(LSubI* instr) { in DoSubI()
5313 void LCodeGen::DoSubS(LSubS* instr) { in DoSubS()
5327 void LCodeGen::DoDeferredTaggedToI(LTaggedToI* instr, in DoDeferredTaggedToI()
5385 void LCodeGen::DoTaggedToI(LTaggedToI* instr) { in DoTaggedToI()
5388 DeferredTaggedToI(LCodeGen* codegen, LTaggedToI* instr) in DoTaggedToI()
5415 void LCodeGen::DoThisFunction(LThisFunction* instr) { in DoThisFunction()
5421 void LCodeGen::DoTransitionElementsKind(LTransitionElementsKind* instr) { in DoTransitionElementsKind()
5461 void LCodeGen::DoTrapAllocationMemento(LTrapAllocationMemento* instr) { in DoTrapAllocationMemento()
5473 void LCodeGen::DoTruncateDoubleToIntOrSmi(LTruncateDoubleToIntOrSmi* instr) { in DoTruncateDoubleToIntOrSmi()
5483 void LCodeGen::DoTypeof(LTypeof* instr) { in DoTypeof()
5498 void LCodeGen::DoTypeofIsAndBranch(LTypeofIsAndBranch* instr) { in DoTypeofIsAndBranch()
5603 void LCodeGen::DoUint32ToDouble(LUint32ToDouble* instr) { in DoUint32ToDouble()
5608 void LCodeGen::DoCheckMapValue(LCheckMapValue* instr) { in DoCheckMapValue()
5618 void LCodeGen::DoWrapReceiver(LWrapReceiver* instr) { in DoWrapReceiver()
5665 void LCodeGen::DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, in DoDeferredLoadMutableDouble()
5680 void LCodeGen::DoLoadFieldByIndex(LLoadFieldByIndex* instr) { in DoLoadFieldByIndex()
5683 DeferredLoadMutableDouble(LCodeGen* codegen, in DoLoadFieldByIndex()