Home
last modified time | relevance | path

Searched refs:isExtendable (Results 1 – 12 of 12) sorted by relevance

/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonInstPrinter.cpp66 static bool isExtendable(uint64_t TSFlags) LLVM_ATTRIBUTE_UNUSED;
68 static bool isExtendable(uint64_t TSFlags) { in isExtendable() function
157 assert((isExtendable(MII.TSFlags) || isExtended(MII.TSFlags)) && in printExtOperand()
DHexagonMCInstrInfo.cpp126 if (!HexagonMCInstrInfo::isExtendable(MCII, MCI)) in isConstExtended()
152 bool HexagonMCInstrInfo::isExtendable(MCInstrInfo const &MCII, in isExtendable() function in llvm::HexagonMCInstrInfo
DHexagonMCInstrInfo.h63 bool isExtendable(MCInstrInfo const &MCII, MCInst const &MCI);
/external/llvm/lib/Target/Hexagon/
DHexagonInstrFormatsV4.td89 bits<1> isExtendable = 0;
90 let TSFlags{16} = isExtendable; // Insn may be extended.
DHexagonInstrInfoV3.td25 isExtended = 0, isExtendable = 1, opExtendable = 0,
40 isExtended = 0, isExtendable = 1, opExtendable = 1,
DHexagonInstrInfoV4.td17 let isExtendable = 1 in {
217 let isExtendable = IsImmExt;
249 let isExtendable = 1;
292 let hasSideEffects = 0, isExtentSigned = 1, isExtendable = 1,
328 let hasSideEffects = 0, isExtendable = 1, opExtentBits = 6, opExtendable = 2 in
1038 let isPredicable = 1, isExtendable = 1, isExtentSigned = 1, opExtentBits = 8,
1065 let isPredicated = 1, isExtendable = 1, isExtentSigned = 1, opExtentBits = 6,
1314 isExtendable = 1 in
1535 let isExtendable = 1, opExtendable = 2, isExtentSigned = 1, opExtentBits = 11,
1610 let isExtendable = 1, opExtendable = 2, isExtentSigned = 1, opExtentBits = 11,
[all …]
DHexagonInstrInfo.h196 bool isExtendable(const MachineInstr* MI) const;
DHexagonInstrInfo.cpp678 bool HexagonInstrInfo::isExtendable(const MachineInstr *MI) const { in isExtendable() function in HexagonInstrInfo
1697 assert((isExtendable(MI)||isConstExtended(MI)) && in immediateExtend()
1740 unsigned isExtendable = (F >> HexagonII::ExtendablePos) in isConstExtended() local
1742 if (!isExtendable) in isConstExtended()
DHexagonInstrInfo.td66 let hasSideEffects = 0, isCompare = 1, InputType = "imm", isExtendable = 1,
328 isExtentSigned = 1, isExtendable = 1, opExtentBits = 8, opExtendable = 1,
403 let isExtendable = 1, isExtentSigned = 1, InputType = "imm" in
426 let isExtendable = 1, opExtendable = 2, isExtentSigned = 1, opExtentBits = 10,
453 let isExtendable = 1, CextOpcode = "sub", opExtendable = 1, isExtentSigned = 1,
591 let InputType = "imm", isExtendable = 1, isExtentSigned = 1, opExtentBits = 12,
620 let InputType = "imm", isExtendable = 1, isExtentSigned = 1,
648 let isExtendable = 1, opExtendable = 1, opExtentBits = 6,
667 InputType = "imm", hasNewValue = 1, isExtendable = 1, opExtentBits = 8 in
700 let isExtentSigned = 1, hasNewValue = 1, isExtendable = 1,
[all …]
DHexagonInstrFormats.td139 bits<1> isExtendable = 0;
140 let TSFlags{21} = isExtendable; // Insn may be extended.
/external/protobuf/java/src/test/java/com/google/protobuf/
DDescriptorsTest.java697 assertFalse(TestAllTypes.getDescriptor().isExtendable()); in testMessageDescriptorExtensions()
698 assertTrue(TestAllExtensions.getDescriptor().isExtendable()); in testMessageDescriptorExtensions()
699 assertTrue(TestMultipleExtensionRanges.getDescriptor().isExtendable()); in testMessageDescriptorExtensions()
/external/protobuf/java/src/main/java/com/google/protobuf/
DDescriptors.java631 public boolean isExtendable() { in isExtendable() method in Descriptors.Descriptor