Home
last modified time | relevance | path

Searched refs:BranchType (Results 1 – 19 of 19) sorted by relevance

/external/tensorflow/tensorflow/compiler/tf2xla/
Dfunctionalize_cond.cc90 string Branch_Name(BranchType b) { in Branch_Name()
92 case BranchType::kElseBranch: in Branch_Name()
94 case BranchType::kThenBranch: in Branch_Name()
96 case BranchType::kBoth: in Branch_Name()
98 case BranchType::kNeither: in Branch_Name()
111 const BranchType& branch = pred_branch.second; in DebugString()
112 if (branch == BranchType::kNeither) in DebugString()
164 {std::make_pair(OutputTensor(nullptr, -1), BranchType::kNeither)}); in StateMap()
176 hash<BranchType>()(it->second)); in operator ()()
180 hash<BranchType>()(it->second))); in operator ()()
[all …]
Dfunctionalize_cond.h39 enum class BranchType { enum
92 using CondState = std::map<OutputTensor, BranchType, OutputTensorLess>;
125 BranchType FindBranchOf(CondId id, OutputTensor predicate) const;
Dfunctionalize_cond_test.cc86 ss.insert(std::make_pair(OutputTensor(pred, 0), BranchType::kThenBranch)); in TEST_F()
92 ss.insert(std::make_pair(OutputTensor(pred, 0), BranchType::kElseBranch)); in TEST_F()
/external/v8/src/codegen/arm64/
Dinstructions-arm64.cc192 } else if (BranchType() != UnknownBranchType) { in ImmPCOffset()
220 return IsValidImmPCOffset(BranchType(), DistanceTo(target)); in IsTargetInImmPCOffsetRange()
227 } else if (BranchType() != UnknownBranchType) { in SetImmPCOffsetTarget()
256 DCHECK(IsValidImmPCOffset(BranchType(), DistanceTo(target))); in SetBranchImmTarget()
260 switch (BranchType()) { in SetBranchImmTarget()
Dinstructions-arm64.h178 bool IsImmBranch() const { return BranchType() != UnknownBranchType; } in IsImmBranch()
297 ImmBranchType BranchType() const { in BranchType() function
333 switch (BranchType()) { in ImmBranch()
Dmacro-assembler-arm64.h78 enum BranchType { enum
119 inline BranchType InvertBranchType(BranchType type) { in InvertBranchType()
121 return static_cast<BranchType>( in InvertBranchType()
124 return static_cast<BranchType>(type ^ 1); in InvertBranchType()
499 void B(Label* label, BranchType type, Register reg = NoReg, int bit = -1);
Dmacro-assembler-arm64.cc914 void TurboAssembler::B(Label* label, BranchType type, Register reg, int bit) { in B()
Dassembler-arm64.cc648 Instruction::ImmBranchRange(link->BranchType())); in DeleteUnresolvedBranchInfoForLabelTraverse()
/external/llvm/lib/Target/SystemZ/
DSystemZInstrInfo.h68 enum BranchType { enum
99 BranchType Type;
110 Branch(BranchType type, unsigned ccValid, unsigned ccMask, in Branch()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZInstrInfo.h78 enum BranchType { enum
110 BranchType Type;
121 Branch(BranchType type, unsigned ccValid, unsigned ccMask, in Branch()
/external/llvm/lib/Target/Mips/
DMipsInstrInfo.h39 enum BranchType { enum
67 BranchType analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
DMipsDelaySlotFiller.cpp262 std::pair<MipsInstrInfo::BranchType, MachineInstr *>
809 std::pair<MipsInstrInfo::BranchType, MachineInstr *>
817 MipsInstrInfo::BranchType R = in getBranch()
848 std::pair<MipsInstrInfo::BranchType, MachineInstr *> P = in examinePred()
DMipsInstrInfo.cpp92 BranchType BT = analyzeBranch(MBB, TBB, FBB, Cond, AllowModify, BranchInstrs); in analyzeBranch()
179 MipsInstrInfo::BranchType MipsInstrInfo::analyzeBranch( in analyzeBranch()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsInstrInfo.h50 enum BranchType { enum
80 BranchType analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
DMipsDelaySlotFiller.cpp287 std::pair<MipsInstrInfo::BranchType, MachineInstr *>
850 std::pair<MipsInstrInfo::BranchType, MachineInstr *>
859 MipsInstrInfo::BranchType R = in getBranch()
892 std::pair<MipsInstrInfo::BranchType, MachineInstr *> P = in examinePred()
DMipsInstrInfo.cpp101 BranchType BT = analyzeBranch(MBB, TBB, FBB, Cond, AllowModify, BranchInstrs); in analyzeBranch()
191 MipsInstrInfo::BranchType MipsInstrInfo::analyzeBranch( in analyzeBranch()
/external/vixl/src/aarch64/
Dmacro-assembler-aarch64.h531 enum BranchType { enum
1008 BranchType InvertBranchType(BranchType type) { in InvertBranchType()
1010 return static_cast<BranchType>( in InvertBranchType()
1013 return static_cast<BranchType>(type ^ 1); in InvertBranchType()
1017 void B(Label* label, BranchType type, Register reg = NoReg, int bit = -1);
Dinstructions-aarch64.h450 VIXL_DEPRECATED("GetBranchType", ImmBranchType BranchType() const) {
Dmacro-assembler-aarch64.cc545 void MacroAssembler::B(Label* label, BranchType type, Register reg, int bit) { in B()