Home
last modified time | relevance | path

Searched refs:HasOutput (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/v8/src/compiler/backend/x64/
Dinstruction-scheduler-x64.cc387 if (instr->HasOutput()) { in GetTargetInstructionFlags()
415 return instr->HasOutput() ? kIsLoadOperation : kHasSideEffect; in GetTargetInstructionFlags()
Dcode-generator-x64.cc2397 if (instr->HasOutput()) { in AssembleArchInstruction()
2432 CHECK(instr->HasOutput()); in AssembleArchInstruction()
2440 CHECK(instr->HasOutput()); in AssembleArchInstruction()
2448 CHECK(instr->HasOutput()); in AssembleArchInstruction()
2456 CHECK(!instr->HasOutput()); in AssembleArchInstruction()
2473 CHECK(instr->HasOutput()); in AssembleArchInstruction()
2484 CHECK(!instr->HasOutput()); in AssembleArchInstruction()
2496 if (instr->HasOutput()) { in AssembleArchInstruction()
2519 if (instr->HasOutput()) { in AssembleArchInstruction()
2529 if (instr->HasOutput()) { in AssembleArchInstruction()
[all …]
/third_party/node/deps/v8/src/compiler/backend/ia32/
Dinstruction-scheduler-ia32.cc370 return instr->HasOutput() ? kIsLoadOperation : kHasSideEffect; in GetTargetInstructionFlags()
Dcode-generator-ia32.cc1596 if (instr->HasOutput()) { in AssembleArchInstruction()
1609 if (instr->HasOutput()) { in AssembleArchInstruction()
1618 if (instr->HasOutput()) { in AssembleArchInstruction()
1627 if (instr->HasOutput()) { in AssembleArchInstruction()
2709 if (instr->HasOutput()) { in AssembleArchInstruction()
2720 if (instr->HasOutput()) { in AssembleArchInstruction()
/third_party/mesa3d/src/microsoft/compiler/
Ddxcapi.h577 virtual BOOL STDMETHODCALLTYPE HasOutput(_In_ DXC_OUT_KIND dxcOutKind) = 0;
/third_party/node/deps/v8/src/compiler/backend/s390/
Dcode-generator-s390.cc3174 CHECK(!instr->HasOutput()); in AssembleArchInstruction()
3183 CHECK(instr->HasOutput()); in AssembleArchInstruction()
3188 CHECK(instr->HasOutput()); in AssembleArchInstruction()
3193 CHECK(instr->HasOutput()); in AssembleArchInstruction()
/third_party/node/deps/v8/src/compiler/backend/ppc/
Dcode-generator-ppc.cc3784 CHECK(instr->HasOutput()); in AssembleArchInstruction()
3789 CHECK(instr->HasOutput()); in AssembleArchInstruction()
3795 CHECK(instr->HasOutput()); in AssembleArchInstruction()
/third_party/node/deps/v8/src/compiler/backend/riscv64/
Dcode-generator-riscv64.cc1924 CHECK(instr->HasOutput()); in AssembleArchInstruction()
1931 CHECK(instr->HasOutput()); in AssembleArchInstruction()
1938 CHECK(instr->HasOutput()); in AssembleArchInstruction()
/third_party/node/deps/v8/src/compiler/backend/
Dinstruction.h860 bool HasOutput() const { return OutputCount() > 0; } in HasOutput() function