Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dframe-elider.cc28 instr->arch_opcode() == ArchOpcode::kArchStackPointer || in MarkBlocks()
29 instr->arch_opcode() == ArchOpcode::kArchFramePointer) { in MarkBlocks()
Dinstruction.h839 ArchOpcode arch_opcode() const { return ArchOpcodeField::decode(opcode()); } in arch_opcode() function
897 bool IsNop() const { return arch_opcode() == kArchNop; } in IsNop()
900 return arch_opcode() == ArchOpcode::kArchDeoptimize || in IsDeoptimizeCall()
909 bool IsJump() const { return arch_opcode() == ArchOpcode::kArchJmp; } in IsJump()
910 bool IsRet() const { return arch_opcode() == ArchOpcode::kArchRet; } in IsRet()
912 return arch_opcode() == ArchOpcode::kArchTailCallCodeObject || in IsTailCall()
913 arch_opcode() == ArchOpcode::kArchTailCallCodeObjectFromJSFunction || in IsTailCall()
914 arch_opcode() == ArchOpcode::kArchTailCallAddress || in IsTailCall()
915 arch_opcode() == ArchOpcode::kArchTailCallWasm; in IsTailCall()
918 return arch_opcode() == ArchOpcode::kArchThrowTerminator; in IsThrow()
Djump-threading.cc107 } else if (instr->arch_opcode() == kArchJmp) { in ComputeForwarding()
177 } else if (instr->arch_opcode() == kArchJmp) { in ApplyForwarding()
Dinstruction-scheduler.h187 return (instr->arch_opcode() == kArchNop) && (instr->OutputCount() == 1) && in IsFixedRegisterParameter()
Dinstruction-scheduler.cc247 switch (instr->arch_opcode()) { in GetInstructionFlags()
/external/v8/src/compiler/mips64/
Dcode-generator-mips64.cc615 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
616 switch (arch_opcode) { in AssembleArchInstruction()
633 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
652 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
3011 if (instr->arch_opcode() == kMips64Tst) { in AssembleBranchToLabels()
3014 } else if (instr->arch_opcode() == kMips64Dadd || in AssembleBranchToLabels()
3015 instr->arch_opcode() == kMips64Dsub) { in AssembleBranchToLabels()
3020 } else if (instr->arch_opcode() == kMips64DaddOvf || in AssembleBranchToLabels()
3021 instr->arch_opcode() == kMips64DsubOvf) { in AssembleBranchToLabels()
3031 UNSUPPORTED_COND(instr->arch_opcode(), condition); in AssembleBranchToLabels()
[all …]
Dinstruction-scheduler-mips64.cc15 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
1183 switch (instr->arch_opcode()) { in GetInstructionLatency()
1190 if (instr->arch_opcode() == kArchTailCallCodeObjectFromJSFunction) { in GetInstructionLatency()
/external/v8/src/compiler/x64/
Dinstruction-scheduler-x64.cc16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
326 switch (instr->arch_opcode()) { in GetInstructionLatency()
Dcode-generator-x64.cc678 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
679 switch (arch_opcode) { in AssembleArchInstruction()
727 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
/external/v8/src/compiler/mips/
Dcode-generator-mips.cc602 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
603 switch (arch_opcode) { in AssembleArchInstruction()
632 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
2798 if (instr->arch_opcode() == kMipsTst) { in AssembleBranchToLabels()
2801 } else if (instr->arch_opcode() == kMipsAddOvf || in AssembleBranchToLabels()
2802 instr->arch_opcode() == kMipsSubOvf) { in AssembleBranchToLabels()
2812 UNSUPPORTED_COND(instr->arch_opcode(), condition); in AssembleBranchToLabels()
2815 } else if (instr->arch_opcode() == kMipsMulOvf) { in AssembleBranchToLabels()
2828 } else if (instr->arch_opcode() == kMipsCmp) { in AssembleBranchToLabels()
2831 } else if (instr->arch_opcode() == kMipsCmpS || in AssembleBranchToLabels()
[all …]
Dinstruction-scheduler-mips.cc16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
1298 switch (instr->arch_opcode()) { in GetInstructionLatency()
1305 if (instr->arch_opcode() == kArchTailCallCodeObjectFromJSFunction) { in GetInstructionLatency()
/external/v8/src/compiler/ia32/
Dinstruction-scheduler-ia32.cc16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
420 switch (instr->arch_opcode()) { in GetInstructionLatency()
Dcode-generator-ia32.cc648 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
649 switch (arch_opcode) { in AssembleArchInstruction()
700 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
3565 if (arch_opcode != kSSES8x2Reverse) { in AssembleArchInstruction()
3567 int8_t shuffle_mask = arch_opcode == kSSES8x4Reverse ? 0xB1 : 0x1B; in AssembleArchInstruction()
3584 if (arch_opcode != kAVXS8x2Reverse) { in AssembleArchInstruction()
3586 int8_t shuffle_mask = arch_opcode == kAVXS8x4Reverse ? 0xB1 : 0x1B; in AssembleArchInstruction()
3620 if (arch_opcode == kIA32S1x4AllTrue) { in AssembleArchInstruction()
3622 } else if (arch_opcode == kIA32S1x8AllTrue) { in AssembleArchInstruction()
/external/v8/src/compiler/arm64/
Dinstruction-scheduler-arm64.cc16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
368 switch (instr->arch_opcode()) { in GetInstructionLatency()
Dcode-generator-arm64.cc598 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
599 switch (arch_opcode) { in AssembleArchInstruction()
630 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()
2160 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.cc2099 ArchOpcode op = instr->arch_opcode(); in AssembleArchBranch()
2125 ArchOpcode op = instr->arch_opcode(); in AssembleBranchPoisoning()
2193 ArchOpcode op = instr->arch_opcode(); in AssembleArchTrap()
2215 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.cc2759 ArchOpcode op = instr->arch_opcode(); in AssembleArchBranch()
2850 ArchOpcode op = instr->arch_opcode(); in AssembleArchTrap()
2868 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.cc457 if (arch_opcode == kArmWord64AtomicNarrow##op) { \
712 ArchOpcode arch_opcode = ArchOpcodeField::decode(opcode); in AssembleArchInstruction() local
713 switch (arch_opcode) { in AssembleArchInstruction()
745 if (arch_opcode == kArchTailCallCodeObjectFromJSFunction) { in AssembleArchInstruction()