/external/v8/src/compiler/ |
D | frame-elider.cc | 28 instr->arch_opcode() == ArchOpcode::kArchStackPointer || in MarkBlocks() 29 instr->arch_opcode() == ArchOpcode::kArchFramePointer) { in MarkBlocks()
|
D | instruction.h | 839 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()
|
D | jump-threading.cc | 107 } else if (instr->arch_opcode() == kArchJmp) { in ComputeForwarding() 177 } else if (instr->arch_opcode() == kArchJmp) { in ApplyForwarding()
|
D | instruction-scheduler.h | 187 return (instr->arch_opcode() == kArchNop) && (instr->OutputCount() == 1) && in IsFixedRegisterParameter()
|
D | instruction-scheduler.cc | 247 switch (instr->arch_opcode()) { in GetInstructionFlags()
|
/external/v8/src/compiler/mips64/ |
D | code-generator-mips64.cc | 615 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 …]
|
D | instruction-scheduler-mips64.cc | 15 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/ |
D | instruction-scheduler-x64.cc | 16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags() 326 switch (instr->arch_opcode()) { in GetInstructionLatency()
|
D | code-generator-x64.cc | 678 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/ |
D | code-generator-mips.cc | 602 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 …]
|
D | instruction-scheduler-mips.cc | 16 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/ |
D | instruction-scheduler-ia32.cc | 16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags() 420 switch (instr->arch_opcode()) { in GetInstructionLatency()
|
D | code-generator-ia32.cc | 648 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/ |
D | instruction-scheduler-arm64.cc | 16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags() 368 switch (instr->arch_opcode()) { in GetInstructionLatency()
|
D | code-generator-arm64.cc | 598 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/ |
D | instruction-scheduler-ppc.cc | 16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
|
D | code-generator-ppc.cc | 2099 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/ |
D | instruction-scheduler-s390.cc | 15 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
|
D | code-generator-s390.cc | 2759 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/ |
D | instruction-scheduler-arm.cc | 16 switch (instr->arch_opcode()) { in GetTargetInstructionFlags()
|
D | code-generator-arm.cc | 457 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()
|