Searched refs:InstructionVal (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/IR/
H A DInstruction.h83 unsigned getOpcode() const { return getValueID() - InstructionVal; }
374 return V->getValueID() >= Value::InstructionVal;
H A DValue.h210 InstructionVal, // This is an instance of Instruction enumerator in enum:llvm::Value::ValueTy
211 // Enum values starting at InstructionVal are used for Instructions;
222 /// for instructions, the Instruction's opcode is added to InstructionVal. So
224 /// # there is no value with code InstructionVal (no opcode==0).
226 /// # the InstructionVal enumerator must be the highest valued enumerator in
356 return Val.getValueID() >= Value::InstructionVal;
/external/llvm/lib/IR/
H A DInstruction.cpp26 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
40 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
/external/llvm/include/llvm/Support/
H A DPatternMatch.h382 if (V->getValueID() == Value::InstructionVal + Opcode) {
513 if (V->getValueID() == Value::InstructionVal + Opc1 ||
514 V->getValueID() == Value::InstructionVal + Opc2) {
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp3610 unsigned Opcode = Op->getValueID() - Value::InstructionVal;
3628 Op->getValueID() == Instruction::Mul + Value::InstructionVal;

Completed in 129 milliseconds