Searched refs:getValueID (Results 1 - 21 of 21) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DPseudoSourceValue.h55 return V->getValueID() == PseudoSourceValueVal ||
56 V->getValueID() == FixedStackPseudoSourceValueVal;
97 return V->getValueID() == FixedStackPseudoSourceValueVal;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DValue.h219 /// getValueID - Return an ID for the concrete type of this object. This is
228 unsigned getValueID() const { function in class:llvm::Value
342 return Val.getValueID() >= Value::ConstantFirstVal &&
343 Val.getValueID() <= Value::ConstantLastVal;
349 return Val.getValueID() == Value::ArgumentVal;
355 return Val.getValueID() == Value::InlineAsmVal;
361 return Val.getValueID() >= Value::InstructionVal;
367 return Val.getValueID() == Value::BasicBlockVal;
373 return Val.getValueID() == Value::FunctionVal;
379 return Val.getValueID()
[all...]
H A DConstant.h114 return V->getValueID() >= ConstantFirstVal &&
115 V->getValueID() <= ConstantLastVal;
H A DArgument.h86 return V->getValueID() == ArgumentVal;
H A DGlobalAlias.h81 return V->getValueID() == Value::GlobalAliasVal;
H A DConstants.h226 return V->getValueID() == ConstantIntVal;
296 return V->getValueID() == ConstantFPVal;
339 return V->getValueID() == ConstantAggregateZeroVal;
372 return V->getValueID() == ConstantArrayVal;
431 return V->getValueID() == ConstantStructVal;
479 return V->getValueID() == ConstantVectorVal;
522 return V->getValueID() == ConstantPointerNullVal;
644 return V->getValueID() == ConstantDataArrayVal ||
645 V->getValueID() == ConstantDataVectorVal;
700 return V->getValueID()
[all...]
H A DMetadata.h64 return V->getValueID() == MDStringVal;
166 return V->getValueID() == MDNodeVal;
H A DGlobalValue.h292 return V->getValueID() == Value::FunctionVal ||
293 V->getValueID() == Value::GlobalVariableVal ||
294 V->getValueID() == Value::GlobalAliasVal;
H A DGlobalVariable.h179 return V->getValueID() == Value::GlobalVariableVal;
H A DInstruction.h82 unsigned getOpcode() const { return getValueID() - InstructionVal; }
315 return V->getValueID() >= Value::InstructionVal;
H A DBasicBlock.h218 return V->getValueID() == Value::BasicBlockVal;
H A DInlineAsm.h194 return V->getValueID() == Value::InlineAsmVal;
H A DFunction.h411 return V->getValueID() == Value::FunctionVal;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp493 (VE.getValueID(GV->getInitializer()) + 1));
536 Vals.push_back(VE.getValueID(AI->getAliasee()));
570 Record.push_back(VE.getValueID(N->getOperand(i)));
639 Record.push_back(VE.getValueID(NMD->getOperand(i)));
692 Record.push_back(VE.getValueID(MDs[i].second));
916 Record.push_back(VE.getValueID(C->getOperand(i)));
925 Record.push_back(VE.getValueID(C->getOperand(0)));
931 Record.push_back(VE.getValueID(C->getOperand(0)));
932 Record.push_back(VE.getValueID(C->getOperand(1)));
944 Record.push_back(VE.getValueID(
[all...]
H A DValueEnumerator.h90 unsigned getValueID(const Value *V) const;
H A DValueEnumerator.cpp122 unsigned ValueEnumerator::getValueID(const Value *V) const { function in class:ValueEnumerator
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-diff/
H A DDifferenceEngine.cpp373 if (L->getValueID() != R->getValueID())
434 if (L->getValueID() != R->getValueID())
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DPatternMatch.h301 if (V->getValueID() == Value::InstructionVal + Opcode) {
432 if (V->getValueID() == Value::InstructionVal + Opc1 ||
433 V->getValueID() == Value::InstructionVal + Opc2) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DMergeFunctions.cpp448 if (OpF1->getValueID() != OpF2->getValueID() ||
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DAsmWriter.cpp1090 if (V->getValueID() == Value::PseudoSourceValueVal ||
1091 V->getValueID() == Value::FixedStackPseudoSourceValueVal) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DScalarEvolution.cpp495 // Compare getValueID values.
496 unsigned LID = LV->getValueID(),
497 RID = RV->getValueID();
3604 unsigned Opcode = Op->getValueID() - Value::InstructionVal;
3622 Op->getValueID() == Instruction::Mul + Value::InstructionVal;

Completed in 299 milliseconds