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() & 31)) >> 1;
119 return getSubclassDataFromInstruction() & 32;
125 setInstructionSubclassData((getSubclassDataFromInstruction() & ~32) |
187 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
192 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
199 return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
206 return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
212 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
217 return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
224 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6))
    [all...]
Instruction.h 459 unsigned getSubclassDataFromInstruction() const {
InstrTypes.h 720 return Predicate(getSubclassDataFromInstruction());
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]

Completed in 189 milliseconds