HomeSort by: relevance | last modified time | path
    Searched defs:getConstant (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCValue.h 44 int64_t getConstant() const { return Cst; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ValueLattice.h 256 Constant *getConstant() const {
277 if (isConstant() && isa<ConstantInt>(getConstant())) {
278 return cast<ConstantInt>(getConstant())->getValue();
307 assert(getConstant() == V && "Marking constant with different value");
400 return markConstant(RHS.getConstant(), true);
414 if (RHS.isConstant() && getConstant() == RHS.getConstant())
458 return ConstantExpr::getCompare(Pred, getConstant(), Other.getConstant());
463 getNotConstant() == Other.getConstant()) ||
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
KnownBits.h 57 const APInt &getConstant() const {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBlocks.h 191 llvm::Value *getConstant() const {
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugFrame.h 122 int32_t getConstant() const { return Offset; }
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 444 const SCEV *ScalarEvolution::getConstant(ConstantInt *V) {
455 const SCEV *ScalarEvolution::getConstant(const APInt &Val) {
456 return getConstant(ConstantInt::get(getContext(), Val));
460 ScalarEvolution::getConstant(Type *Ty, uint64_t V, bool isSigned) {
462 return getConstant(ConstantInt::get(ITy, V, isSigned));
1004 const SCEV *S = SE.getMinusSCEV(It, SE.getConstant(It->getType(), i));
1010 const SCEV *DivResult = SE.getUDivExpr(Dividend, SE.getConstant(DivFactor));
1014 return SE.getMulExpr(SE.getConstant(MultiplyFactor),
1193 return getConstant(
1279 return SE->getConstant(APInt::getSignedMinValue(BitWidth)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
StackMapParser.h 387 ConstantAccessor getConstant(unsigned ConstantIndex) const {
394 return constant_iterator(getConstant(0));
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFAbstractMemberAccess.cpp 178 uint64_t getConstant(const Value *IndexValue);
285 CInfo.AccessIndex = getConstant(Call->getArgOperand(2));
296 CInfo.AccessIndex = getConstant(Call->getArgOperand(1));
307 CInfo.AccessIndex = getConstant(Call->getArgOperand(2));
317 uint64_t InfoKind = getConstant(Call->getArgOperand(1));
328 uint64_t Flag = getConstant(Call->getArgOperand(1));
342 uint64_t Flag = getConstant(Call->getArgOperand(2));
361 Dimension = getConstant(Call->getArgOperand(DimensionIndex));
579 uint64_t BPFAbstractMemberAccess::getConstant(const Value *IndexValue) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SCCPSolver.cpp 133 return dyn_cast_or_null<ConstantInt>(getConstant(IV));
449 Constant *getConstant(const ValueLatticeElement &LV) const;
506 Constant *SCCPInstVisitor::getConstant(const ValueLatticeElement &LV) const {
508 return LV.getConstant();
623 BlockAddress *Addr = dyn_cast_or_null<BlockAddress>(getConstant(IBRValue));
775 if (Constant *OpC = getConstant(OpSt)) {
911 Constant *C = ConstantExpr::get(I.getOpcode(), getConstant(V0State));
945 Value *V1 = isConstant(V1State) ? getConstant(V1State) : I.getOperand(0);
946 Value *V2 = isConstant(V2State) ? getConstant(V2State) : I.getOperand(1);
1034 if (Constant *C = getConstant(State))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugInfoMetadata.h 1028 Constant *getConstant() const {
Metadata.h 366 static ConstantAsMetadata *getConstant(Value *C) {
420 return ValueAsMetadata::getConstant(C);

Completed in 100 milliseconds