Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/tf2xla/
Dfunctionalize_cond.cc88 string Branch_Name(BranchType b) { in Branch_Name()
90 case BranchType::kElseBranch: in Branch_Name()
92 case BranchType::kThenBranch: in Branch_Name()
94 case BranchType::kBoth: in Branch_Name()
96 case BranchType::kNeither: in Branch_Name()
109 const BranchType& branch = pred_branch.second; in DebugString()
110 if (branch == BranchType::kNeither) in DebugString()
162 {std::make_pair(OutputTensor(nullptr, -1), BranchType::kNeither)}); in StateMap()
174 hash<BranchType>()(it->second)); in operator ()()
178 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.cc79 ss.insert(std::make_pair(OutputTensor(pred, 0), BranchType::kThenBranch)); in TEST_F()
85 ss.insert(std::make_pair(OutputTensor(pred, 0), BranchType::kElseBranch)); in TEST_F()
/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/v8/src/arm64/
Dinstructions-arm64.cc197 } else if (BranchType() != UnknownBranchType) { in ImmPCOffset()
227 return IsValidImmPCOffset(BranchType(), DistanceTo(target)); in IsTargetInImmPCOffsetRange()
234 } else if (BranchType() != UnknownBranchType) { in SetImmPCOffsetTarget()
265 IsValidImmPCOffset(BranchType(), DistanceTo(target) >> kInstrSizeLog2)); in SetBranchImmTarget()
269 switch (BranchType()) { in SetBranchImmTarget()
Dinstructions-arm64.h178 return BranchType() != UnknownBranchType; in IsImmBranch()
301 ImmBranchType BranchType() const { in BranchType() function
337 switch (BranchType()) { in ImmBranch()
Dmacro-assembler-arm64.h110 enum BranchType { enum
148 inline BranchType InvertBranchType(BranchType type) { in InvertBranchType()
150 return static_cast<BranchType>( in InvertBranchType()
153 return static_cast<BranchType>(type ^ 1); in InvertBranchType()
527 void B(Label* label, BranchType type, Register reg = NoReg, int bit = -1);
Dmacro-assembler-arm64.cc922 void TurboAssembler::B(Label* label, BranchType type, Register reg, int bit) { in B()
Dassembler-arm64.cc863 Instruction::ImmBranchRange(link->BranchType())); in DeleteUnresolvedBranchInfoForLabelTraverse()
/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
1004 BranchType InvertBranchType(BranchType type) { in InvertBranchType()
1006 return static_cast<BranchType>( in InvertBranchType()
1009 return static_cast<BranchType>(type ^ 1); in InvertBranchType()
1013 void B(Label* label, BranchType type, Register reg = NoReg, int bit = -1);
Dinstructions-aarch64.h389 VIXL_DEPRECATED("GetBranchType", ImmBranchType BranchType() const) {
Dmacro-assembler-aarch64.cc545 void MacroAssembler::B(Label* label, BranchType type, Register reg, int bit) { in B()