Home
last modified time | relevance | path

Searched refs:getValueID (Results 1 – 25 of 37) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DValue.h433 unsigned getValueID() const { in getValueID() function
711 return Val.getValueID() >= Value::ConstantFirstVal &&
712 Val.getValueID() <= Value::ConstantLastVal;
718 return Val.getValueID() >= Value::ConstantDataFirstVal &&
719 Val.getValueID() <= Value::ConstantDataLastVal;
725 return Val.getValueID() >= Value::ConstantAggregateFirstVal &&
726 Val.getValueID() <= Value::ConstantAggregateLastVal;
732 return Val.getValueID() == Value::ArgumentVal;
738 return Val.getValueID() == Value::InlineAsmVal;
744 return Val.getValueID() >= Value::InstructionVal;
[all …]
DGlobalValue.h230 assert(Val == NotThreadLocal || getValueID() != Value::FunctionVal); in setThreadLocalMode()
535 return V->getValueID() == Value::FunctionVal || in classof()
536 V->getValueID() == Value::GlobalVariableVal || in classof()
537 V->getValueID() == Value::GlobalAliasVal || in classof()
538 V->getValueID() == Value::GlobalIFuncVal; in classof()
DConstant.h122 return V->getValueID() >= ConstantFirstVal && in classof()
123 V->getValueID() <= ConstantLastVal; in classof()
DGlobalObject.h130 return V->getValueID() == Value::FunctionVal || in classof()
131 V->getValueID() == Value::GlobalVariableVal; in classof()
DArgument.h146 return V->getValueID() == ArgumentVal; in classof()
DInstruction.h111 unsigned getOpcode() const { return getValueID() - InstructionVal; } in getOpcode()
510 return V->getValueID() >= Value::InstructionVal; in classof()
DBasicBlock.h262 return V->getValueID() == Value::BasicBlockVal; in classof()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DValue.h484 unsigned getValueID() const { in getValueID() function
819 return Val.getValueID() <= Value::ConstantLastVal;
825 return Val.getValueID() >= Value::ConstantDataFirstVal &&
826 Val.getValueID() <= Value::ConstantDataLastVal;
832 return Val.getValueID() >= Value::ConstantAggregateFirstVal &&
833 Val.getValueID() <= Value::ConstantAggregateLastVal;
839 return Val.getValueID() == Value::ArgumentVal;
845 return Val.getValueID() == Value::InlineAsmVal;
851 return Val.getValueID() >= Value::InstructionVal;
857 return Val.getValueID() == Value::BasicBlockVal;
[all …]
DConstants.h74 return V->getValueID() >= ConstantDataFirstVal && in classof()
75 V->getValueID() <= ConstantDataLastVal; in classof()
256 return V->getValueID() == ConstantIntVal; in classof()
333 return V->getValueID() == ConstantFPVal; in classof()
374 return V->getValueID() == ConstantAggregateZeroVal; in classof()
399 return V->getValueID() >= ConstantAggregateFirstVal && in classof()
400 V->getValueID() <= ConstantAggregateLastVal; in classof()
438 return V->getValueID() == ConstantArrayVal;
492 return V->getValueID() == ConstantStructVal;
532 return V->getValueID() == ConstantVectorVal;
[all …]
DGlobalValue.h255 assert(Val == NotThreadLocal || getValueID() != Value::FunctionVal); in setThreadLocalMode()
580 return V->getValueID() == Value::FunctionVal || in classof()
581 V->getValueID() == Value::GlobalVariableVal || in classof()
582 V->getValueID() == Value::GlobalAliasVal || in classof()
583 V->getValueID() == Value::GlobalIFuncVal; in classof()
DGlobalIndirectSymbol.h80 return V->getValueID() == Value::GlobalAliasVal || in classof()
81 V->getValueID() == Value::GlobalIFuncVal; in classof()
DGlobalObject.h190 return V->getValueID() == Value::FunctionVal || in classof()
191 V->getValueID() == Value::GlobalVariableVal; in classof()
DGlobalIFunc.h69 return V->getValueID() == Value::GlobalIFuncVal; in classof()
DArgument.h136 return V->getValueID() == ArgumentVal; in classof()
DConstant.h157 return V->getValueID() <= ConstantLastVal; in classof()
DGlobalAlias.h87 return V->getValueID() == Value::GlobalAliasVal; in classof()
DInstruction.h125 unsigned getOpcode() const { return getValueID() - InstructionVal; }
684 return V->getValueID() >= Value::InstructionVal;
DGlobalVariable.h252 return V->getValueID() == Value::GlobalVariableVal; in classof()
DInlineAsm.h186 return V->getValueID() == Value::InlineAsmVal; in classof()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp238 return VE.getValueID(VI.getValue()); in getValueId()
1275 (VE.getValueID(GV.getInitializer()) + 1)); in writeModuleInfo()
1327 Vals.push_back(F.hasPrologueData() ? (VE.getValueID(F.getPrologueData()) + 1) in writeModuleInfo()
1331 Vals.push_back(F.hasPrefixData() ? (VE.getValueID(F.getPrefixData()) + 1) in writeModuleInfo()
1334 F.hasPersonalityFn() ? (VE.getValueID(F.getPersonalityFn()) + 1) : 0); in writeModuleInfo()
1355 Vals.push_back(VE.getValueID(A.getAliasee())); in writeModuleInfo()
1378 Vals.push_back(VE.getValueID(I.getResolver())); in writeModuleInfo()
1427 Record.push_back(VE.getValueID(V)); in writeValueAsMetadata()
2119 Record.push_back(VE.getValueID(&GO)); in writeModuleMetadata()
2427 Record.push_back(VE.getValueID(Op)); in writeConstants()
[all …]
DValueEnumerator.h151 unsigned getValueID(const Value *V) const;
DValueEnumerator.cpp457 unsigned ValueEnumerator::getValueID(const Value *V) const { in getValueID() function in ValueEnumerator
567 return F ? getValueID(F) + 1 : 0; in getMetadataFunctionID()
798 auto R = FunctionMDInfo.lookup(getValueID(&F) + 1); in incorporateFunctionMetadata()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DMemorySSA.h156 unsigned ID = V->getValueID(); in classof()
261 return MA->getValueID() == MemoryUseVal || MA->getValueID() == MemoryDefVal;
332 return MA->getValueID() == MemoryUseVal;
392 return MA->getValueID() == MemoryDefVal;
631 return V->getValueID() == MemoryPhiVal;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFunctionComparator.cpp273 if (int Res = cmpNumbers(L->getValueID(), R->getValueID())) in cmpConstants()
286 switch (L->getValueID()) { in cmpConstants()
391 LLVM_DEBUG(dbgs() << "Looking at valueID " << L->getValueID() << "\n"); in cmpConstants()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DGlobals.cpp74 switch (getValueID()) { in removeFromParent()
86 switch (getValueID()) { in eraseFromParent()

12