HomeSort by relevance Sort by last modified time
    Searched defs:Declare (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 118 INITIALIZE_PASS(StripDebugDeclare, "strip-debug-declare",
119 "Strip all llvm.dbg.declare intrinsics", false, false)
244 if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
245 while (!Declare->use_empty()) {
246 CallInst *CI = cast<CallInst>(Declare->use_back());
249 Declare->eraseFromParent();
300 Function *Declare = M.getFunction("llvm.dbg.declare");
303 if (Declare) {
    [all...]
  /external/v8/src/
scopes.cc 46 // When inserting a new variable via Declare(), we rely on the fact that
64 Variable* VariableMap::Declare(
160 Variable* variable = variables_.Declare(this,
314 // Declare convenience variables.
315 // Declare and allocate receiver (even for the global scope, and even
324 variables_.Declare(this,
338 // Declare 'arguments' variable which exists in all functions.
341 variables_.Declare(this,
402 variables_.Declare(this,
445 Variable* var = variables_.Declare(
    [all...]
parser.cc     [all...]

Completed in 110 milliseconds