HomeSort by relevance Sort by last modified time
    Searched refs:getValueID (Results 1 - 25 of 28) sorted by null

1 2

  /external/llvm/include/llvm/CodeGen/
PseudoSourceValue.h 55 return V->getValueID() == PseudoSourceValueVal ||
56 V->getValueID() == FixedStackPseudoSourceValueVal;
97 return V->getValueID() == FixedStackPseudoSourceValueVal;
  /external/llvm/include/llvm/
Constant.h 112 return V->getValueID() >= ConstantFirstVal &&
113 V->getValueID() <= ConstantLastVal;
Value.h 229 /// getValueID - Return an ID for the concrete type of this object. This is
238 unsigned getValueID() const {
334 return Val.getValueID() >= Value::ConstantFirstVal &&
335 Val.getValueID() <= Value::ConstantLastVal;
341 return Val.getValueID() == Value::ArgumentVal;
347 return Val.getValueID() == Value::InlineAsmVal;
353 return Val.getValueID() >= Value::InstructionVal;
359 return Val.getValueID() == Value::BasicBlockVal;
365 return Val.getValueID() == Value::FunctionVal;
371 return Val.getValueID() == Value::GlobalVariableVal
    [all...]
Argument.h 85 return V->getValueID() == ArgumentVal;
GlobalAlias.h 81 return V->getValueID() == Value::GlobalAliasVal;
Metadata.h 67 return V->getValueID() == MDStringVal;
162 return V->getValueID() == MDNodeVal;
Constants.h 222 return V->getValueID() == ConstantIntVal;
291 return V->getValueID() == ConstantFPVal;
319 return V->getValueID() == ConstantAggregateZeroVal;
384 return V->getValueID() == ConstantArrayVal;
444 return V->getValueID() == ConstantStructVal;
495 return V->getValueID() == ConstantVectorVal;
539 return V->getValueID() == ConstantPointerNullVal;
569 return V->getValueID() == BlockAddressVal;
    [all...]
GlobalVariable.h 162 return V->getValueID() == Value::GlobalVariableVal;
GlobalValue.h 284 return V->getValueID() == Value::FunctionVal ||
285 V->getValueID() == Value::GlobalVariableVal ||
286 V->getValueID() == Value::GlobalAliasVal;
Instruction.h 82 unsigned getOpcode() const { return getValueID() - InstructionVal; }
304 return V->getValueID() >= Value::InstructionVal;
BasicBlock.h 224 return V->getValueID() == Value::BasicBlockVal;
InlineAsm.h 183 return V->getValueID() == Value::InlineAsmVal;
Function.h 405 return V->getValueID() == Value::FunctionVal;
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 482 (VE.getValueID(GV->getInitializer()) + 1));
524 Vals.push_back(VE.getValueID(AI->getAliasee()));
558 Record.push_back(VE.getValueID(N->getOperand(i)));
627 Record.push_back(VE.getValueID(NMD->getOperand(i)));
680 Record.push_back(VE.getValueID(MDs[i].second));
    [all...]
ValueEnumerator.h 86 unsigned getValueID(const Value *V) const;
ValueEnumerator.cpp 121 unsigned ValueEnumerator::getValueID(const Value *V) const {
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 522 (VE.getValueID(GV->getInitializer()) + 1));
564 Vals.push_back(VE.getValueID(AI->getAliasee()));
598 Record.push_back(VE.getValueID(N->getOperand(i)));
667 Record.push_back(VE.getValueID(NMD->getOperand(i)));
720 Record.push_back(VE.getValueID(MDs[i].second));
    [all...]
ValueEnumerator.h 86 unsigned getValueID(const Value *V) const;
ValueEnumerator.cpp 121 unsigned ValueEnumerator::getValueID(const Value *V) const {
  /frameworks/compile/libbcc/lib/ExecutionEngine/
Compiler.cpp 382 if (ExportVarNameMDS->getValueID() == llvm::Value::MDStringVal) {
410 if (ExportFuncNameMDS->getValueID() == llvm::Value::MDStringVal) {
458 if ((PragmaNameMDS->getValueID() == llvm::Value::MDStringVal) &&
459 (PragmaValueMDS->getValueID() == llvm::Value::MDStringVal)) {
488 if (SlotMDS->getValueID() == llvm::Value::MDStringVal) {
585 if (ExportVarNameMDS->getValueID() == llvm::Value::MDStringVal) {
593 if (I->first->getValueID() != llvm::Value::GlobalVariableVal)
628 if (ExportFuncNameMDS->getValueID() == llvm::Value::MDStringVal) {
697 if (ExportVarNameMDS->getValueID() == llvm::Value::MDStringVal) {
711 if (ExportFuncNameMDS->getValueID() == llvm::Value::MDStringVal)
    [all...]
  /frameworks/compile/libbcc/bcinfo/
MetadataExtractor.cpp 108 if (SlotMDS->getValueID() == llvm::Value::MDStringVal) {
128 if (v->getValueID() != llvm::Value::MDStringVal) {
194 if (SigVal->getValueID() == llvm::Value::MDStringVal) {
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 369 if (L->getValueID() != R->getValueID())
430 if (L->getValueID() != R->getValueID())
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 181 if (C->getValueID() == llvm::Value::UndefValueVal)
183 else if (C->getValueID() == llvm::Value::ConstantExprVal) {
530 } // C->getValueID() == llvm::Value::ConstantExprVal
556 switch (C->getValueID()) {
670 switch (C->getValueID()) {
829 switch (V->getValueID()) {
882 switch (GV->getValueID()) {
    [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 279 if (V->getValueID() == Value::InstructionVal + Opcode) {
410 if (V->getValueID() == Value::InstructionVal + Opc1 ||
411 V->getValueID() == Value::InstructionVal + Opc2) {
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 448 if (OpF1->getValueID() != OpF2->getValueID() ||

Completed in 633 milliseconds

1 2