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

  /external/llvm/include/llvm/
Instructions.h 103 return (1u << getSubclassDataFromInstruction()) >> 1;
170 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
175 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
182 return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
189 return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
195 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
200 return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
207 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6)) |
287 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
292 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1)
    [all...]
Instruction.h 351 unsigned getSubclassDataFromInstruction() const {
InstrTypes.h 711 return Predicate(getSubclassDataFromInstruction());
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]

Completed in 201 milliseconds