Home
last modified time | relevance | path

Searched refs:arch_opcode (Results 1 – 20 of 20) sorted by relevance

/external/v8/src/compiler/mips64/
Dcode-generator-mips64.cc654 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
655 switch (arch_opcode) { in AssembleArchInstruction()
671 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
1974 if (instr->arch_opcode() == kMips64Tst) { in AssembleBranchToLabels()
1978 } else if (instr->arch_opcode() == kMips64Dadd || in AssembleBranchToLabels()
1979 instr->arch_opcode() == kMips64Dsub) { in AssembleBranchToLabels()
1984 } else if (instr->arch_opcode() == kMips64DaddOvf) { in AssembleBranchToLabels()
1998 } else if (instr->arch_opcode() == kMips64DsubOvf) { in AssembleBranchToLabels()
2012 } else if (instr->arch_opcode() == kMips64MulOvf) { in AssembleBranchToLabels()
2026 } else if (instr->arch_opcode() == kMips64Cmp) { in AssembleBranchToLabels()
[all …]
/external/v8/src/compiler/mips/
Dcode-generator-mips.cc617 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
618 switch (arch_opcode) { in AssembleArchInstruction()
634 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
1644 if (instr->arch_opcode() == kMipsTst) { in AssembleBranchToLabels()
1648 } else if (instr->arch_opcode() == kMipsAddOvf) { in AssembleBranchToLabels()
1662 } else if (instr->arch_opcode() == kMipsSubOvf) { in AssembleBranchToLabels()
1676 } else if (instr->arch_opcode() == kMipsMulOvf) { in AssembleBranchToLabels()
1690 } else if (instr->arch_opcode() == kMipsCmp) { in AssembleBranchToLabels()
1693 } else if (instr->arch_opcode() == kMipsCmpS) { in AssembleBranchToLabels()
1704 } else if (instr->arch_opcode() == kMipsCmpD) { in AssembleBranchToLabels()
[all …]
/external/v8/src/compiler/
Dframe-elider.cc28 instr->arch_opcode() == ArchOpcode::kArchStackPointer || in MarkBlocks()
29 instr->arch_opcode() == ArchOpcode::kArchFramePointer) { in MarkBlocks()
Dinstruction.h841 ArchOpcode arch_opcode() const { return ArchOpcodeField::decode(opcode()); } in arch_opcode() function
899 bool IsNop() const { return arch_opcode() == kArchNop; } in IsNop()
902 return arch_opcode() == ArchOpcode::kArchDeoptimize || in IsDeoptimizeCall()
906 bool IsJump() const { return arch_opcode() == ArchOpcode::kArchJmp; } in IsJump()
907 bool IsRet() const { return arch_opcode() == ArchOpcode::kArchRet; } in IsRet()
909 return arch_opcode() == ArchOpcode::kArchTailCallCodeObject || in IsTailCall()
910 arch_opcode() == ArchOpcode::kArchTailCallCodeObjectFromJSFunction || in IsTailCall()
911 arch_opcode() == ArchOpcode::kArchTailCallJSFunctionFromJSFunction || in IsTailCall()
912 arch_opcode() == ArchOpcode::kArchTailCallAddress; in IsTailCall()
915 return arch_opcode() == ArchOpcode::kArchThrowTerminator; in IsThrow()
Djump-threading.cc92 } else if (instr->arch_opcode() == kArchJmp) { in ComputeForwarding()
161 } else if (instr->arch_opcode() == kArchJmp) { in ApplyForwarding()
Dinstruction-scheduler.h185 return (instr->arch_opcode() == kArchNop) && (instr->OutputCount() == 1) && in IsFixedRegisterParameter()
Dinstruction-scheduler.cc241 switch (instr->arch_opcode()) { in GetInstructionFlags()
/external/v8/src/compiler/ia32/
Dinstruction-scheduler-ia32.cc16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
151 switch (instr->arch_opcode()) { in GetInstructionLatency()
Dcode-generator-ia32.cc880 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
881 switch (arch_opcode) { in AssembleArchInstruction()
898 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
/external/v8/src/compiler/x64/
Dinstruction-scheduler-x64.cc16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
201 switch (instr->arch_opcode()) { in GetInstructionLatency()
Dcode-generator-x64.cc812 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
813 switch (arch_opcode) { in AssembleArchInstruction()
830 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
/external/v8/src/compiler/arm64/
Dinstruction-scheduler-arm64.cc16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
182 switch (instr->arch_opcode()) { in GetInstructionLatency()
Dcode-generator-arm64.cc627 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
628 switch (arch_opcode) { in AssembleArchInstruction()
657 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
1235 __ SetStackPointer(arch_opcode == kArm64PokeCSP ? csp : jssp); in AssembleArchInstruction()
1645 ArchOpcode opcode = instr->arch_opcode(); in AssembleArchBranch()
/external/v8/src/compiler/ppc/
Dinstruction-scheduler-ppc.cc16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
Dcode-generator-ppc.cc1994 ArchOpcode op = instr->arch_opcode(); in AssembleArchBranch()
2080 ArchOpcode op = instr->arch_opcode(); in AssembleArchTrap()
2102 ArchOpcode op = instr->arch_opcode(); in AssembleArchBoolean()
/external/v8/src/compiler/s390/
Dinstruction-scheduler-s390.cc15 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
Dcode-generator-s390.cc2376 ArchOpcode op = instr->arch_opcode(); in AssembleArchBranch()
2459 ArchOpcode op = instr->arch_opcode(); in AssembleArchTrap()
2479 ArchOpcode op = instr->arch_opcode(); in AssembleArchBoolean()
/external/v8/src/compiler/arm/
Dinstruction-scheduler-arm.cc16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
Dcode-generator-arm.cc610 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
611 switch (arch_opcode) { in AssembleArchInstruction()
629 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
/external/v8/src/compiler/x87/
Dcode-generator-x87.cc544 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
546 switch (arch_opcode) { in AssembleArchInstruction()
584 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()