Searched refs:getSubclassDataFromInstruction (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/
H A DInstructions.h105 return (1u << getSubclassDataFromInstruction()) >> 1;
172 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
177 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
184 return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
191 return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
197 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
202 return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
209 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6)) |
289 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
294 setInstructionSubclassData((getSubclassDataFromInstruction()
[all...]
H A DInstruction.h382 unsigned getSubclassDataFromInstruction() const { function in class:llvm::Instruction
H A DInstrTypes.h711 return Predicate(getSubclassDataFromInstruction());
/external/llvm/lib/VMCore/
H A DInstructions.cpp1047 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
1186 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |

Completed in 839 milliseconds