HomeSort by relevance Sort by last modified time
    Searched refs:IsSigned (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/CodeGen/
CGRecordLayout.h 97 bool IsSigned : 1;
101 bool IsSigned) : Size(Size), NumComponents(NumComponents),
102 IsSigned(IsSigned) {
131 bool isSigned() const { return IsSigned; }
CGRecordLayoutBuilder.cpp 238 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType();
348 return CGBitFieldInfo(FieldSize, NumComponents, Components, IsSigned);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 81 bool IsSigned);
191 bool IsSigned) {
207 if ((!IsSigned || SE->isKnownNonNegative(S)) &&
208 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
215 if (IsSigned && !SE->isKnownNonNegative(LessOne))
218 if (!SE->isKnownPredicate(IsSigned ?
253 bool IsSigned = Rem->getOpcode() == Instruction::SRem;
254 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
255 eliminateIVRemainder(Rem, IVOperand, IsSigned);
422 bool IsSigned = Rem->getOpcode() == Instruction::SRem
    [all...]
  /external/llvm/include/llvm-c/
ExecutionEngine.h 39 LLVMBool IsSigned);
48 LLVMBool IsSigned);
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 27 LLVMBool IsSigned) {
29 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
59 LLVMBool IsSigned) {
61 if (IsSigned)
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 726 bool IsSigned; // Was an sext user seen before a zext?
728 WideIVInfo() : NarrowIV(0), WidestNativeType(0), IsSigned(false) {}
751 bool IsSigned = Cast->getOpcode() == Instruction::SExt;
752 if (!IsSigned && Cast->getOpcode() != Instruction::ZExt)
762 WI.IsSigned = IsSigned;
767 if (WI.IsSigned != IsSigned)
799 bool IsSigned;
822 IsSigned(WI.IsSigned)
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 246 static unsigned BestForm(bool IsSigned, uint64_t Int) {
247 if (IsSigned) {
  /external/llvm/include/llvm/MC/
MCAssembler.h 333 /// IsSigned - True if this is a sleb128, false if uleb128.
334 bool IsSigned;
340 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
347 bool isSigned() const { return IsSigned; }
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 45 bool IsSigned) {
46 if (!IsSigned)
57 Constant *In2, bool IsSigned = false) {
66 IsSigned))
74 IsSigned);
79 bool IsSigned) {
80 if (!IsSigned)
92 Constant *In2, bool IsSigned = false) {
101 IsSigned))
109 IsSigned);
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 399 ConvVal.setIsSigned(Val.isSigned());
407 } else if (NewSign != Val.isSigned()) {
528 static void AdjustAPSInt(llvm::APSInt &Val, unsigned BitWidth, bool IsSigned) {
533 Val.setIsSigned(IsSigned);
669 ConstantCondValue.isSigned() == CondIsSigned);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 420 milliseconds