| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Constants.h | 71 V->getValueID() <= ConstantDataLastVal; in classof() 253 return V->getValueID() == ConstantIntVal; in classof() 328 return V->getValueID() == ConstantFPVal; in classof() 433 return V->getValueID() == ConstantArrayVal; 485 return V->getValueID() == ConstantStructVal; 907 return V->getValueID() == BlockAddressVal; 985 return V->getValueID() == NoCFIValueVal; 1309 return V->getValueID() == ConstantExprVal; 1372 return V->getValueID() == UndefValueVal || 1373 V->getValueID() == PoisonValueVal; [all …]
|
| H A D | Value.h | 532 unsigned getValueID() const { in getValueID() function 971 return Val.getValueID() <= Value::ConstantLastVal; 978 Val.getValueID() <= Value::ConstantDataLastVal; 991 return Val.getValueID() == Value::ArgumentVal; 997 return Val.getValueID() == Value::InlineAsmVal; 1003 return Val.getValueID() >= Value::InstructionVal; 1009 return Val.getValueID() == Value::BasicBlockVal; 1015 return Val.getValueID() == Value::FunctionVal; 1021 return Val.getValueID() == Value::GlobalVariableVal; 1027 return Val.getValueID() == Value::GlobalAliasVal; [all …]
|
| H A D | GlobalObject.h | 162 return V->getValueID() == Value::FunctionVal || in classof() 163 V->getValueID() == Value::GlobalVariableVal || in classof() 164 V->getValueID() == Value::GlobalIFuncVal; in classof()
|
| H A D | GlobalValue.h | 268 assert(Val == NotThreadLocal || getValueID() != Value::FunctionVal); in setThreadLocalMode() 660 return V->getValueID() == Value::FunctionVal || in classof() 661 V->getValueID() == Value::GlobalVariableVal || in classof() 662 V->getValueID() == Value::GlobalAliasVal || in classof() 663 V->getValueID() == Value::GlobalIFuncVal; in classof()
|
| H A D | Argument.h | 178 return V->getValueID() == ArgumentVal; in classof()
|
| H A D | Constant.h | 169 return V->getValueID() <= ConstantLastVal; in classof()
|
| H A D | GlobalIFunc.h | 94 return V->getValueID() == Value::GlobalIFuncVal; in classof()
|
| H A D | GlobalAlias.h | 102 return V->getValueID() == Value::GlobalAliasVal; in classof()
|
| H A D | GlobalVariable.h | 279 return V->getValueID() == Value::GlobalVariableVal; in classof()
|
| H A D | Instruction.h | 239 unsigned getOpcode() const { return getValueID() - InstructionVal; } 904 return V->getValueID() >= Value::InstructionVal;
|
| H A D | InlineAsm.h | 197 return V->getValueID() == Value::InlineAsmVal; in classof()
|
| H A D | BasicBlock.h | 549 return V->getValueID() == Value::BasicBlockVal; in classof()
|
| H A D | PatternMatch.h | 969 if (V->getValueID() == Value::InstructionVal + Opc) { in match() 1454 if (V->getValueID() == Value::InstructionVal + Opcode) { in match() 1470 if (V->getValueID() == Value::InstructionVal + Opcode) { in match() 1489 if (V->getValueID() == Value::InstructionVal + Opcode) { in match() 1519 if (V->getValueID() == Value::InstructionVal + Opcode) { in match()
|
| H A D | Function.h | 904 return V->getValueID() == Value::FunctionVal; in classof()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
| H A D | DXILBitcodeWriter.cpp | 201 return VE.getValueID(VI.getValue()); in getValueId() 1331 Vals.push_back(VE.getValueID(A.getAliasee())); in writeModuleInfo() 1353 Record.push_back(VE.getValueID(V)); in writeValueAsMetadata() 2093 Record.push_back(VE.getValueID(Op)); in writeConstants() 2214 unsigned ValID = VE.getValueID(V); in pushValueAndType() 2228 unsigned ValID = VE.getValueID(V); in pushValue() 2234 unsigned ValID = VE.getValueID(V); in pushValueSigned() 2347 Vals.push_back(VE.getValueID(II.getSuccessor(0))); in writeInstruction() 2358 Vals.push_back(VE.getValueID(SI.getDefaultDest())); in writeInstruction() 2370 Vals.push_back(VE.getValueID(I.getOperand(i))); in writeInstruction() [all …]
|
| H A D | DXILValueEnumerator.h | 151 unsigned getValueID(const Value *V) const;
|
| H A D | DXILValueEnumerator.cpp | 517 unsigned ValueEnumerator::getValueID(const Value *V) const { in getValueID() function in ValueEnumerator 595 return F ? getValueID(F) + 1 : 0; in getMetadataFunctionID() 865 auto R = FunctionMDInfo.lookup(getValueID(&F) + 1); in incorporateFunctionMetadata()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 242 return VE.getValueID(VI.getValue()); in getValueId() 1610 Record.push_back(VE.getValueID(V)); in writeValueAsMetadata() 2391 Record.push_back(VE.getValueID(&GO)); in writeModuleMetadata() 2688 Record.push_back(VE.getValueID(Op)); in writeConstants() 2822 unsigned ValID = VE.getValueID(V); in pushValueAndType() 2853 unsigned ValID = VE.getValueID(V); in pushValue() 2859 unsigned ValID = VE.getValueID(V); in pushValueSigned() 3353 Record[0] = VE.getValueID(&F); in writeGlobalValueSymbolTable() 3424 Record.push_back(VE.getValueID(Order.V)); in writeUseList() 4110 NameVals.push_back(VE.getValueID(&V)); in writeModuleLevelReferences() [all …]
|
| H A D | ValueEnumerator.h | 150 unsigned getValueID(const Value *V) const;
|
| H A D | ValueEnumerator.cpp | 482 unsigned ValueEnumerator::getValueID(const Value *V) const { in getValueID() function in ValueEnumerator 591 return F ? getValueID(F) + 1 : 0; in getMetadataFunctionID() 860 auto R = FunctionMDInfo.lookup(getValueID(&F) + 1); in incorporateFunctionMetadata()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemorySSA.h | 160 unsigned ID = V->getValueID(); in classof() 265 return MA->getValueID() == MemoryUseVal || MA->getValueID() == MemoryDefVal; 325 return MA->getValueID() == MemoryUseVal; 389 return MA->getValueID() == MemoryDefVal; 627 return V->getValueID() == MemoryPhiVal;
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-diff/lib/ |
| H A D | DifferenceEngine.cpp | 557 if (L->getValueID() != R->getValueID()) in equivalentAsOperands() 713 if (L->getValueID() != R->getValueID()) in equivalentAsOperands()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Globals.cpp | 75 switch (getValueID()) { in removeFromParent() 87 switch (getValueID()) { in eraseFromParent()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | FunctionComparator.cpp | 335 if (int Res = cmpNumbers(L->getValueID(), R->getValueID())) in cmpConstants() 348 switch (L->getValueID()) { in cmpConstants() 488 LLVM_DEBUG(dbgs() << "Looking at valueID " << L->getValueID() << "\n"); in cmpConstants()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRInterpreter.cpp | 171 if (constant->getValueID() == Value::ConstantFPVal) { in EvaluateValue() 259 switch (constant->getValueID()) { in ResolveConstantValue() 482 switch (constant->getValueID()) { in CanResolveConstant()
|