reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Constants.h
 1124   static Constant *get(unsigned Opcode, Constant *C1, unsigned Flags = 0, 

References

include/llvm/Analysis/TargetFolder.h
  128     return Fold(ConstantExpr::get(Opc, C));
include/llvm/IR/ConstantFolder.h
  138     return ConstantExpr::get(Opc, C);
lib/Analysis/ConstantFolding.cpp
 1293   return ConstantExpr::get(Opcode, Op);
lib/AsmParser/LLParser.cpp
 3434     Constant *C = ConstantExpr::get(Opc, Val, Flags);
lib/Bitcode/Reader/BitcodeReader.cpp
 2527         V = ConstantExpr::get(Opc, LHS, Flags);
lib/IR/ConstantFold.cpp
  977       Result.push_back(ConstantExpr::get(Opcode, Elt));
lib/IR/Constants.cpp
 2241   return get(Instruction::FNeg, C);
lib/Transforms/Scalar/SCCP.cpp
  983     Constant *C = ConstantExpr::get(I.getOpcode(), V0State.getConstant());