Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DInstructions.h106 return (1u << (getSubclassDataFromInstruction() & 31)) >> 1; in getAlignment()
119 return getSubclassDataFromInstruction() & 32; in isUsedWithInAlloca()
125 setInstructionSubclassData((getSubclassDataFromInstruction() & ~32) | in setUsedWithInAlloca()
187 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; } in isVolatile()
192 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) | in setVolatile()
199 return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1; in getAlignment()
206 return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7); in getOrdering()
212 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) | in setOrdering()
217 return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1); in getSynchScope()
224 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6)) | in setSynchScope()
[all …]
DInstruction.h459 unsigned getSubclassDataFromInstruction() const { in getSubclassDataFromInstruction() function
DInstrTypes.h720 return Predicate(getSubclassDataFromInstruction());
/external/llvm/lib/IR/
DInstructions.cpp896 setInstructionSubclassData((getSubclassDataFromInstruction() & ~31) | in setAlignment()
1070 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) | in setAlignment()
1209 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) | in setAlignment()