HomeSort by relevance Sort by last modified time
    Searched refs:getSubclassDataFromInstruction (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/IR/
Instructions.h 106 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() & ~1)
    [all...]
Instruction.h 441 unsigned getSubclassDataFromInstruction() const {
InstrTypes.h 715 return Predicate(getSubclassDataFromInstruction());
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]

Completed in 967 milliseconds