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

  /art/compiler/llvm/
md_builder.h 45 expect_cond_[kLikely] = createBranchWeights(64, 4);
46 expect_cond_[kUnlikely] = createBranchWeights(4, 64);
  /external/llvm/include/llvm/IR/
MDBuilder.h 53 MDNode *createBranchWeights(uint32_t TrueWeight, uint32_t FalseWeight);
56 MDNode *createBranchWeights(ArrayRef<uint32_t> Weights);
  /external/llvm/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 86 MDBuilder(CI->getContext()).createBranchWeights(Weights));
135 Node = MDB.createBranchWeights(LikelyBranchWeight, UnlikelyBranchWeight);
137 Node = MDB.createBranchWeights(UnlikelyBranchWeight, LikelyBranchWeight);
SimplifyCFG.cpp 654 createBranchWeights(Weights));
    [all...]
Local.cpp 152 createBranchWeights(Weights));
217 createBranchWeights(SICase->getValue().getZExtValue(),
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.h 98 llvm::MDNode *createBranchWeights(uint64_t TrueCount, uint64_t FalseCount);
99 llvm::MDNode *createBranchWeights(ArrayRef<uint64_t> Weights);
CodeGenPGO.cpp     [all...]
CGStmt.cpp     [all...]
CodeGenFunction.cpp     [all...]
CGObjC.cpp     [all...]
CGExpr.cpp     [all...]
  /external/llvm/lib/IR/
MDBuilder.cpp 32 MDNode *MDBuilder::createBranchWeights(uint32_t TrueWeight,
35 return createBranchWeights(Weights);
38 MDNode *MDBuilder::createBranchWeights(ArrayRef<uint32_t> Weights) {
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 93 MDNode *Weights = MDBuilder(Ctx).createBranchWeights(42, 13);
  /external/llvm/lib/Transforms/Scalar/
SampleProfile.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]
DataFlowSanitizer.cpp 438 ColdCallWeights = MDBuilder(*Ctx).createBranchWeights(1, 1000);
    [all...]
MemorySanitizer.cpp 440 ColdCallWeights = MDBuilder(*C).createBranchWeights(1, 1000);
441 OriginStoreWeights = MDBuilder(*C).createBranchWeights(1, 1000);
    [all...]

Completed in 649 milliseconds