HomeSort by relevance Sort by last modified time
    Searched defs:Val (Results 101 - 125 of 136) sorted by null

1 2 3 45 6

  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 62 static GlobalValue::LinkageTypes GetDecodedLinkage(unsigned Val) {
63 switch (Val) {
84 static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
85 switch (Val) {
93 static int GetDecodedCastOpcode(unsigned Val) {
94 switch (Val) {
110 static int GetDecodedBinaryOpcode(unsigned Val, Type *Ty) {
111 switch (Val) {
134 static AtomicRMWInst::BinOp GetDecodedRMWOperation(unsigned Val) {
135 switch (Val) {
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
TargetLowering.cpp     [all...]
LegalizeIntegerTypes.cpp     [all...]
LegalizeVectorTypes.cpp     [all...]
  /external/llvm/lib/TableGen/
Record.cpp 63 static unsigned getHashValue(const TableGenStringKey& Val) {
64 return HashString(Val.str());
102 int64_t Val = II->getValue();
103 if (Val != 0 && Val != 1) return 0; // Only accept 0 or 1 for a bit!
105 return BitInit::get(Val != 0);
1080 Init *Val = MHSd->getOperator();
1081 Init *Result = EvaluateOperation(RHSo, LHS, Val,
1084 Val = Result;
1105 return DagInit::get(Val, "", args)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 499 const APFloat Val = CFP->getValueAPF();
504 if (TLI.isFPImmLegal(Val, VT)) {
508 Imm = ARM_AM::getFP64Imm(Val);
511 Imm = ARM_AM::getFP32Imm(Val);
    [all...]
ARMISelDAGToDAG.cpp 732 int Val;
733 if (isScaledConstantInRange(N, /*Scale=*/1, 0, 0x1000, Val))
768 int Val;
769 if (isScaledConstantInRange(N, /*Scale=*/1, 0, 0x1000, Val)) { // 12 bits.
770 if (AddSub == ARM_AM::sub) Val *= -1;
772 Opc = CurDAG->getTargetConstant(Val, MVT::i32);
788 int Val;
789 if (isScaledConstantInRange(N, /*Scale=*/1, 0, 0x1000, Val)) { // 12 bits.
791 Opc = CurDAG->getTargetConstant(ARM_AM::getAM2Opc(AddSub, Val,
861 int Val;
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 130 static DecodeStatus DecodePredicateOperand(llvm::MCInst &Inst, unsigned Val,
132 static DecodeStatus DecodeCCOutOperand(llvm::MCInst &Inst, unsigned Val,
134 static DecodeStatus DecodeSOImmOperand(llvm::MCInst &Inst, unsigned Val,
136 static DecodeStatus DecodeRegListOperand(llvm::MCInst &Inst, unsigned Val,
138 static DecodeStatus DecodeSPRRegListOperand(llvm::MCInst &Inst, unsigned Val,
140 static DecodeStatus DecodeDPRRegListOperand(llvm::MCInst &Inst, unsigned Val,
174 static DecodeStatus DecodeAddrModeImm12Operand(llvm::MCInst &Inst, unsigned Val,
176 static DecodeStatus DecodeAddrMode5Operand(llvm::MCInst &Inst, unsigned Val,
178 static DecodeStatus DecodeAddrMode7Operand(llvm::MCInst &Inst, unsigned Val,
182 static DecodeStatus DecodeVCVTImmOperand(llvm::MCInst &Inst, unsigned Val,
    [all...]
  /external/llvm/lib/Target/CBackend/
CBackend.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 348 SDValue Val = Op1.getOperand(0);
349 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
556 static bool isDispSafeForFrameIndex(int64_t Val) {
563 return isInt<31>(Val);
568 int64_t Val = AM.Disp + Offset;
571 if (!X86::isOffsetSuitableForCodeModel(Val, M,
577 !isDispSafeForFrameIndex(Val))
580 AM.Disp = Val;
757 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
758 if (!FoldOffsetIntoAddress(Val, AM)
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 589 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
590 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
592 Value *NewPtr = NewGlobals[Val];
609 GEPI->getName()+"."+Twine(Val),GEPI);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 455 Value *Val;
488 if (!Curr.Val) {
489 Curr.Val = V;
495 Node->Val = V;
507 while (Curr->Val != V || Curr->BB != BB) {
516 Curr->Val = 0;
520 Curr->Val = Next->Val;
748 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize);
749 StoredVal = BinaryOperator::CreateLShr(StoredVal, Val, "tmp", InsertPt)
    [all...]
ScalarReplAggregates.cpp 577 unsigned Val = cast<ConstantInt>(MSI->getValue())->getZExtValue();
580 APInt APVal(NumBytes*8, Val);
583 if (Val)
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 362 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
577 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
583 return Val.bitwiseIsEqual(V);
694 while (Constant *Val = va_arg(ap, llvm::Constant*))
695 Values.push_back(Val);
910 bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
913 return Val == 0 || Val == 1;
917 return Val <= Max;
920 bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val)
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 352 static ResOperand getImmOp(int64_t Val) {
355 X.ImmVal = Val;
    [all...]
CodeGenDAGPatterns.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 75 static GlobalValue::LinkageTypes GetDecodedLinkage(unsigned Val) {
76 switch (Val) {
97 static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
98 switch (Val) {
106 static int GetDecodedCastOpcode(unsigned Val) {
107 switch (Val) {
123 static int GetDecodedBinaryOpcode(unsigned Val, Type *Ty) {
124 switch (Val) {
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 316 unsigned Val = Result.getZExtValue();
317 if (Val < l || Val > (u + l))
    [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp 1791 uint64_t val = 0; local
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]

Completed in 904 milliseconds

1 2 3 45 6