OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getValueID
(Results
1 - 25
of
29
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
GlobalIndirectSymbol.h
80
return V->
getValueID
() == Value::GlobalAliasVal ||
81
V->
getValueID
() == Value::GlobalIFuncVal;
GlobalIFunc.h
69
return V->
getValueID
() == Value::GlobalIFuncVal;
Constants.h
68
return V->
getValueID
() >= ConstantDataFirstVal &&
69
V->
getValueID
() <= ConstantDataLastVal;
248
return V->
getValueID
() == ConstantIntVal;
327
return V->
getValueID
() == ConstantFPVal;
368
return V->
getValueID
() == ConstantAggregateZeroVal;
393
return V->
getValueID
() >= ConstantAggregateFirstVal &&
394
V->
getValueID
() <= ConstantAggregateLastVal;
432
return V->
getValueID
() == ConstantArrayVal;
485
return V->
getValueID
() == ConstantStructVal;
526
return V->
getValueID
() == ConstantVectorVal
[
all
...]
Value.h
541
unsigned
getValueID
() const {
960
static_assert(Value::ConstantFirstVal == 0, "Val.
getValueID
() >= Value::ConstantFirstVal");
961
return Val.
getValueID
() <= Value::ConstantLastVal;
967
return Val.
getValueID
() >= Value::ConstantDataFirstVal &&
968
Val.
getValueID
() <= Value::ConstantDataLastVal;
974
return Val.
getValueID
() >= Value::ConstantAggregateFirstVal &&
975
Val.
getValueID
() <= Value::ConstantAggregateLastVal;
981
return Val.
getValueID
() == Value::ArgumentVal;
987
return Val.
getValueID
() == Value::InlineAsmVal;
993
return Val.
getValueID
() >= Value::InstructionVal
[
all
...]
GlobalObject.h
155
return V->
getValueID
() == Value::FunctionVal ||
156
V->
getValueID
() == Value::GlobalVariableVal;
Argument.h
174
return V->
getValueID
() == ArgumentVal;
GlobalAlias.h
87
return V->
getValueID
() == Value::GlobalAliasVal;
GlobalValue.h
249
assert(Val == NotThreadLocal ||
getValueID
() != Value::FunctionVal);
577
return V->
getValueID
() == Value::FunctionVal ||
578
V->
getValueID
() == Value::GlobalVariableVal ||
579
V->
getValueID
() == Value::GlobalAliasVal ||
580
V->
getValueID
() == Value::GlobalIFuncVal;
Constant.h
168
static_assert(ConstantFirstVal == 0, "V->
getValueID
() >= ConstantFirstVal always succeeds");
169
return V->
getValueID
() <= ConstantLastVal;
GlobalVariable.h
252
return V->
getValueID
() == Value::GlobalVariableVal;
Instruction.h
160
unsigned getOpcode() const { return
getValueID
() - InstructionVal; }
748
return V->
getValueID
() >= Value::InstructionVal;
InlineAsm.h
189
return V->
getValueID
() == Value::InlineAsmVal;
BasicBlock.h
376
return V->
getValueID
() == Value::BasicBlockVal;
Function.h
887
return V->
getValueID
() == Value::FunctionVal;
PatternMatch.h
992
if (V->
getValueID
() == Value::InstructionVal + Opcode) {
1425
if (V->
getValueID
() == Value::InstructionVal + Opcode) {
1441
if (V->
getValueID
() == Value::InstructionVal + Opcode) {
1460
if (V->
getValueID
() == Value::InstructionVal + Opcode) {
Metadata.h
196
return V->
getValueID
() == MetadataAsValueVal;
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
228
unsigned
getValueId
(GlobalValue::GUID ValGUID) {
238
unsigned
getValueId
(ValueInfo VI) {
240
return
getValueId
(VI.getGUID());
241
return VE.
getValueID
(VI.getValue());
502
Optional<unsigned>
getValueId
(GlobalValue::GUID ValGUID) {
1338
(VE.
getValueID
(GV.getInitializer()) + 1));
1392
Vals.push_back(F.hasPrologueData() ? (VE.
getValueID
(F.getPrologueData()) + 1)
1396
Vals.push_back(F.hasPrefixData() ? (VE.
getValueID
(F.getPrefixData()) + 1)
1399
F.hasPersonalityFn() ? (VE.
getValueID
(F.getPersonalityFn()) + 1) : 0);
1420
Vals.push_back(VE.
getValueID
(A.getAliasee()))
[
all
...]
ValueEnumerator.h
150
unsigned
getValueID
(const Value *V) const;
ValueEnumerator.cpp
507
unsigned ValueEnumerator::
getValueID
(const Value *V) const {
617
return F ?
getValueID
(F) + 1 : 0;
886
auto R = FunctionMDInfo.lookup(
getValueID
(&F) + 1);
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemorySSA.h
158
unsigned ID = V->
getValueID
();
263
return MA->
getValueID
() == MemoryUseVal || MA->
getValueID
() == MemoryDefVal;
335
return MA->
getValueID
() == MemoryUseVal;
395
return MA->
getValueID
() == MemoryDefVal;
631
return V->
getValueID
() == MemoryPhiVal;
/src/external/apache2/llvm/dist/llvm/lib/IR/
Globals.cpp
75
switch (
getValueID
()) {
87
switch (
getValueID
()) {
Constants.cpp
463
switch (
getValueID
()) {
501
switch (C->
getValueID
()) {
1795
if (
getValueID
() == UndefValueVal) {
1797
} else if (
getValueID
() == PoisonValueVal) {
3329
switch (
getValueID
()) {
Value.cpp
113
switch (
getValueID
()) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
FunctionComparator.cpp
279
if (int Res = cmpNumbers(L->
getValueID
(), R->
getValueID
()))
292
switch (L->
getValueID
()) {
398
LLVM_DEBUG(dbgs() << "Looking at valueID " << L->
getValueID
() << "\n");
/src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
DifferenceEngine.cpp
386
if (L->
getValueID
() != R->
getValueID
())
460
if (L->
getValueID
() != R->
getValueID
())
Completed in 35 milliseconds
1
2
Indexes created Mon Jun 08 00:24:58 UTC 2026