/third_party/gn/src/gn/ |
D | switches.h | 13 struct SwitchInfo { struct 14 SwitchInfo(); 15 SwitchInfo(const char* short_help, const char* long_help); 21 using SwitchInfoMap = std::map<std::string_view, SwitchInfo>; argument
|
/third_party/node/deps/v8/src/compiler/backend/ |
D | instruction-selector.h | 37 class SwitchInfo; variable 489 void EmitTableSwitch(const SwitchInfo& sw, 491 void EmitBinarySearchSwitch(const SwitchInfo& sw, 620 void VisitSwitch(Node* node, const SwitchInfo& sw);
|
D | instruction-selector-impl.h | 31 class SwitchInfo { 33 SwitchInfo(ZoneVector<CaseInfo> const& cases, int32_t min_value, in SwitchInfo() function
|
D | instruction-selector.cc | 1318 SwitchInfo sw(cases, min_value, max_value, default_branch); in VisitControl() 2476 const SwitchInfo& sw, InstructionOperand const& index_operand) { in EmitTableSwitch() 2494 const SwitchInfo& sw, InstructionOperand const& value_operand) { in EmitBinarySearchSwitch()
|
/third_party/node/deps/v8/src/interpreter/ |
D | bytecode-generator.cc | 1838 struct SwitchInfo { struct 1844 SwitchInfo() { default_case = kDefaultNotFound; } in SwitchInfo() function 1879 bool IsSwitchOptimizable(SwitchStatement* stmt, SwitchInfo* info) { in IsSwitchOptimizable() 1994 SwitchInfo info; in VisitSwitchStatement()
|
/third_party/node/deps/v8/src/compiler/backend/ppc/ |
D | instruction-selector-ppc.cc | 1760 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|
/third_party/node/deps/v8/src/compiler/backend/mips/ |
D | instruction-selector-mips.cc | 1744 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
D | instruction-selector-s390.cc | 1978 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|
/third_party/node/deps/v8/src/compiler/backend/loong64/ |
D | instruction-selector-loong64.cc | 2258 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|
/third_party/node/deps/v8/src/compiler/backend/arm/ |
D | instruction-selector-arm.cc | 2114 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|
/third_party/node/deps/v8/src/compiler/backend/mips64/ |
D | instruction-selector-mips64.cc | 2514 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
D | instruction-selector-ia32.cc | 1862 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|
/third_party/node/deps/v8/src/compiler/backend/riscv64/ |
D | instruction-selector-riscv64.cc | 2372 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|
/third_party/node/deps/v8/src/compiler/backend/arm64/ |
D | instruction-selector-arm64.cc | 2964 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|
/third_party/node/deps/v8/src/compiler/backend/x64/ |
D | instruction-selector-x64.cc | 2652 void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { in VisitSwitch()
|