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 132 return (1u << (getSubclassDataFromInstruction() & 31)) >> 1;
145 return getSubclassDataFromInstruction() & 32;
151 setInstructionSubclassData((getSubclassDataFromInstruction() & ~32) |
234 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
239 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
246 return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
253 return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
259 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
264 return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
271 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6))
    [all...]
Instruction.h 525 unsigned getSubclassDataFromInstruction() const {
InstrTypes.h     [all...]
  /external/llvm/lib/IR/
Instructions.cpp 777 setInstructionSubclassData(CRI.getSubclassDataFromInstruction());
785 setInstructionSubclassData(getSubclassDataFromInstruction() | 1);
    [all...]

Completed in 90 milliseconds