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

/external/llvm/include/llvm/IR/
H A DInstructions.h106 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.h441 unsigned getSubclassDataFromInstruction() const { function in class:llvm::Instruction
H A DInstrTypes.h715 return Predicate(getSubclassDataFromInstruction());
/external/llvm/lib/IR/
H A DInstructions.cpp1069 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
1208 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |

Completed in 219 milliseconds